If you are dynamically loading the content using ajax. You should probably call it in this way. This way it will work for every anchor with .s-inte
class, no matter it's added dynamically or statically.
$(document).on('click', '.s-inte',function(e){
e.preventDefault();
// Do more stuff every anchor click here...
});