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
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
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
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
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
(json, function(Parent, Values) {
> $("#Results").append("Parent: " + Parent + "");
> $.each(values, function(key, val) {
> $("#Results").append("-- Key: " + key + ", Value: " +
> val + "");
>
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]
7 matches
Mail list logo