Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
ynormeco
/
.trash
/
sattaadmin
/
js
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/ynormeco/.trash/sattaadmin/js/old-varify-student.js
$(document).ready(function() { $("#ajaxButton").click(function() { var roll = $("#rollno").val(); // Returns successful data submission message when the entered information is stored in database. var dataString = 'roll='+ roll; if(roll =='') { alert("Enter Student Roll Number"); } else { // AJAX Code To Submit Form. $.ajax({ type: "POST", url: "pages/old_find_student.php", data: dataString, cache: false, success: function(result) { $("#result").html(result); } }); } return false; }); });