My application has dynamically added Dropdowns. The user can add as many as they need to.
I was traditionally using jQuery\'s live()
method to detect w
In addition to the selected answers,
If you use Visual Studio, you can use the Regex Replace.
In Edit > Find and Replace > Replace in Files
Or Ctrl + Shift + H
In Find and Replace pop-up, set these fields
Find what: \$\((.*)\)\.live\((.*),
Replace with: $(document.body).on($2,$1,
In find options check "Use Regular Expressions"