Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

html js hide or show iframe

$(document).ready(function(){
  $('#hideshow').on('click', function(event) {        
     $('.content').toggle('show');
  });
});
$(document).ready(function(){
  $('#hideshow2').on('click', function(event) {        
     $('.content2').toggle('show');
  });
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #html #js #hide #show #iframe
ADD COMMENT
Topic
Name
2+5 =