I have the following html and I want to get the value of the div which is \"Other\" How can I do this with jQuery?
You can get div content using .text() in jquery
var divContent = $('#field-function_purpose').text(); console.log(divContent);
Fiddle