Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
  <style>*{font-family:Arial;margin:0;padding:0}
.in-row h2{background-color:#666;color:#fff;font-size:18px;padding:5px 10px;cursor:pointer;margin:10px 0}
</style>
</head>
<body>
<div id="uiWrapper">
 <div class="in-row">
  <h2>Heading 1</h2>
   <div class="reponsiveTap">
    content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here.
    </div>
  </div>
  <div class="in-row">
  <h2>Heading 2</h2>
   <div class="reponsiveTap">
    content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here.
    </div>
  </div>
  <div class="in-row">
  <h2>Heading 3</h2>
   <div class="reponsiveTap">
    content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here. content will be here.
    </div>
  </div>
</div>
</body>
</html>
 
if($(window).width() < 360){
   $('h2').on('click', function() {
   
                var _target = $(this).next('.reponsiveTap');
                if(_target.css('display') == 'none'){
                    _target.slideDown();
                    $(this).addClass('active');
                }else{
                    _target.slideUp();
                    $(this).removeClass('active');
                }               
            
            });  
  }
else if($(window).width() > 359){
    $('h2').on('click', function() {
      
      return false;
      
    });
    
  }
$(window).resize(function(){
  
  if($(window).width() < 360){
   $('h2').on('click', function() {
   
                var _target = $(this).next('.reponsiveTap');
                if(_target.css('display') == 'none'){
                    _target.slideDown();
                    $(this).addClass('active');
                }else{
                    _target.slideUp();
                    $(this).removeClass('active');
                }               
            
            });  
  }
else if($(window).width() > 359){
    $('h2').on('click', function() {
      
      return false;
      
    });
    
  }
  
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
mufeedahmadpro
0viewers