| |





January 2009
| M |
T |
W |
T |
F |
S |
S | |
« May |
«-» |
|
| | 1 | 2 | 3 | 4 |
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | 31 |
|

|
|
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 |
Leave a Reply
|
|