Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<div id='info'>
  <a href='#' class='modal'><span class="btn-popup">Info</span></a>
</div>
  
<div id='share'>
  <a href='#' class='modal'><img src="images/icon-share.gif" alt="Share this page" width="61" height="24" class="share" title="Share this page" /></a>
</div>
 
$(document).ready(function () {
  $('a.modal').click(function (e) {
    e.preventDefault();
    var id = $(this).parent().is('#info') ? '#basic-modal-content' : '#basic-modal-share';
    $(id).modal();
  });
}); 
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers