#3224 closed bug (fixed)
$.ajax type=script error while using base tag
Reported by: | guai | Owned by: | |
---|---|---|---|
Priority: | trivial | Milestone: | |
Component: | ajax | Version: | 1.2.6 |
Keywords: | ajaxrewrite | Cc: | |
Blocked by: | Blocking: |
Description
Hello. I guess, I found a little bug.
I use 3rd level domains on my host. Like jjj.test.ru And set <base>'s href attribute to access files|css|js from 2nd level domain (test.ru) with short urls like /files/jjj.jj And I need to send asynchronous requests. Setting document.domain to "test.ru" does not work on some browsers to allow cross-domain ajax requests. So I use
$.ajax({
type: "GET", url: "/some_addr", (!!!) data: ..., success: function(data) {
... },
dataType: "script" });
and it does not work too because of remote.test(s.url) in following line of jquery-1.2.6.js returns false
if ( s.dataType == "script" && type == "GET"
&& remote.test(s.url) && remote.exec(s.url)[1] != location.host ){
Of course it can be easily fixed with writing full-formed url, but, erm... :/
Change History (4)
comment:1 Changed 15 years ago by
comment:2 Changed 12 years ago by
Milestone: | 1.3 |
---|---|
Status: | new → open |
comment:3 Changed 12 years ago by
Keywords: | ajaxrewrite added |
---|
comment:4 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | open → closed |
The basetag taken into consideration on relative urls for ajax as of 1.5
And some more: #2677: head.removeChild( script ); should be changed to $(script).remove(); because in IE the script finds himself inside <base> tag :)