I want confirmation box when i press link "Are you sure want to navigate.. The Entered data will not be saved"... and the condition is ... when form content is not changed i dont want confirm box.(simply.. i want to check the event occurred in form... if it occurs confirm box...else...na vigate...)I am having lot of textbox, checkbox, dropdown in my form.. so i unable to do this.. please help..as soon as possible....
Thanks in advance...
i dont want this confirm box when no changes made in form
Thanks in advance...
Code:
function modal(name,id) { var con = confirm("The data will not be saved..Are you sure want to proceed!"); if(con) { var ttt = next(name,id); return true; } else { return false; } return false; } function next(name,id) { location.href= name +".php?id=" + id; return true; }
i dont want this confirm box when no changes made in form
Comment