Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why does this not work ? In Firebug, when I click on the button, it always says to me that cambiaBandiera is not defined ...

HELP

Alex

CSS

#ITA{
float:right;
margin : 5px 85px;
width:40px;
height:40px;
background : #FFFFFF url("../ITA_off.png") center center no-repeat;
border:0;
}

JAVASCRIPT (in HEAD)

<style type="text/javascript">
function cambiaBandiera() {
test=document.getElementById("ITA");
test.style.backgroundImage="url('../ITA_on.png')";
}
</style>

and this is HTML

<div id="bandiere">
<input type="button" id="ITA" onClick="cambiaBandiera()">  </input> 
</div>
share|improve this question
1  
possible duplicate of Changing background image to a button – Sarfraz May 29 '10 at 8:09
yes it's more or less a duplicate – Alpan67 May 29 '10 at 8:10
if its a duplicate there's no need to make another question :) just carry on discussing with comments on the answers there :) – corroded May 29 '10 at 8:14
OK sry I did not know exactly how it works – Alpan67 May 29 '10 at 8:16
You did not specify complete details there, see my answer below also. – Sarfraz May 29 '10 at 8:16

3 Answers

up vote 6 down vote accepted

I see that you put your script between style tags instead of script tags. Maybe that is the reason it cannot find your function?

share|improve this answer
@ Peter Tilemans : Sry, I don't understand, what do you mean ? – Alpan67 May 29 '10 at 8:25
OK WHAT A MESS !!!!!!!!!!! Thank you Peter ! – Alpan67 May 29 '10 at 8:28

You are specifying input in wrongly, adding not needed </input>:

<input type="button" id="ITA" onClick="cambiaBandiera()"></input> 

It should be:

<input type="button" id="ITA" onClick="cambiaBandiera()" />

input tag is self closing, it does not need closing tag.

share|improve this answer
Ahmed : yes you are right but it does not change, I tried also with your tip – Alpan67 May 29 '10 at 8:18

Use plain CSS:

#bandiere:active{
    background : #FFFFFF url("../ITA_on.png") center center no-repeat;
}
share|improve this answer
What do you mean ? – Alpan67 May 29 '10 at 8:11
Alpan67: use the CSS :active pseudo class to change the background of an element if you click on it. This technique is js-safe as well – erenon May 29 '10 at 8:13
In bandiere I will add more than ITA, that's why I created the ITA div – Alpan67 May 29 '10 at 8:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.