If I have an unknown amount of identifiers sharing a specific naming-scheme, is there a way to grab them all at once using jQuery?
// These are the IDs I\'d
We can do it this way:
$(document).ready(function () { $('[id*=btnOk]').live("click", function () { }); });