Guest User

Untitled

a guest
Jun 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <li class='race'>
  2. <div class='row'>
  3. <span class='check_box'><input id="race2" name="race2" type="checkbox" value="1" /></span>
  4. </div>
  5. </li>
  6.  
  7.  
  8.  
  9. $j(function(){
  10. $j(".race .row").hover(
  11. function(){$j(this).addClass("hover");},
  12. function(){$j(this).removeClass("hover");}
  13. ).click(function(){
  14. $j(this).children('.check_box input')..... ??
  15. });
  16. });
Add Comment
Please, Sign In to add comment