Tabbar not showing

I have the following code to test out tabbar functionality. However when I run it nothing appears and there are no error messages. Please can you tell me what I’m doing wrong.

Thanks

Sorry to include this in the message but your system would not allow me to load ANY file because it was a ‘possible attack vector’.

<head>

	<link rel="stylesheet" type="text/css" href="/javascripts/dhtmlx/dhtmlxGrid/codebase/dhtmlxgrid.css">

	<link rel="stylesheet" type="text/css" href="/javascripts/dhtmlx/dhtmlxGrid/codebase/skins/dhtmlxgrid_dhx_skyblue.css">

    <link rel="stylesheet" href="/javascripts/dhtmlx/dhtmlxCombo/codebase/dhtmlxcombo.css" type="text/css" media="screen" charset="utf-8">

    <link rel="stylesheet" href="/javascripts/dhtmlx/dhtmlxTabbar/codebase/dhtmlxtabbar.css" type="text/css" media="screen" charset="utf-8">



    <script  src="/javascripts/commonjsfuncs.js" type="text/javascript" charset="utf-8"></script>

	<script  src="/javascripts/dhtmlx/dhtmlxGrid/codebase/dhtmlxcommon.js" type="text/javascript" charset="utf-8"></script>

	<script  src="/javascripts/dhtmlx/dhtmlxGrid/codebase/dhtmlxgrid.js" type="text/javascript" charset="utf-8"></script>

	<script  src="/javascripts/dhtmlx/dhtmlxGrid/codebase/dhtmlxgridcell.js" type="text/javascript" charset="utf-8"></script>

    <script src="/javascripts/dhtmlx/dhtmlxGrid/codebase/ext/dhtmlxgrid_filter.js" type="text/javascript" charset="utf-8"></script>

    <script src="/javascripts/dhtmlx/dhtmlxGrid/codebase/excells/dhtmlxgrid_excell_combo.js" type="text/javascript" charset="utf-8"></script>

	<script src="/javascripts/dhtmlx/dhtmlxForm/codebase/dhtmlxform.js" type="text/javascript" charset="utf-8"></script>

    <script src="/javascripts/dhtmlx/dhtmlxCombo/codebase/dhtmlxcombo.js" type="text/javascript" charset="utf-8"></script>

    <script src="/javascripts/dhtmlx/dhtmlxCombo/codebase/ext/dhtmlxcombo_whp.js" type="text/javascript" charset="utf-8"></script>

    <script src="/javascripts/dhtmlx/dhtmlxDataProcessor/codebase/dhtmlxdataprocessor.js" type="text/javascript" charset="utf-8"></script>

    <script src="/javascripts/dhtmlx/dhtmlxTabbar/codebase/dhtmlxcontainer.js" type="text/javascript" charset="utf-8"></script>

    <script src="/javascripts/dhtmlx/dhtmlxTabbar/codebase/dhtmlxtabbar_start.js" type="text/javascript" charset="utf-8"></script>

    <script src="/javascripts/dhtmlx/dhtmlxTabbar/codebase/dhtmlxtabbar.js" type="text/javascript" charset="utf-8"></script>



</head>

<body onload="setuptabAgent()">
	<script>

		function setuptabAgent()
		{

			tabAgent = new dhtmlXTabBar("divtabAgent","top","20px");
			tabAgent.setImagePath=("/javascripts/dhtmlx/dhtmlxTabbar/codebase/imgs/");
			tabAgent.addTab("coinfo","Company Info","550px");

		}
	</script>


	<div id = "divtabAgent" width = "500px" height="250px" ></div>

	

</body>

Try to set the container sizes correctly:

instead of

I did work this out by trial and error but the original example came from your side also! :open_mouth:

Possibly the doctypes are different.