Monday, November 17th, 2008
If you want to add in a simple button or link for visitors to refresh the page, there is a really simple code that does the trick
Button
<FORM>
<INPUT TYPE="button" VALUE="Reloadthe page" onClick="history.go(0)">
</FORM>
Link
<a href="#" onClick="history.go(0)">Refresh the page!</a>
Refresh the page!
…
Tags: html, javascript, simple
Posted in Uncategorized | No Comments »
Wednesday, November 12th, 2008
HTML has got to be the most widely known type of coding language out there - you seriously can’t go past HTML when building a website! It forms the basis of most websites, and while there are sites which are moving towards more CSS based…
Tags: html, layout, simple
Posted in Uncategorized | No Comments »