Hi,

Using jQuery you could register a click listener on the tab links to popup a confirm dialog before continuing. Something like:

$(document).ready(function(){
   *$(".tp_tab_link").click(function(event){
     return confirm("messsage");
   });*
 });


regards

Bob

On 2011/12/06 14:12 PM, Ivan Furdi wrote:
Hi all,

Im doing something with tabbed panels and was wondering how to add some confirm 
dialog on tab switch?

For example I have 2 tabs and when I switch between them i would like to ask a user about some action ("Do you want to do ....." etc.)

Any ideas?

Thx


Reply via email to