I'm not too familiar with Javascript. I want to have an image to be clicked, and be sent to a new window that's a fixed size. I know how to do it if I have text, but I want an image.
Anyone know how to do it?
Anyone know how to do it?
| Code: |
| <a href="JAVASCRIPT STUFF HERE"><img src="IMG URL" alt="" /></a> |
| Code: |
| <a onclick="window.open('musicplayer/musicplayer.html', 'mywindow', 'width=309,height=223,resizable=no');" href="#">
Click Here To Open Music Player!</a> |
| Code: |
| <a href="javascript:JAVASCRIPT STUFF HERE" ><img src="IMG URL" alt="" /></a> |
| Code: |
| <a href="javascript:window.open('musicplayer/musicplayer.html', 'mywindow', 'width=309,height=223,resizable=no');" href="#">
Click Here To Open Music Player!</a> |
| Code: |
| <a href="javascript:window.open('musicplayer/musicplayer.html', 'mywindow', 'width=309,height=223,resizable=no');" href="#">
<img src="image.gif" border="0"></a> |
| aningbo wrote: | ||
i hope this will do. good luck |
| Code: |
| <a href="javascript:window.open('musicplayer/musicplayer.html', 'mywindow', 'width=309,height=223,resizable=no');void(0);" href="#">
<img src="image.gif" border="0"></a> |