Javascript examples for jQuery Selector:class
jQuery Select classes start with
<html> <head> <script src="https://code.jquery.com/jquery-2.1.0.min.js"></script> </head> //from www . j av a 2 s .com <body> <script> $(document).on('change', 'input[class^="item_number_"]', function(){ console.log(this); }); $('body').append('<input class="item_number_1" value="Woot">') </script> </body> </html>