Created
May 13, 2009 11:08
-
-
Save ncr/110972 to your computer and use it in GitHub Desktop.
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
<html> | |
<head> | |
<script src="/javascripts/jquery.js" type="text/javascript"></script> | |
</head> | |
<body> | |
<a href="#" id="first">First</a> | |
<a href="#" id="second">Second</a> | |
<a href="#" id="third">Third</a> | |
<script type="text/javascript"> | |
(function($){ | |
$.fn.exclusive = function(options) { | |
var defaults = {} | |
var options = $.extend({}, defaults, $.fn.exclusive.defaults, options) | |
return this.each(function() { | |
}) | |
} | |
})(jQuery); | |
$("#first, #second, #third").exclusive("selected") | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment