HTML Back-A-Page

Programming to have your HTML go back a page isn’t hard. It’s simple Javascript that you can use in a link or a form’s button…

<form method="post">
<input type="button" value="Back" OnClick="history.go(-1 );return true;">
</form>

<a href="javascript:history.go(-1)">Back</a>

Hope that helps,
Thuan

HTML Tags Converter

For some reason I couldn’t find a HTML Tags Converter on the web at all, so I wrote one…

It’s really simple Javascript, but a very useful tool when you need it… if you find it useful, leave a comment. 🙂
-Thuan