Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.28 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Creating a dynamic form
  2. $(document).ready(function(){
  3.    $("#check-box").click( function(){
  4.      if( $(this).is(':checked')) {
  5.          $('#div1').show();
  6.      } else {
  7.         $('#div1').hide();
  8.      }
  9.   });
  10.        
  11. $("#choice1_subform").click(function(){
  12.     $("#div1").show();
  13. });