Created
August 2, 2012 13:04
-
-
Save albburtsev/3236888 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ru-RU" class="noscroll index"> | |
<head> | |
<meta charset="utf-8"> | |
<title>POST</title> | |
<script src="http://maps.mail.ru/js/jquery-1.7.1.min.js"></script> | |
<script> | |
// Docs: http://api.jquery.com/jQuery.post/ | |
jQuery.post('/url', { data: 'jsondata' }, function() { | |
alert('Success!'); | |
}); | |
</script> | |
</head> | |
<body> | |
<!-- Empty --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment