I've looked through many post on SO and Google, and I imagine I'm missing a step or piece of understanding about .val() As it stands my code below returns Undefined in the . Any tips on getting the actual button value is greatly appreciated.
Simply put I have an HTML button, I want to pull the value of that button on click and display it.
HTML
<button type="button" name="criterianButton" id="english" class="searchButton" value="English">English</button>
JQuery
var buttonValues = $('#english').val();
$(document).ready(function(){
$('button').click(function(){
$('#resultsView').append('<div class="searchResults">'+buttonValues+'</div>');
});
});
