Modify ↓
Ticket #6602 (closed bug: invalid)
Chrome can't do: $(...).load(url, title);
| Reported by: | matrym | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | 1.4.3 | |
| Component: | ajax | Version: | 1.4.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
The solution was resolved to my satisfaction on stack overflow. I recommend either updating the documentation to explain the limitations, or adjusting the method to be cross-browser:
http://stackoverflow.com/questions/2911930/jquery-cant-load-the-head-title-in-chrome
TLDR:
$.get(" http://fiddle.jshell.net/",
function(response){
alert((/<title>(.*?)<\/title>/m).exec(response)[1]);
});
Change History
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.

The documentation for .load() currently says:
your example on SO seems to violate that rule. It might work on some browsers but is specifically documented as not supported.