Question
Delete Popup
Is it possible to give fuseaction in javascript like this...
function confirmDelete()
{ var msg = "Are you sure you want to delete?";
if ( confirm(msg) )
{ window.location="#mySelf#"}
else
{
alert("You pressed Cancel!");}
}
