Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<ul id="answers"> 
        <li> 
                <label>
                  <input type='radio' name='answer_id' value='313'> <div>True</div>
          </label>
        </li> 
        <li> 
                <label> 
                    
                  <div class="plan-type-1">
                <div class="sel-plan-type text-center">
                   <input type='radio' name='answer_id' value='313'>
                  <img src="img/logo-n.png"><br>
                  <span>Basic</span>
                </div>
                <div class="cost"><span class=""><i class="rupee-icon"></i>500<i>/month</i></span></div>
              </div>
                </label> 
        </li> 
</ul>
 
$('input:radio').click(ev){
    ev.stopPropagation();
}).parent().click(function(ev){
  ev.preventDefault();
    $(this).children('input').click();
    $(this).addClass('active').siblings().removeClass('active');
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers