For the following jQuery code:
$("#select").change(function() {
$("#output").load("/output/", {}, function(data) {
});
});
Content data:
<div>
Something
</div>
<input type="hidden" name="ajax-output" value="100" />
I want to get the value ajax-outputfrom the output data. How can I do this using jQuery?
source
share