Once again I want to load a page which contains its own script into a div using $(\"divid\").load(...). The problem I face is related to events. Let\'s say we trigger(\"mo
if you can apply it, probably want to take a look at event.preventDefaultt and event.stopPropagation
OR unbind and bind each time, within the method like
function someMethod()
{
$(obj).off('click').on('click', function {});
}