Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <script type='text/javascript'>
  2.  
  3. $(document).ready( function(){ $(':not(#mystub)').click( function(){ $(this).remove(); });
  4. $('#sub').live('click', function(){
  5. $.post('ajax.php',
  6. {name: $('#personName').attr('value') },
  7. function(returnedData){
  8. $('#mystub').empty().append("<div id=specialdiv>"+ returnedData +"</div>");
  9.  
  10. });
  11. });
  12.  
  13. $('#closebutton').live('click', function(){
  14. $('#specialdiv').fadeOut();
  15. });
  16.  
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement