Skip to content

Instantly share code, notes, and snippets.

@wcc526
Created September 26, 2015 12:05
Show Gist options
  • Save wcc526/4cde129a996d2e4dd7c2 to your computer and use it in GitHub Desktop.
Save wcc526/4cde129a996d2e4dd7c2 to your computer and use it in GitHub Desktop.
bootstrap

javascript

<script type="text/javascript">
$("#loading-button").click(function(){
    var btn=$(this);
    btn.button('loading');
    setTimeout(function(){
        btn.button('reset');
    },3000);
});
</script>

<script type="text/javascript">
$('#my-button').click(function(){
    $('#my-modal').modal();
});
</script>

<script type="text/javascript">
$(document).ready(function(){
    $('.carousel').carousel({
        interval: 5000;
    });
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment