jQuery menu is displayed behind my div element -
in page have 2 divs - 1 holding jquery menu , other jquery.datatable (extension datatables.net).
<div id='divmenu'/> <div id='divtable'/>
i render data table in second div
$('#divtable').append(mytable); mytable.datatable({...});
then dynamically construct jquery menu , append first div
$('#divmenu').append(mymenu); mymenu.menu();
now when i'm expanding menu of submenu actions go under(behind) second div. can advise anything? thank you...
you need use z-index
css property. documentation.
Comments
Post a Comment