I creating a web page which displays charts, in tabs.
The tabs are created programmatically when a button is pressed.
I just create a tab and set the href to a page which is where the chart is created.
this is how I create the tab:-
javascript function in head of page 1
var node1=document.createElement("div");
var devel = new dijit.layout.ContentPane({id:"develTab",closable:"true",position:"relative",refreshOnShow:"true",title:"development overview"},node1);
devel.setHref("developmentoverview.jsp");
var tabCont = dijit.byId("tabs");
