Reputation: 25556
Why can't I get the value from this input? See the image below:
Upvotes: 2
Views: 122
Reputation: 206028
Use rather :
$('#SortField').prop('value');
And in your HTML sould be:
<input type="hidden" name="sortField" id="SortField" value="CT#" />
Upvotes: 0