I\'m creating a dynamic website. My problem is when i click on the following tag:
you need to prevent default action on the click event.
You can do a simple inline handler which will return false
Interesante
or write a jQuery handler which will do the same
$('.s-inte').click(function(e){ e.preventDefault() })