![]() |
|
![]()
![]()
![]()
![]()
![]()
![]()
|
![]() How to: Make combos with different resultsLog 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 moveLog 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’
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
|
|
© Copyrights DSDexigns.Com 2008 | Powered Wordpress 2.5.1 | Flavored Shades By Andy D. Hajime | Proudly Hosted Pacific Asia Technologies DSDexigns by Andy D. Hajime is licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 License. Views, Contents, Elements and Usage of DSDexigns.Com are based on your agreement to our Terms of Use and Policies. |
|