Run search automatically after search panel selection |
5/29/2014 1:51:15 PM |
PHPRunner Tips and Tricks | |
Sergey Kornilov
Lets say you have a dropdown box on search panel and you want search to be ran automatically once user makes her selection (no need click the Search button).
$("select[name^='value_period']").change(function() { |
|