Advertisement
Guest User

Untitled

a guest
Jan 11th, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('.solveit-button').click(function() {
  2. var idToGet = this.getAttribute("data-solvebutton");
  3. $.ajax({
  4. type: 'GET',
  5. url: 'ajax.php?id' + idToGet,
  6. dataType: 'text',
  7. success: function(text, textStatus) {
  8. alert(text);
  9. },
  10. error: function (xhr, ajaxOptions, thrownError) {
  11. alert(xhr.status);
  12. alert(thrownError);
  13. }
  14. });
  15.  
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement