|
I am trying to show/hide a div inside an iframe when the Extruder menu opens/close for a particular pageonly using the Extruder call back functions. Initially it works fine but after visiting some other page. the menu doesn't open and it shows the error in jquery file(permission denied). Help me out plz. Thanks Rajesh |
|
this one is i am trying var frame=$('#customer').contents().find('#atm_page'); var con=$('#customer').contents().find('#tele'); $("#extruderLeft").buildMbExtruder({ position:"left", width:300, extruderOpacity:.9, hidePanelsOnClose:true, accordionPanels:true, onExtOpen:function(){ if(frame.length!=0) { frame.css("margin-left", "270px"); con.css("display", "none"); } }, onExtContentLoad:function(){}, onExtClose:function(){ if(frame.length!=0) { frame.css("margin-left", "0px"); con.css("display", "block"); } } }); |



anyone plz help