jquery - Datatables: Selecting their items -


how can select datatables items? have tried stuff like:

$("select").change(function () { alert('changed!'); }); 

but see no results. tried name cannot interact these elements. interact directly select , search box.

thank you!

try wraping in $(document).ready function,

$(document).ready(function(){   $("select").live('change',function () {     alert('changed!');     }); }); 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -