Hi guys,
I have a problem with kendo menu view on firefox. I have attached 2 images on this post, 1.jpg first and then 2.jpg, it happens in 1 ms, quite fast but enough to see each press F5. It only happens on firefox, there is no problem on IE. Could you please help me to resolve this.
This is my code
Thank you,
I have a problem with kendo menu view on firefox. I have attached 2 images on this post, 1.jpg first and then 2.jpg, it happens in 1 ms, quite fast but enough to see each press F5. It only happens on firefox, there is no problem on IE. Could you please help me to resolve this.
This is my code
<!DOCTYPE html><html><head> <title>@ViewBag.Title</title> <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/kendo.common.min.css")" rel="stylesheet" type="text/css" /> <link href="@Url.Content("~/Content/kendo.default.min.css")" rel="stylesheet" type="text/css" /> <script src="@Url.Content("~/Scripts/jquery-1.7.1.min.js")" type="text/javascript"></script> <script src="@Url.Content("~/Scripts/kendo.all.min.js")" type="text/javascript"></script></head><body> <ul id="nav"> @for (var i = 0; i < 20; i++) { <li>Hello</li> } </ul> <div> @RenderBody() </div></body></html><script type="text/javascript"> $(function () { $("#nav").kendoMenu(); });</script>Thank you,
