HTML :
<div id="tab">This is a paragraph.</div>
<div id="tab">This is a paragraph.</div>
<div id="tab">This is a paragraph.</div>
<div id="tab">This is a paragraph.</div>
CSS :
#tab{
height:30px;
width:130px;
background-color:red;
}
Jクエリ:
$(document).ready(function() {
function randomNumber() {
return Math.floor(Math.random() * 255)
}
$('#tab').mouseover(function() {
$('#tab').css('background-color', 'rgb(' + randomNumber() + ',' + randomNumber() + ',' + randomNumber() + ')');
});
$('#tab').mouseout(function() {
$('#tab').css('background-color', 'white');
});
});
このフィドルがあり、最初のタブだけでなく、すべての #tabs に色の変更を適用したいのですが、どうすればよいですか?
フィドルの例はここにあります。