I want to redirect people like this: example.com/search/[search+text]
html source code:
<form name="menu_search" method="get" onsubmit="window.location.href = 'http://www.col3negmovie.com/search/'+this.q.value+''; return false;" >
<input name="q" id="videoSearch" />
</form>
this is the anchor link :
<a href="./#" onclick="document.menu_search.submit(); window.location.href='http://www.col3negmovie.com/search/'+this.q.value+''; return false;">Search</a>
onclick doesn't work, how could i fix this?
onclick="document.menu_search.submit();
window.location.href='http://www.col3negmovie.com/search/'+this.q.value+'';
return false;"