conceptmgt
IS-IT--Management
Hi,
I used Fireworks to create a pop-up menu. Below is one of the menu items that was generated for me. How could I call the function 'confirmSubmit' when this selection is selected.
Thanks
Gary
mm_menu_0211140722_0.addMenuItem("Clear All Email Lists","location.href='deleteAllEmails.asp?listnum="+<%=thelistnum%>+"&curpage="+<%=curpage%>+"'"
;
function confirmSubmit()
{
var agree=confirm("Are you sure you wish to delete this Newsletter?"
;
if (agree)
return true ;
else
return false ;
}
I used Fireworks to create a pop-up menu. Below is one of the menu items that was generated for me. How could I call the function 'confirmSubmit' when this selection is selected.
Thanks
Gary
mm_menu_0211140722_0.addMenuItem("Clear All Email Lists","location.href='deleteAllEmails.asp?listnum="+<%=thelistnum%>+"&curpage="+<%=curpage%>+"'"
function confirmSubmit()
{
var agree=confirm("Are you sure you wish to delete this Newsletter?"
if (agree)
return true ;
else
return false ;
}