Skip to content

Instantly share code, notes, and snippets.

@gdakram
Created July 30, 2010 17:45
Show Gist options
  • Save gdakram/500981 to your computer and use it in GitHub Desktop.
Save gdakram/500981 to your computer and use it in GitHub Desktop.
$j(document).ready(function(){
$j.ajax({
url : "/main/homearea/quester_info_xml.pl",
type : "GET",
dataType : "xml",
success : function(doc) {
var user_id = doc.getElementsByTagName("user_id").item(0).firstChild.nodeValue;
$j.ajax({
url : "/main/projectSupport/designer/avatarObjects/avatarSelect.pl",
type : "POST",
dataType : "xml",
data : "cmd=setObj&target="+user_id+"&objSlotID_14=shardflower"
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment