How to add load event in all the elements that are dynamically added any time of the page.
I am trying to set the load event of all the tabindex property element, like this but not working.
$('body').on('load','[tabindex]',function(event){
alert();
});