How can I get the value of textbox into label when I click on a button using jquery.
I know how to write the click event in jquery. But when I write something like
$('#labelID').val() = $('#textboxID').val();
I get an error saying 'cannot assign to a function result'
Please help