jquery ajax load04:33

  • 0
Published on March 15, 2017

Link for all dot net and sql server video tutorial playlists

Link for slides, code samples and text version of the video

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>

https://cafeadobro.ro/

https://www.stagebox.uk/wp-includes/depo10-bonus10/

https://iavec.com.br/

Enjoyed this video?
"No Thanks. Please Close This Box!"