Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function showTags(checkbox, tle) {
  2. tagname = '.' + tle;
  3. tag = $(tagname);
  4. cboxname = '#' + checkbox;
  5. cbox = $(cboxname);
  6. alert( cbox.value );
  7. if ( cbox.checked ) {
  8. tag.show();
  9. } else {
  10. tag.hide();
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement