problem about jquery-load-Collection of common programming errors
Damon
Jacob Harding
javascript jquery-ajax jquery-load jquery-post
I’m a javascript noob, and I don’t understand why this works:$().load(‘/my/url/’, {my:data, more:data}, jsFunc());function jsFunc() {$(“#myid”).val(“yep”); }But not this:$().load(‘/my/url/’, {my:data, more:data}, function() {jsFunc()});function jsFunc() {$(“#myid”).val(“yep”); }I tried an $.ajax instead of
Thomas McCabe
php jquery ajax jquery-ajax jquery-load
I’m working on a project that involves quite a bit of loading PHP modules with jQuery. I’m running into a strange issue with the $.load function. About 50% of the time the POST variable isn’t passed with this function. This is another developer’s code, so I’m trying to work with it and change litt
Beardy
jquery jquery-load
I’d like to bring in multiple fragments from 1 webpage into a div but the only way I have been able to get it working is by using multiple .load() functions.Is there a way to simplify the following into 1 html request?$(‘.quickview-dialog-left’).load(‘/productlargetest .productlargeimage img’); $(
user1437779
javascript jquery jquery-load getscript
I’ve seen many topics on this site about using jquery load and loading the script the in the html fragment. I, unfortunately, have not been able to get any of these methods (getscript) to work. Here is the c
Ben
php jquery jquery-live jquery-load
I am using jQuery .load() to load a php-file. This php-file echos out a new div. This div contains an attribute “title”, whose value I need to get in my js-file.//
Arief
Originally posted 2013-11-09 21:18:17.