Modify ↓
Ticket #7825 (closed feature: duplicate)
Change page title bug in IE
| Reported by: | liaosankai@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | |
| Component: | manipulation | Version: | 1.4.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
$(document).ready(function(){
$('title').text('new title');
});
It's working every broswer except IE.
$(document).ready(function(){
$(document).attr('title','new title');
});
It's working in all broswer.
But I think jQuery should be smart to get/set the title when I use the " $('title').text('new title');" in IE. Because title should be tag not attribute of page
Change History
comment:1 Changed 2 years ago by rwaldron
- Status changed from new to closed
- Resolution set to duplicate
comment:5 Changed 2 years ago by jitter
- Priority changed from undecided to low
- Resolution duplicate deleted
- Status changed from closed to reopened
- Component changed from unfiled to manipulation
- Milestone 1.6 deleted
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

This is the most frequently duplicated bug.. EVER.