Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $(".check_update").change(
  2. function(){
  3. $.ajax(
  4. {
  5. type: "POST",
  6. url: "/_include/update.php",
  7. data: "player_id=95&parameter="+this.getAttribute("name")+"&value="+$(this)[0].value,
  8. success: function(result){
  9. if(result != 1){
  10. alert('update failed');
  11. console.log(result)
  12. }
  13. },
  14. dataType: "tinyint"
  15. }
  16. )
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement