The .load() method in jQuery provides the ability to load content into the selected elements.

learn more… | top users | synonyms

0
votes
1answer
39 views

After loading local page in Jquery dialog the parent window loads the same local page

My site is written in C# with ASP.NET, all pages being loaded are .aspx pages. I'm using a button <input type="button" onclick="FindBuilding()"> to trigger a javascript function function ...
-4
votes
0answers
47 views

Pros and Cons of php include() vs jquery.load() [closed]

On one of my web page i need to include a external file into a div. The external page contains a chat script. At the moment I am using php inlude() function for all my webpages to appear the chat on ...
0
votes
0answers
69 views

Google charts won't load through the Jquery load function , any idea why?

I've asked this question before on here but no one showed me how to actually make google charts appear via the load function.I use google charts API and the charts display fine on a normal page .. ...
0
votes
1answer
58 views

Jquery 1.9 - declare variable after load

<div class="main_content grid_9 clearfix omega"> <div class="basic_info"> <p>You have <?php $msg = count($messages); $msg_tekst = ...
0
votes
0answers
46 views

jquery .load parent page div with variable from iframe

I have a parent page div that is loaded with an ajax recordset on a button click: $("input[name=submit_id]").click(function(){ $('#content_admin').load('../admin/rsEmpInfo.php', ...
0
votes
0answers
45 views

jQuery link directly to 'parent page' tab from dynamic load with .on function

Main page utilizing jQuery tabs loads dynamic data into a div: $(function() { //jqueryui tabs $( "#tabs" ).tabs(); //load dynamic data into div ...
0
votes
1answer
57 views

How do I set a timeout in load Jquery for this particular example?

How do I set a timeout in load for this very particular example where I pass data with a string ? It looks like the google charts supposed to be loaded from compare_proc.php api are taking long ... ...
-1
votes
2answers
67 views

What's wrong with my Jquery not recognizing variable value [closed]

So I am using the load function to pass data to another file called compare_proc.php.. I created variable that stores the data to be passed , which are numbers.. when I alert those variables , the ...
0
votes
2answers
50 views

jquery load invocation results in empty query string

I have this file: "myFile.html" where I simply want to display the value of xxx from the query string. I extracted the following with the help of other threads. I used purl and also a custom function. ...
1
vote
2answers
165 views

jquery .load() is not loading the next external file in a created div

so, I'm trying to implement a loading function that will carry out the jquery code from my first page of the application to include the pages loaded on that page .. i.e. page1.html has a an empty div ...
0
votes
1answer
35 views

JQuery load function for group of links one by one?

i have an ul which contains many links. when using jQuery to load these links it renders them all at same time. How can i load them one by one hqving qtt3mpted the following? js: ...
0
votes
1answer
68 views

Using jQuery to find elements inside of a div that was loaded with $.load

Here's my code: <script type='text/javascript'> $(document).ready(function() { $('#test').load('http://foobar.com/view.php?id=1186', function() { ...
0
votes
1answer
95 views

Loading an external php file with an internal php include function by using jQuery load()

I may be walking in the wrong direction so it's better to ask. I have site underdevelopment with a "News" section and an "Older News" section. The news are stored individually in external php files ...
-1
votes
2answers
66 views

load page into a div

When page load first time the page contents which are I load on Jquery.ready javascripts work perfect then when I use ajax to do some things and try to load page again javascript are not working on ...
0
votes
2answers
83 views

Partial View click event not fire

My *.aspx Page (main page): function getEmployeeHours(employeeId,year,month) { $('#clocked-details').load('/Employees/GetEmployeeClockedHours/',{ 'employeeId': employeeId,'year': year,'month': month ...
0
votes
1answer
94 views

jQuery load() not working for further future menu anchor

I have a HTML page with menu anchor. The page getting content is from link click via j Query load() for specified url. Suppose first page have menu links as Page2, Page3 click on Page2 and content ...
2
votes
2answers
52 views

jQuery .load sending variables

Im starting off easy, but cant work out why this doesnt work. <!DOCTYPE html> <html> <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"> ...
3
votes
1answer
545 views

date picker jquery plugin not working in another page via jquery load method

I have two html main.html and a.html <html> <head> <title> main.html </title> <script src="http://code.jquery.com/jquery-latest.js"></script> <script> ...
0
votes
1answer
195 views

extend jquery load() function to show spinner inside div

is there a way to alter .load behavior so that it load a spiner inside any div that is loading data ? example <div class='content lside'></div> <script> ...
0
votes
2answers
107 views

Accessing variable in HTML loaded with Jquery .load()

This probably has a simple answer, but I can't seem to find it anywhere. I'm loading a local HTML file into a modal overlay. The HTML file has a slideshow in it. I'd like to set a variable and access ...
0
votes
1answer
37 views

jquery load variable won't load contents

Hi I am using jQuery load to grab a ahref from a link and then I want to load a div from the page im getting into a div so have tried this: // lets load the contents $('#navigationLinks ...
1
vote
1answer
71 views

How to synchronize jquery load files with jquery bind events

I need to add to DOM some html´s by jquery, and bind some events the generated elements, but i cant syncronize it, where the addEvents function starts, the DOM elements are not created, so the ...
0
votes
1answer
20 views

Loading Multiple Item in one tag

I'm trying to build a "windows" like application and I want the user to be able to load multiple page. Currently I have the following request : // Open the Profile Search Windows ...
0
votes
0answers
60 views

load method of jquery unable to load concated url

Well this is code that is working perfectly like I want to $("#previous").click(function() { var month=$("#previous").attr("name"); var loadurl="include/calendar.php?month=january"; ...
0
votes
2answers
90 views

Difference between template include and jquery.load?

Is there a difference in how django treats a 'loaded' page/template if i use the django-template specific include-tag, or jQuerys load-function?
0
votes
4answers
95 views

jQuery focus() causes .load() to excecute twice in IE9

jQuery focus seems to cause internet explorer 9 to execute twice. This problem doesn't happen in older versions of IE, and doesn't happen in Firefox or Chrome. I'm having a user enter a code in an ...
0
votes
3answers
65 views

How does this javascript work?

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: ...
4
votes
1answer
77 views

Jquery load select a specific class

So I am using Jquery's load function like so, $('#id').load("http://www.thisiswhyimbroke.com"); I know you can add id selectors after the url, but the content im looking for is not contained within ...
0
votes
1answer
106 views

jQuery load() multiple elements from same file

Is there an easier way of grabbing elements from the same file without having to load the page a few times? Currently using this method $('.side-article-title').load(thisURL+' #item-title'); ...
1
vote
4answers
108 views

jQuery parameters not passed to PHP

I am not sure why but jQuery is not passing parameters to PHP in order to complete the load() function with specific data based on the parameters ID. In short term, when a user clicks a link there ...
1
vote
3answers
324 views

load() JSON data, generate HTML table and place it inside of a div

I have probably a very simple jQuery question - probably missing a tiny bit. I have a button which loads data in JSON format from a PHP script: <script type="text/javascript" ...
2
votes
4answers
698 views

How to load dynamic content into a DIV using JQuery

I have a div: <div id="content"></div> And when the page is loaded i call a .load(). This load takes around 10 minutes to finish and during the execution its PHP file return some ...
0
votes
1answer
66 views

adding jquery ui tooltips to a tag

I have between 1 and 10 tags in my code which require a jquery ui tooltip to be added. the a tags all have a class of tool the a tags all have a title attribute which contains what I want to appear ...
0
votes
1answer
656 views

Loading MVC 4 default view with jQuery load()

I have built an mvc 4 website, and I built it so that the main layout page doesn't refresh if a different section is loaded with jQuery. I put the navigator and jQuery script in _Layout.cshtml: ...
0
votes
1answer
79 views

When I use jQuery load, only the table gets loaded and not its contents

LandingPage.jsp has a table with a map in it. content is the div id in home.jsp. When I say, $("#content").load("LandingPage.jsp"); only the table border gets loaded and not the map or its content. ...
0
votes
1answer
139 views

Animate and Load in Jquery

Hi I have made this code: <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script> <script type="text/javascript"> $(document).ready(function() { ...
1
vote
1answer
2k views

Load external page into DIV

This code works fine in IE, but not in Chrome. Can some one point me in the right direction to get it working in most current browsers. When you click the link, it should load the page into the div. ...
0
votes
2answers
68 views

jquery catching url of a load function

I have a html page with link: page.html (it's url is http://myhost/home/) <a href="javascript:void(0)" id="first">Link</a> script.js: $(function() { $('#first').click(function() ...
0
votes
0answers
177 views

jquery make table row editable on click and post value on press Enter

HTML <table> <tr><th>Name</th><th>etc</th><th>tds</th><th>notes</th></tr> ...
2
votes
1answer
292 views

jQuery how to load content when back button is clicked

I am using jQuery to load page content when a link is clicked, $(document).on('click', 'nav a', function (e) { e.preventDefault(); var url = $(this).attr("href"); ...
0
votes
1answer
86 views

Jquery Submit and reload result

I use function with jquery for post form and get results My code it´s : function click_post(id) { $("#form_order_sel_"+id).submit( function () { $.ajax({ type: "POST", ...
5
votes
1answer
102 views

Error in javascript after load it with jquery.load

in my a.html i write this: <script> function Flike() { jQuery('#ft').load('like.php'); } </script> in the body of a.html i write window.onload = Flike() like.php is: echo " ...
0
votes
2answers
261 views

Jquery won't load content into the DIV area .. where did I go wrong

Ok , so I am trying to load content from a another page using JQUERY LOAD method SO THE content can appear without the page refreshing ... I did that but when I click on the link , it still redirects ...
0
votes
0answers
85 views

Ajax partial views and multiple jquery OnReady script stays around

I have a navigation that calls a $('#some-container').load(someUrlToPartial);. The navigation view contains a jquery on ready declaration, and the partial also contains one too. My issue is that the ...
1
vote
1answer
454 views

Loading external HTML page with relative paths into a DIV using jQuery

I am relatively new to jQuery and pardon if this question is too simple, but I've searched numerous threads for hours and cannot find a definite solution. I have the following folder structure: ...
0
votes
1answer
100 views

jquery load and javascript

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 ...
0
votes
2answers
104 views

jQuery load a div wrapper before a div after page load [closed]

I want to a load a div to wrap around another div after page load and have CSS applied to that div. This is the page: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> ...
0
votes
3answers
137 views

Load next page and wait for click

I'm just building a small game, so i loading the first page (Intro) and then, i need immediately start loading the Second page (The 1st level of the Game, but just load, without show it), and then ...
1
vote
0answers
48 views

How to make load() work with 100% width and height?

<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> body { background-color: ...
3
votes
1answer
336 views

read source of EXTERNAL webpage in ajax or jquery (no yql+JSON / no php / no iframe)

I want to read the html source code of say www.google.com with ajax or jquery (I don't just want to display the source, i need to parse it, so having xmlhttp.responseText is nice). read contents of ...

1 2 3 4