Skip to content

Instantly share code, notes, and snippets.

@TravelingTechGuy
Created June 12, 2012 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TravelingTechGuy/2918963 to your computer and use it in GitHub Desktop.
Save TravelingTechGuy/2918963 to your computer and use it in GitHub Desktop.
Post values to an HTML page using jQuery
(
$("<form/>",{"action":"index.php","method":"post"}).append(
$("<input/>", {"type":"hidden", "name":"logout", "value":"1"})
)
).submit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment