I have a select option tag and i would like to put two onchange="" in the same tag but when i choose an option, it only work for: onChange="window.location.href=this.value" --> Show selected option on the url
But it did not work for: onchange="sortResult(this.value)".
If this is not allowed, then how can I achieve this?
<select name="sortby" class="form-control" id="city" onChange="window.location.href=this.value" onchange="sortResult(this.value)">
<option>1</option>
<option>2</option>
...
</select>