<span class="link">move your body</span>
How to make this span a link, without adding any inline javascript and extra attributes?
Also without transformation to <a>
.
Like this:
$(".link").click(function(){
// go to the http://site.com
})
Thanks.