HTML
JavaScript
/** load a text page into this div */
function loadTextPage($pDivID,$pURL) {
$.ajax({
url:$pURL,
dataType:’html’,
success:function (txt) {
$(‘#’+$pDivID).html(txt);
}
});
Server-side check.php
HTML
JavaScript
/** load a text page into this div */
function loadTextPage($pDivID,$pURL) {
$.ajax({
url:$pURL,
dataType:’html’,
success:function (txt) {
$(‘#’+$pDivID).html(txt);
}
});
Server-side check.php
by
Tags:
Leave a Reply