I am creating a site walk-trough on first signup for users. For this I chose to use live elements on the landing view as they appear more customized for each user than pictures. I am using jQuery clone for drawing my live objects to my walk-through modal.
$(".dashboard_content").clone().appendTo( ".t_dashboard_content" );
I now need to disable all links, form submit action and modal popups in the cloned object.Solutions here are resulting in target elements on the original elements being disabled also which is undesirable. Any leads to attaining this are welcome.