I am new to Angularjs. I currently have a code that submits a form to a button
<form ng-submit="reloadA(resultsPerPage)">
<select ng-model="resultsPerPage">
<option value="10">10</option>
<option value="25">25</option>
</select>
<input type="submit" id="submit" value="Submit" />
</form>
I need the form to be submitted when selecting an option without a submit button
source
share