Get searchfield value
Get searchfield value
Hi,
I cannot get the value of my searchfield out. I want to sent what is typed in on "keyup" to another input field.
I have this:
$(document).ready(function() {
var oTable = $('#searchtable').dataTable();
}
Really hope you guys can help me.
Best regards
I cannot get the value of my searchfield out. I want to sent what is typed in on "keyup" to another input field.
I have this:
$(document).ready(function() {
var oTable = $('#searchtable').dataTable();
}
Really hope you guys can help me.
Best regards
This discussion has been closed.
Replies
$('#searchtable_filter input').val()
[/code]
Allan