Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(){
  2.     $("div").addClass('cls_display');
  3.     $("input.cls_post").click(function(){      
  4.         var temp1,temp2;
  5.         temp1=$("#id_username").val();         
  6.         temp2=$("#id_password").val();
  7.    
  8.         $.post("Display_Ajax.php",$(this).serialize(),function(prm){
  9.             $("div.cls_display").html(prm);
  10.         });
  11.  
  12.     });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement