HTML Back-A-Page
June 21st, 2009 Filed Under Javascript
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
541 Views |
Permalink | Trackback |
|
Print This Article | Leave a Comment
HTML Tags Converter
June 13th, 2009 Filed Under Javascript
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
617 Views |
Permalink | Trackback |
|
Print This Article | Leave a Comment