javascript - Z-index not working with jquery css -
how works:
$("#linechart").css({ position:'fixed', top: "4%", left: "2%", height: "92%", width: "96%" }); and breaks javascript:
$("#linechart").css({ position:'fixed', top: "4%", left: "2%", height: "92%", width: "96%", z-index: "5" });
you have define this:
"z-index": "5" or uppercase if don't want define in quotes:
zindex: "5"
Comments
Post a Comment