more on portfolio









August 2008
M T W T F S S
« May «-»  
 123
45678910
11121314151617
18192021222324
25262728293031






 

How to: Make combos with different results

Log entry of September 11th 2007 10:00:47 pm
Filed under: Codes Related, How To, Javascripts, Snippets
Here a unique code which I wrote back in 2006. Ironically, it was the very first javascript I’ve written in my entire life! Anyway, what’s this script all about?

Well…the scenario is, what happen if you have a small HTML product website and you want a JAVASCRIPTed search engine which your visitors can look through various products by just selecting for specs.

Your answers is… …

How to: Make bubbles when the mouse move

Log entry of September 6th 2007 06:44:11 am
Filed under: Codes Related, How To, Javascripts, Snippets
Although I would not use this mouse effect javascript on any of my project or any of my websites, this is mainly for those out there who wants to make their website ‘pretty’. This cool javascript effect is originally by Kurt Grigg [ official website ].

Unfortunately, the link seem to end up in an error page.
But I’ve found a site which …

How to: Prompt out the ‘SAVE AS’

Log entry of August 27th 2007 01:20:28 am
Filed under: Codes Related, How To, Javascripts, Snippets
I noticed that most IT dummies does not even know how to right click and image to save. And so, with many hours spending on Yahoo search engine… I found this… <script> function saveImageAs (imgOrURL) { if (typeof imgOrURL == ‘object’) imgOrURL = imgOrURL.src; window.win = open (imgOrURL); setTimeout(’win.document.execCommand(”SaveAs”)’, 500); } </script> <A href=”#” onclick=”saveImageAs(document.getElementById(’embedImage’)); return false” >save image</A> <img id=”embedImage” src=”IMAGEFILE.JPG”> Source: www.arunma.com