[jQuery] Re: GM_xmlhttpRequest sort data

2009-07-01 Thread Dman
Is there really no way? Anyone, please reply. On Jun 26, 2:20 am, Dman wrote: > bump help please > > On Jun 25, 1:16 am, Dman wrote: > > > Hello, > > I am trying to get a html page using GM_xmlhttpRequest, store the html > > page code, in a v

[jQuery] Re: GM_xmlhttpRequest sort data

2009-06-25 Thread Dman
bump help please On Jun 25, 1:16 am, Dman wrote: > Hello, > I am trying to get a html page using GM_xmlhttpRequest, store the html > page code, in a var, and sort some data from it. > GM_xmlhttpRequest({ > method: 'GET', > url: 'http://www.myurl.com/te

[jQuery] Re: jquery ajax

2009-06-24 Thread Dman
Unless you are from the same domain http://www.domain.com, you can not do cross domain calls with AJAX, with the exception being JSONP calls. On Jun 25, 4:26 am, "Cesar Sanz" wrote: > I can't see the reason to not > > - Original Message - > From: "gigamike" > To: "jQuery (English)" > S

[jQuery] GM_xmlhttpRequest sort data

2009-06-24 Thread Dman
Hello, I am trying to get a html page using GM_xmlhttpRequest, store the html page code, in a var, and sort some data from it. GM_xmlhttpRequest({ method: 'GET', url: 'http://www.myurl.com/test.html', onload: function(html) { html = html.responseText; $(html).("div[style*='font-siz

[jQuery] Re: ajaxify: load link in same div?

2009-06-24 Thread Dman
http://docs.jquery.com/Events/live#typefn this might help On Jun 25, 12:23 am, Charlie wrote: > content loaded after document.ready isn't bound to jquery functions. If the > right div is already in page however it should work. > "ajaxified link"  does that mean it's been loaded by ajax or it is

[jQuery] Re: Question in JSON

2009-05-05 Thread Dman
(json, function(Parent, Values) { >        $("#Results").append("Parent: " + Parent + ""); >        $.each(values, function(key, val) { >               $("#Results").append("-- Key: " + key + ", Value: " + > val + ""); >  

[jQuery] Question in JSON

2009-05-04 Thread Dman
Hello, I recently learnt jQuery but I am having problems on working with JSON. I am loading the JSON data from PHP file using $.getJSON. The JSON returned is {"4":{"6":"1"},"3":{"1":"1","2":"1"}} and array for reference is Array ( [4] => Array ( [6] => 1 ) [3]