0

I was using Jquery 1.8 version and validation engine on my page. And everything worked fine. enter image description here

When i click on the pop up it was hiding automatically. Now recently we have movesd to Jquery 1.10.3 version and using bootstrap on my page. So now I am not able to hide the popup by simple click on it. Please help how to hide each pop up individually?

Thanks

Edit:

Modified the $(".formError").live("click", function () {} to

 $(".formError").on("click", function () {} inside jquery.validationengine.js file. Because if i used 'live' instead of 'on' causing page not to validate.
user1882705
  • 1,081
  • 4
  • 15
  • 43
  • Found my answer here http://stackoverflow.com/questions/8752321/jquery-live-vs-on-method-for-adding-a-click-event-after-loading-dynamic-ht – user1882705 Nov 08 '13 at 18:41

1 Answers1

0

We should add parent class name also in it.

$('#parent').on("click", "#child", function() {});
user1882705
  • 1,081
  • 4
  • 15
  • 43