Is it possible to pass a variable from one page to the next page and running that variable at the same time?
What I am trying to do is have a search bar that allows the user to search and upon enter opening up a new page that has a datatable. I want to pass what they type into search bar into the search bar of the datatable and have the results shown.
<!-- START Search form-->
<form role="search" action="searchalltransactions.cfm" class="navbar-form">
<div class="form-group has-feedback">
<input type="text" placeholder="Type and hit enter ..." class="form-control">
<div data-search-dismiss="" class="fa fa-times form-control-feedback"></div>
</div>
<button type="submit" class="hidden btn btn-default">Submit</button>
</form>
<!-- END Search form-->
Is something like this possible? I am not familiar with this and just trying to learn how to do this if its even possible.
How can I pass this into the (search that datatables creates) on the next page searchalltransactions.cfm
Search that jquery datatables creates
<input class="form-control input-sm" placeholder="" aria-controls="processing1" type="search">