JS: onClick History
Learn how to use JavaScript’s history function. Continue reading
Learn how to use JavaScript’s history function. Continue reading
Sometimes, you’re building that website that you know has just too much stuff for it to look good. A good example of this is our code generators page: http://scyberia.org/utilities/gen.php Without the effect it uses, the page would be way too … Continue reading
I’ve written two bookmarklets that you can use to search Google on-the-go. The first prompts you for text, then searches Google for the entered text. To use this bookmarklet, drag the below link to your bookmarks bar: Google Search The … Continue reading
If you create a website that uses iFrames, or use iFrames for any other reason, you will sometimes come across a time when you need a link inside the iFrame to link outside the iFrame. To begin with, a regular … Continue reading
Let’s say I have a webpage called: page.html and a CSS file for the webpage called: style.css How do I link them? With this line of code, placed in the <head> tags: <link rel=”stylesheet” href=”style.css” type=”text/css”> If the stylesheet … Continue reading