Guest User

Untitled

a guest
Oct 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <input type="button" id='ajaxbutton' name="Button2" value="Кнопка AJAX">
  2.  
  3. <script>
  4.  
  5. $('#ajaxbutton').live("click", function() {
  6.  
  7. $('#result').html("<img src='ajax-loader.gif'>" );
  8. $.get('send.php', { textmsg: $('#contentbox').val() }, function(data) {
  9.  
  10. if (data == 200) {
  11. $('#result').html("<img src='ajax-loader1.gif'>" );
  12. } else {
  13. $('#result').html("<img src='ok.png'>");
  14. }
  15.  
  16. });
  17.  
  18. });
  19.  
  20. </script>
Add Comment
Please, Sign In to add comment