I am trying to use JavaScript to get the value from an HTML text box but value is not coming after white space
For example:
This should be simple using jquery:
HTML:
JS:
var jobValue = $('#txtJob').val(); //Get the text field value $('#txtJob').val(jobValue); //Set the text field value