What I\'m trying to do seems simple: get an HTML page through $.ajax() and pull out a value from it.
$.ajax()
$(function () { $.ajax({
If you would like to parse it, jquery has a nifty trick :)
ParsedElements = $(htmlToParse); Console.log(ParsedElements);
You now have DOM elements you can traverse without placing them in the body of the document.
DOM