As dori sa stiu cum as putea face sa schimb design-ul la un div/class atunci dupa ce apas click pe el. Explicatie :
Cod: Selectaţi tot
.buton { background-color : red; border: 1px solid;}
Cod: Selectaţi tot
.buton { background-color : blue; }
Cod: Selectaţi tot
.buton { background-color : red; border: 1px solid;}
Cod: Selectaţi tot
.buton { background-color : blue; }
Cod: Selectaţi tot
$('#nume_id_div').click(function(){
$('nume div/clasa la care vrei sa schimbi').AddClass('noua_clasa');
});
Cod: Selectaţi tot
.buton { background-color : blue; }
Cod: Selectaţi tot
<script>
$('#buton').click(function(){ $('#buton').AddClass('buton');});
</script>
<div id="buton">
</div>
Cod: Selectaţi tot
#buton {
width: 100px;
height: 40px;
background-color : red;
border: 1px solid ;
}
.buton {
background-color: blue;
}
Cod: Selectaţi tot
<script src="jquery-1.7.1.js"></script>
Cod: Selectaţi tot
<div id="buton">www.coursesweb.net</div>
<script type="text/javascript"><!--
document.getElementById('buton').onclick = function() { this.className = 'buton'; }
--></script>
<style type="text/css"><!--
#buton {
width: 150px;
height: 40px;
background-color : red;
border: 1px solid ;
}
#buton.buton {
background-color: blue;
}
--></style>
Cod: Selectaţi tot
<div id="buton" onclick="ChangeColor();" class="invalid">Click here!</div>
<script type="text/javascript"><!--
function ChangeColor ()
{
var color = document.getElementById('buton').className;
if(color == "valid") { document.getElementById('buton').className = 'invalid'; }
else { document.getElementById('buton').className = 'valid'; }
}
--></script>
<style type="text/css"><!--
#buton
{
width: 150px;
height: 40px;
border: 1px solid ;
}
.invalid
{
background-color: #DFDFDF;
}
.valid
{
background-color: #FFFFFF;
}
--></style>