Skip to content

Instantly share code, notes, and snippets.

@spacebit-official
Last active January 12, 2018 14:59
Show Gist options
  • Save spacebit-official/a8989a7d096e57ba4422dffafc9a0683 to your computer and use it in GitHub Desktop.
Save spacebit-official/a8989a7d096e57ba4422dffafc9a0683 to your computer and use it in GitHub Desktop.
jqueryAjaxData
<script>
////////////////////////////////////////
var a = $('input[name="var1"]').val();
var b = $('input[name="var2"]').val();
//ajax
data: {a:a,b:b},
data: 'a='+a+'&b='+b
////////////////////////////////////////
var send = {};
send['a'] = $('input[name="var1"]').val();
send['b'] = $('input[name="var2"]').val();
//ajax
data: send
///////////////////////////////////////
var send = $('#sub').serialize();
//ajax
data: send
///////////////////////////////////////
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment