[jQuery] work with what this.id gave me
hi,
i have a click handler for a class in which i save this.id
chosen = this.id
later on i want to do something like
$(chosen).empty();
but this just works if
chosen = '#' + chosen;
happens before that.
because i think this is somehow ugly i just wanted to know if there is
maybe a better way to do this.