View Single Post
  #1   (View Single Post)  
Old 9th September 2009
c0mrade's Avatar
c0mrade c0mrade is offline
Port Guard
 
Join Date: May 2008
Posts: 41
Default confusing row selector

Hiya all, I'm really stuck .. here is my html :
Code:
<!-- Beginning of ROW !-->
<div id="row1">
<div class="entry">
free
<span>some text</span>
<p>DKK</p>
<input type="radio" name="row<?php echo $counter?>" id="radio" value="0" />

</div>

<div class="entry">
week
<span></span>
<p>DKK</p>
<input type="radio" name="row<?php echo $counter?>" id="radio2" value="75" />
</div>
</div>
<!-- End of ROW !-->
<!-- Beginning of ROW !-->
<div id="row2">
.... same as in row 1
</div>
<!-- End of ROW !-->
nth row ..
here is Jquery

Code:
$("input").click(function() {
                    $("input").parent("div").css("background", "url(images/div_bg.png)");
                    $(this).parent("div").css("background", "url(images/div_bg_hover.png)");
                                            });

What I'm trying to do .. is when I select a radio input the div in which it is located should change background and it works perfectly if there is only one row, but for instance if I try to select the value in first row then I select value in second row.. the div in second row where radio input is located changes background as it should but the div in first row reverse itself to other background although input remained checked .. here is what I'm trying to achieve


And here is what I achieve :

Reply With Quote