If you are a jQuery luver, you must know how to use jQuery Post and Date functions.
Recently I’ve been working on a project, that involves this jQuery Get thingy like this:
$.get("somedirectory/somefile.html", function(data){
var whatineed = $(data).find("#someelement").html();
console.log(whatineed);
});
But, unfortunately it did not work. If you are facing the same case as me, try to wrap that data variable parsed from jQuery Get with some div tag, like this:
var whatineed = $("<div>" + data + "</div>").find("#someelement").html();
I tried it and it worked.
loading...