$.ajax({
type: "GET",
url: "http://www.roblox.com/My/GroupAdmin.aspx?gid=148530",
data: { javascript:__doPostBack('ctl00$ctl00$cphRoblox$cphMyRobloxContent$GroupMemberAdminPane$dlMembers_Footer$ctl02$ctl00','') }
})
.done(function( msg ) {
$(msg).find('.member-name-container').children('[title]').each(function() {
console.log( $(this ).text() )
var g = $(msg ).text()
});
});
How exactly do I make this log the data I want it to find after it does the postback? Its clearly supposed to log in console. I'm trying to find all the usernames in this group on ROBLOX. Help as fast as possible, really need to finish this project. How do I fix this?