hi all im kinda new to jquery and i have no idea why my script aint working could you please help me out.i have tryed
script src="text/javascript scipt src='jquery-ui/jquery.min.js and jquery-ui.min.js
dont know if it is necessary tho. .
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Store Home</title>
<!--Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!--Bootstrap-->
<script type="text/javascript"></script>
<script>
$(document).ready(function() {
$('#searchbox').hide();
$('#search').mouseOver(function() {
$('#searchbox').slideToggle(400);
});// end mouseover
});// end ready
</script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
</div>
<div>
<ul class="nav navbar-nav" id="navbar">
<li><a href="#" id="log">Login/Register</a></li>
<li><a href="#" id="home">Home</a></li>
<li><a href="#" id="search">Search</a></li>
<li><a href="#" id="store">Store</a></li>
<li><a href="#" id="about">About</a></li>
</ul>
</div>
</div>
</nav>
<img src="http://www.unixstickers.com/image/cache/data/stickers/meme/gentleman/Gentleman.sh-600x600.png" href="#" id="logo">
<div id="searchbox"></div>
<form class="searchbox" action="">
<input type="search" placeholder="Search" />
</form>
</body>
</html>
jquery.jsin your page, onlybootstrap.js. Add a reference to jQuery, and ensure you put if before Bootstrap, and your code should work. If not, check the console for other errors.