This is probably pushing the limits of jquery.
I want to have the live() event triggered. But I only want to let it be triggered once using perhaps the one() event.
Currently I have the code blow. How do I restrict this to only being called once.
$(".sub-content").live('click', function() {
var id = this.id;
$.get("InfoRetrieve", { theid:id }, function(data) { addContent(data, id) } );
});