Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 263 Bytes

jquery.md

File metadata and controls

7 lines (6 loc) · 263 Bytes

Finding things

  $("#class_name").val(); // get value of class name
  $(".class_id").val(); // get value of id name
  $("#foo:checked").val(); // return value of checked item (works for radio, multi choice checkboxes will need different handling