I am having problem with jquery on selector. When I am using
$('.class').on("click",function(){
//Code
});
its working on mobile devices but fails to select dynamically created content so I changed to
$( document ).on('click', '.class' ,function(){
//Code
});
Now that it works for dynamically created contents but is no longer supported on mobile browsers such as Opera Mini or Uc Browser How can I make it work on all conditions.