Currently, my form consists of a basic search field where users enter a parameter and are then redirected to the corresponding page.
I am attempting to pass the argument in the form using Jade syntax:
form(name='searchForm', ng-href='#/item/{{ctrl.search}}')
input(type='text', ng-model='ctrl.search')
The goal is to have the route update to #/item/argument
once users hit enter after typing in the search field.
Any suggestions on how to accomplish this would be greatly appreciated!
Thank you in advance