Skip to content

Instantly share code, notes, and snippets.

@jackel414
jackel414 / post_link.html
Created July 20, 2014 01:28
The HTML for creating a link that will submit a POST request.
<p>
<form action="your/page/here" name="post_53cb191f689cb670407418" id="post_53cb191f689cb670407418" style="display:none;" method="post" target="_blank">
<input type="hidden" name="_method" value="POST"/>
</form>
<a href="#" onclick="document.post_53cb191f689cb670407418.submit(); event.returnValue = false; return false;">Link text here.</a>
</p>