|
QuickBar_Usage
IntroductionMWPS QuickBar is a simple jQuery plugin which allows you to add a browser like bar to the top of the page, this bar is cross browser compatible and easy to use. UsageTo use the MWPS QuickBar you simply have to include the script link to jQuery and the QuickBar plugin. <script src="jquery.js" type="text/javascript"></script> <script src="MWPS QuickBar.js" type="text/javascript"></script> when done you use a jQuery selector and attach the .QuickBar Command.
<script type="text/javascript">
$(function(){
$('#something').QuickBar();
});
</script>
and you should be done.you can add options by using an array and that way, customize the display. <script type="text/javascript">
$(function(){
var options = {
bgcolor: "#ffff80",
height: 30,
speed : "slow",
align : "center"
}
$('#quickbar').QuickBar(options);
});
</script>Available Options
|
► Sign in to add a comment