Current location: Hot Scripts Forums » General Web Coding » JavaScript » Image resize 'onClick' and 'changeIt()'


Image resize 'onClick' and 'changeIt()'

Reply
  #1 (permalink)  
Old 05-01-09, 09:07 PM
bluedogsb bluedogsb is offline
Newbie Coder
 
Join Date: Jan 2009
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
Image resize 'onClick' and 'changeIt()'

I'm trying to make it so when you click on this image, it will be larger:

Code:
<div>
				<script type="text/javascript">

				  function changeIt()
				  {
				  var width=640
				  var height=460

				  document.image.width=width
				  document.image.height=height
				  }

				</script>
			 
			<img src="Images/1600psDWG.gif" class="box1" name="image" align="" width="230" height="150" onclick="changeIt()"/>
</div>
The code doesn't execute. I have trouble trying to get javascript to execute for some reason whenever I try to use it.

If there is an easier way to do this function, please let me know.

Thanks in advance,
Blue
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 06-23-09, 11:57 AM
jdoejdoe jdoejdoe is offline
New Member
 
Join Date: Jun 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
It works fine in FF and IE7. Make sure your path to the image file is correct.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 06-23-09, 12:12 PM
Nico's Avatar
Nico Nico is offline
Community Leader
 
Join Date: Sep 2005
Location: Spain
Posts: 8,074
Thanks: 11
Thanked 88 Times in 83 Posts
Code:
onclick="changeIt(this)"
... and:
Code:
function changeIt(obj)
{
    obj.width = 640;
    obj.height = 460;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump


All times are GMT -5. The time now is 09:35 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.