[jQuery] Re: Cross-Domain xmlHttp

2007-08-27 Thread hogsmill
Hi Jon, Cheers for that 1) When is 1.2 out? 2) I'm quite comfortable using JSON, so that's excellent news. When you say 'working with scripts', tho', what do you mean, exactly? Do you mean just JavaScript, and not PHP, etc., or something different? Cheers in advance, On Aug 26, 9:17 pm,

[jQuery] Re: Cross-Domain xmlHttp

2007-08-27 Thread Pops
Hogsmill, The idea is simple, First you have to be able to PULL something from the other side that when your web pages gets it, it RUNS something. Having this already in your web page: script ... src=http:\\abc.com/script works, but only when you first load your page. The idea of

[jQuery] Re: Cross-Domain xmlHttp

2007-08-27 Thread Glen Lipka
Brad Neuberg had developed this thing called Purple Include. http://codinginparadise.org/weblog/labels/purple%20include.html I don't know if it's a good idea or not but its very interesting and achieves this goal. Glen On 8/27/07, Pops [EMAIL PROTECTED] wrote: Hogsmill, The idea is simple,

[jQuery] Re: Cross-Domain xmlHttp

2007-08-27 Thread Brandon Aaron
Actually John checked in this functionality to SVN (r2891) just the other day. You can use it like this: $('#myElem').load('somepage.html div#conent'); Pretty cool stuff. -- Brandon Aaron On 8/27/07, Glen Lipka [EMAIL PROTECTED] wrote: Brad Neuberg had developed this thing called Purple

[jQuery] Re: Cross-Domain xmlHttp

2007-08-26 Thread John Resig
Unfortunately, no. This is a limitation in all browsers in order to limit security concerns. In jQuery 1.2 you'll be able to do cross-domain Ajax, but only if you're working with Scripts or JSON data. --John On 8/26/07, hogsmill [EMAIL PROTECTED] wrote: Hi All, Has anybody used jquery for