Opened 13 years ago
Closed 13 years ago
#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: | ||
Blocked by: | Blocking: |
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]);
});
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.