Go Back   CodingForums.com > :: Client side development > JavaScript programming > JavaScript frameworks

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-15-2011, 09:33 PM   PM User | #1
Drunklord
New Coder

 
Join Date: Sep 2011
Posts: 27
Thanks: 8
Thanked 0 Times in 0 Posts
Drunklord is an unknown quantity at this point
I can’t pass property to the function

Hi all! I can`t pass properties to function. I already had this problem before and i've resolved it with the help of

Old Pedant, Mr J and DaveyErwin. Now I have the same problem and have no idea how to solve it


The error is “Esperaba un objeto“ (“an object expected”)


Could anyone help me please?


Here is my code:

Code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html lang="en">
  <head>
	  <title>Problem</title>
    <link rel="stylesheet" href="estilos.css" type="text/css" media="all">
    <style type="text/css">
		
		</style>
   	<script type="text/javascript">
		
		function hide(elem)
{
 var vis = document.getElementById(elem)
 
 vis.style.visibility="hidden";

}
		</script>

  </head>
  <body>
			<div id="myimage">
		
		  <img src="img.png"   onclick="hide(menu1)" width=50 height=50 border=0 alt=unit.name />
			<div id="menu1" class="soldmenu">
			 <ul>
			   <li>aaaa</li>
				 <li>bbbbbbbbbb</li>
				 <li>ccccccc</li>
			</ul>
		</div>
		
 </body>
</html>
Drunklord is offline   Reply With Quote
Old 10-15-2011, 10:42 PM   PM User | #2
DaveyErwin
Regular Coder

 
Join Date: Aug 2010
Posts: 814
Thanks: 12
Thanked 168 Times in 166 Posts
DaveyErwin is on a distinguished road
onclick="hide(menu1)"
should be
onclick="hide('menu1')"
DaveyErwin is offline   Reply With Quote
Users who have thanked DaveyErwin for this post:
Drunklord (10-16-2011)
Old 10-15-2011, 11:44 PM   PM User | #3
Drunklord
New Coder

 
Join Date: Sep 2011
Posts: 27
Thanks: 8
Thanked 0 Times in 0 Posts
Drunklord is an unknown quantity at this point
I've tried it so many times that i missed this detail.
thank you very match
Drunklord is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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 On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 08:10 AM.


Advertisement
Log in to turn off these ads.