Please help to look at my simple code as below. Thank you.
<style>
ul.k-menu {
border: 0;
background-color: transparent;
font-weight: bold;
text-decoration: none;
background-image: url('divBg_bg.jpg');
background-repeat: repeat-x;
color: White;
}</style>
<div id="example" class="k-content">
<ul id="treeview">
<li data-expanded="true">Item 1
<ul>
<li>Item 1.1</li>
<li>Item 1.2</li>
<li>Item 1.3</li>
</ul>
</li>
<li>Item 2
<ul>
<li>Item 2.1</li>
<li>Item 2.2</li>
<li>Item 2.3</li>
</ul>
</li>
<li>Item 3</li>
</ul>
<script>
$(document).ready(function() {
$("#treeview").kendoMenu();
});
</script>
</div>
Works fine: IE & Chrome.
Not work: Firefox v15.0.1
<style>
ul.k-menu {
border: 0;
background-color: transparent;
font-weight: bold;
text-decoration: none;
background-image: url('divBg_bg.jpg');
background-repeat: repeat-x;
color: White;
}</style>
<div id="example" class="k-content">
<ul id="treeview">
<li data-expanded="true">Item 1
<ul>
<li>Item 1.1</li>
<li>Item 1.2</li>
<li>Item 1.3</li>
</ul>
</li>
<li>Item 2
<ul>
<li>Item 2.1</li>
<li>Item 2.2</li>
<li>Item 2.3</li>
</ul>
</li>
<li>Item 3</li>
</ul>
<script>
$(document).ready(function() {
$("#treeview").kendoMenu();
});
</script>
</div>
Works fine: IE & Chrome.
Not work: Firefox v15.0.1