Posted on: 5/28/2014 5:18:30 AM | Views : 352

This is pretty strange but I included everything, including the JQuery script and re-checked the syntax. 
I am designing a navigation bar, and am using JQuery to implement it. 
As I hover on one of the div (menu item) in the navigation bar, another div(submenu) becomes visible.
I used a very simple code.
<script src="jquery-1.11.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$("x1").hide();
$("div1").hover( function (){
("x2").show();
}); });
</script>

But nothing seems to be happening. Neither does the x1 div hide, its like the script is dead.
Is there any reason for it to behave this way.

Go to the complete details ...