Course Hive
Search

Welcome

Sign in or create your account

Continue with Google
or
jquery ajax load
Play lesson

jQuery tutorial for beginners - jquery ajax load

5.0 (2)
25 learners

What you'll learn

This course includes

  • 22.5 hours of video
  • Certificate of completion
  • Access on mobile and TV

Summary

Keywords

Full Transcript

Link for all dot net and sql server video tutorial playlists https://www.youtube.com/user/kudvenkat/playlists?sort=dd&view=1 Link for slides, code samples and text version of the video http://csharp-video-tutorials.blogspot.com/2015/05/jquery-ajax-load.html Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help. https://www.youtube.com/channel/UC7sEwIXM_YfAMyonQCrGfWA/?sub_confirmation=1 In this video we will discuss how to load HTML data from the server using jquery AJAX load function. What is AJAX AJAX stands for Asynchronous JavaScript and XML, and allow parts of the page to be updated without having to reload the entire page. Syntax .load( url [, data ] [, complete ] ) Parameter - Description url - Required. URL to which the request is sent. data - Optional. A JSON object or string that is sent to the server along with the request. complete - A callback function that is called when the request completes. The following example loads HTML data from the server. When a text box receives focus, the help text associated with that field is loaded from the server and displayed. When the focus is lost the help text disappears. HtmlPage1.html <html> <head> <script src="jquery-1.11.2.js"></script> <script type="text/javascript"> $(document).ready(function () { var textBoxes = $('input[type="text"]'); textBoxes.focus(function () { var helpDiv = $(this).attr('id') + 'HelpDiv'; $('#' + helpDiv).load('Help.html #' + helpDiv); }); textBoxes.blur(function () { var helpDiv = $(this).attr('id') + 'HelpDiv'; $('#' + helpDiv).html(''); }); }); </script> </head> <body style="font-family:Arial"> <table> <tr> <td>First Name</td> <td><input id="firstName" type="text" /></td> <td><div id="firstNameHelpDiv"></div></td> </tr> <tr> <td>Last Name</td> <td><input id="lastName" type="text" /></td> <td><div id="lastNameHelpDiv"></div></td> </tr> <tr> <td>Email</td> <td><input id="email" type="text" /></td> <td><div id="emailHelpDiv"></div></td> </tr> <tr> <td>Income</td> <td><input id="income" type="text" /></td> <td><div id="incomeHelpDiv"></div></td> </tr> </table> </body> </html> Help.html <div id="firstNameHelpDiv"> Your fisrt name as it appears in passport </div> <div id="lastNameHelpDiv"> Your last name as it appears in passport </div> <div id="emailHelpDiv"> Your email address for communication </div> <div id="incomeHelpDiv"> Your annual income </div>

Course Hive

Continue this lesson in the app

Install CourseHive on Android or iOS to keep learning while you move.

Related Courses

FAQs

Course Hive
Download CourseHive
Keep learning anywhere