All Downloads are FREE. Search and download functionalities are using the official Maven repository.

admin.custom.assets.js.custom.js Maven / Gradle / Ivy

The newest version!
var customCount = 0;

function customUpdate() {
    var str = (customCount == 1) ? 'time' : 'times';
    $('#custom-content').text('You clicked me ' + customCount + ' ' + str + '.');
}

$(function(){
    $('#custom-button').click(function(){
        ++customCount;
        customUpdate();
    });
    customUpdate();
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy