Created
March 19, 2013 17:02
-
-
Save srobbin/5197932 to your computer and use it in GitHub Desktop.
jQuery Plugin Workshop
Dropdown menu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Dropdown Menu</h2> | |
<div class="dropdown"> | |
<a data-toggle="dropdown" href="#">Dropdown</a> | |
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> | |
<li><a tabindex="-1" href="#">Action</a></li> | |
<li><a tabindex="-1" href="#">Another action</a></li> | |
<li><a tabindex="-1" href="#">Something else here</a></li> | |
<li class="divider"></li> | |
<li><a tabindex="-1" href="#">Separated link</a></li> | |
</ul> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Clear the console | |
console.clear(); | |
(function ($) { | |
$.fn.dropdown = function () { | |
return this.each(function () { | |
var $self = $(this); | |
$self.click(function () { | |
$self.next(".dropdown-menu").toggle(); | |
return false; | |
}); | |
}); | |
}; | |
$("[data-toggle='dropdown']").dropdown(); | |
})(jQuery); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import "compass"; | |
body { padding: 10px; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment