Get Search Term with jQuery selector?
Get Search Term with jQuery selector?
robertomello
Posts: 1Questions: 0Answers: 0
Hi all!
How can i get the filter term in the input with jquery selector?
I don't find any API function.
I Want to send the term with ajax, not with post neither redraw the DT.
Tkz Roberto
How can i get the filter term in the input with jquery selector?
I don't find any API function.
I Want to send the term with ajax, not with post neither redraw the DT.
Tkz Roberto
This discussion has been closed.
Replies
$('#{table_id}_filter input').val();
[/code]
will do it.
Allan