Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <ul>
     <li>
        <img src="images/img.png" />
        <a href="www.google.com" data-remote="true">Link</a>
    </li>
  </ul> 
</body>
</html>
 
$(function(){
  var myobj = {
    clickedLi: function(){
          alert('clicked on li');
          return this; 
    },
    sendAnchor: function(url){
        alert(url);
        return this;
    }                                   
  };
  
  $('ul').on('click', 'li', function(e){
    e.preventDefault();
    myobj.clickedLi().sendAnchor($(this).find('a').attr('href'));
    
  });
});
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers