admin管理员组文章数量:1351114
So I'm trying to make my navigation bar toggle using JQuery however when I click on the span button, nothing is happening.
HTML
<div id="navbar">
<span class="navbar-btn"></span>
<ul>
<li class="currentpage"><a href="/Unit20/Photographer/">Home</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
JQuery
<script>
$('span.navbar-btn').click(function() {
$('#navbar').toggle();
});
</script>
Live Version can be found at - Just rescale your browser less than 960 pixels and you should see the button
So I'm trying to make my navigation bar toggle using JQuery however when I click on the span button, nothing is happening.
HTML
<div id="navbar">
<span class="navbar-btn"></span>
<ul>
<li class="currentpage"><a href="/Unit20/Photographer/">Home</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
JQuery
<script>
$('span.navbar-btn').click(function() {
$('#navbar').toggle();
});
</script>
Live Version can be found at http://joshscottonthe/Unit20/Photographer - Just rescale your browser less than 960 pixels and you should see the button
Share Improve this question asked Nov 11, 2015 at 22:39 Josh WalshawJosh Walshaw 2101 gold badge3 silver badges18 bronze badges 1-
1
Make sure the script is executed after the DOM is loaded. For example using
$(document).ready()
– Martin van Driel Commented Nov 11, 2015 at 22:50
2 Answers
Reset to default 6You need to include your script after the document is loaded.
$(function() {
$('span.navbar-btn').click(function() {
$('#navbar').toggle();
});
})
Or you can include it in the same way you did, just make sure that the <script>
tag is placed after that <span class='navbar-button'>
.
I think this should solve the problem:
$(document).ready(function(){
$('span.navbar-btn').click(function() {
$('#navbar').toggle();
});
});
本文标签: javascriptJQuery Toggle Navigation Bar Using DivStack Overflow
版权声明:本文标题:javascript - JQuery Toggle Navigation Bar Using Div - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743847233a2549343.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论