Code Editor
Codemirror
 
1
$( document ).ready(function() {    jQuery.fn.extend({    toggleText: function (a, b){        var that = this;        if (that.text() != a && that.text() != b){            that.text(a);        }        else            if (that.text() == a){                that.text(b);            }        else            if (that.text() == b){                that.text(a);            }        return this;    }});
Theme Example
1
 
1
$(document).ready(function(){    $('.datepicker').pickadate({        selectMonths: true, // Creates a dropdown to control month        selectYears: 15 // Creates a dropdown of 15 years to control year    });    $('input.autocomplete').autocomplete({        data: {            "Apple": null,            "Microsoft": null,            "Google": 'assets/images/google.png'        }    });});