What i'm trying to do is what i thought would be quite easy, but it doesnt seem to be working. I want to get the href of an object and all the function is returning is undefined.
This is the page that i'm requesting and what i'm trying to retrieve is the href held in the element of the first seller (who's ClassName is ui-link-inherit)
var buy = $.get(
    "http://m.roblox.com/items/24826737/privatesales/",
    function (data){
        alert($(data).find(".ui-link-inherit:eq(0)").attr('href'));
    }
);
I thought it was a permissions issue at first but it still wont work even if you run that on the page.
 
     
     
    