$("#delete"+stateIdVal).html("Really delete?");
Is that what you're after?
Also, as a tip, instead of using "javascript:" calls inside your link,
consider a more unobtrusive method. Give each link a "delete" classname.
Then you can do:
$("a.delete").click(function() {
if (confirm("Really delete?")) {
// deletion stuff
}
});
Cheers,
Chris
_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
