Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
Basic counter with increment, decrement, reset, and theme toggle.
$(document).ready(function() {
var count = 0;
var isDark = false;
function updateCounter() {
$('#counter').text(count);
$('#container').toggleClass('dark-theme', isDark);
$('#container').toggleClass('light-theme', !isDark);
$('#theme-btn').text('Switch to ' + (isDark ? 'Light' : 'Dark') + ' Theme');
}
$('#increment').click(function() { count++; updateCounter(); });
$('#decrement').click(function() { count--; updateCounter(); });
$('#reset').click(function() { count = 0; updateCounter(); });
$('#theme-btn').click(function() { isDark = !isDark; updateCounter(); });
updateCounter();
});jQuery is a fast, small, and feature-rich JavaScript library designed to simplify DOM manipulation, event handling, animations, and AJAX interactions. It provides a unified API that works consistently across all major browsers.
Origin & Creator
Created by John Resig in 2006 to provide a concise, cross-browser JavaScript API at a time when native browser features were inconsistent and limited.
Industrial Note
jQuery remains critical for legacy enterprise apps, WordPress themes/plugins, quick UI scripts, and environments where modern frameworks are overkill or unsupported.