Advertisement
Guest User

Untitled

a guest
Jul 14th, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. if(radiovalue =="2")
  2. {
  3. jQuery("#Date").show();
  4. jQuery("#Account").show().find('input:text').val('');
  5. jQuery("#Branch").hide();
  6. jQuery("#Product").hide();
  7.  
  8. return false;
  9. }
  10.  
  11.  
  12. if(radiovalue =="1"){
  13. jQuery( "#Date" ).show();
  14. jQuery("#Account").show().find('input:text').val('');
  15. jQuery("#Branch").show();
  16. jQuery("#Product").show();
  17.  
  18. return false;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement