Bug Tracker

Ticket #3224 (new bug)

Opened 3 weeks ago

Last modified 3 weeks ago

$.ajax type=script error while using base tag

Reported by: guai Assigned to: anonymous
Type: bug Priority: trivial
Milestone: 1.3 Component: ajax
Version: 1.2.6 Keywords:
Cc: Needs: Review

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

#2658:

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... :/

Attachments

Change History

Changed 3 weeks ago by guai

And some more: #2677: head.removeChild( script ); should be changed to $(script).remove(); because in IE the script finds himself inside <base> tag :)

Note: See TracTickets for help on using tickets.