SlideShare a Scribd company logo
Useful things to do
with jQuery
A quick list from Junior
Developer Central
There’s a lot you can
do with JavaScript
But that doesn’t mean that you have to use it if
you’ve already got jQuery on your page.
These examples all have JavaScript equivalents
but you can make your life easier (and more
consistent) if you use the same ‘language’ for
everything.
jQuery Uncheck checkbox
$('#someElem').prop('checked', false);
More info: jQuery uncheck checkbox
Using the jQuery trim function
var someText = ' I love trimming strings ';
var trimmedText = $.trim(someText); // Gives, 'I
love trimming strings'
More info: jQuery trim function
Using substr to get a jQuery substring
var $someText = $('#name').val();
// Let's say this gets the value 'James Bubb'
var firstName = $someText.substr(0,5);
// firstName now has the value 'James'
var secondName = $someText.substr(6,4);
// secondName now has the value 'Bubb'
More info: jQuery substring
jQuery if statement
var $myElement = $('#myElem');
if($myElement.val().length > 0){
// Do something now that there is some value in the element
}
More info: jQuery if statement
jQuery Change images dynamically
$(function(){
$('#logo').attr('src', '/images/new-logo.jpg');
});
More info: jQuery change image src
jQuery has class
$(function(){
if($('#home').hasClass('active')){
console.log("You're on the home page.");
}
});
More info: jQuery has class
jQuery alert
$(function(){
$('#btn').on('click', function(){
alert('Button pressed');
});
});
More info: jQuery alert
jQuery document ready
$(document).ready(function(){
console.log("It's safe now.");
});
Or
$(function(){
console.log("It's safe now.");
});
More info: jQuery document ready
Also see..
https://www.juniordevelopercentral.com/how-to-install-jquery/

More Related Content

PPT
jQuery
Mohammed Arif
 
PPTX
jQuery Best Practice
chandrashekher786
 
PPTX
Getting classy with ES6
Andy Sharman
 
PPT
Jquery Best Practices
brinsknaps
 
PDF
So long, jQuery, and thanks for all the fish!
Matt Turnure
 
PDF
Railsbridge javascript
p4geoff
 
PPT
J Query
ravinxg
 
PPTX
Java script+mvc+with+emberjs
ji guang
 
jQuery Best Practice
chandrashekher786
 
Getting classy with ES6
Andy Sharman
 
Jquery Best Practices
brinsknaps
 
So long, jQuery, and thanks for all the fish!
Matt Turnure
 
Railsbridge javascript
p4geoff
 
J Query
ravinxg
 
Java script+mvc+with+emberjs
ji guang
 

What's hot (20)

PPTX
Automating boring tasks with Powershell
Alban Gérôme
 
PDF
How Kris Writes Symfony Apps
Kris Wallsmith
 
PPTX
jQuery Presentation
Rod Johnson
 
PDF
Mojolicious, real-time web framework
taggg
 
PPTX
Evented Javascript
waw325
 
DOCX
Built in filters
Brajesh Yadav
 
PPTX
jQuery
Dileep Mishra
 
PPT
jQuery Performance Rules
nagarajhubli
 
PDF
Drupal, meet Assetic
Kris Wallsmith
 
PDF
Jquery plugin development
Md. Ziaul Haq
 
PDF
JQuery plugin development fundamentals
Bastian Feder
 
PPTX
Dart and AngularDart
Loc Nguyen
 
PPT
Getting Started with jQuery
Shea Frederick
 
PDF
Javascript Frameworks for Joomla
Luke Summerfield
 
ODP
Jquery Plugin
Ravi Mone
 
PPTX
Angular directive filter and routing
jagriti srivastava
 
PPTX
Up and Running with ReactJS
Loc Nguyen
 
PDF
jQuery in the [Aol.] Enterprise
Dave Artz
 
PPTX
Getting the Most Out of jQuery Widgets
velveeta_512
 
Automating boring tasks with Powershell
Alban Gérôme
 
How Kris Writes Symfony Apps
Kris Wallsmith
 
jQuery Presentation
Rod Johnson
 
Mojolicious, real-time web framework
taggg
 
Evented Javascript
waw325
 
Built in filters
Brajesh Yadav
 
jQuery Performance Rules
nagarajhubli
 
Drupal, meet Assetic
Kris Wallsmith
 
Jquery plugin development
Md. Ziaul Haq
 
JQuery plugin development fundamentals
Bastian Feder
 
Dart and AngularDart
Loc Nguyen
 
Getting Started with jQuery
Shea Frederick
 
Javascript Frameworks for Joomla
Luke Summerfield
 
Jquery Plugin
Ravi Mone
 
Angular directive filter and routing
jagriti srivastava
 
Up and Running with ReactJS
Loc Nguyen
 
jQuery in the [Aol.] Enterprise
Dave Artz
 
Getting the Most Out of jQuery Widgets
velveeta_512
 
Ad

Similar to Useful things to do with jQuery (20)

PPTX
Introduction to jQuery
Alek Davis
 
PDF
Stack Overflow Austin - jQuery for Developers
Jonathan Sharp
 
PDF
Jquery tutorial-beginners
Isfand yar Khan
 
PPTX
Jquery fundamentals
Salvatore Fazio
 
PDF
Devdays Seattle jQuery Intro for Developers
cody lindley
 
PDF
jQuery State of the Union - Yehuda Katz
Marakana Inc.
 
PDF
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
PDF
Learning jquery-in-30-minutes-1195942580702664-3
luckysb16
 
PPTX
jQuery
Vishwa Mohan
 
PDF
jQuery quick tips
Rochester Oliveira
 
PPT
jQuery introduction
Tomi Juhola
 
PDF
Learning jQuery in 30 minutes
Simon Willison
 
PDF
J query fundamentals
Attaporn Ninsuwan
 
PDF
jQuery Internals + Cool Stuff
jeresig
 
PPT
jQuery Fundamentals
Doncho Minkov
 
PPTX
Beginning jQuery
Mindy McAdams
 
PDF
fuser interface-development-using-jquery
Kostas Mavridis
 
PPT
jQuery For Beginners - jQuery Conference 2009
Ralph Whitbeck
 
PPT
Jquery
eginni
 
PPT
jQuery Introduction/ jquery basic concept
MuhammadJameel83
 
Introduction to jQuery
Alek Davis
 
Stack Overflow Austin - jQuery for Developers
Jonathan Sharp
 
Jquery tutorial-beginners
Isfand yar Khan
 
Jquery fundamentals
Salvatore Fazio
 
Devdays Seattle jQuery Intro for Developers
cody lindley
 
jQuery State of the Union - Yehuda Katz
Marakana Inc.
 
jQuery Loves Developers - Oredev 2009
Remy Sharp
 
Learning jquery-in-30-minutes-1195942580702664-3
luckysb16
 
jQuery
Vishwa Mohan
 
jQuery quick tips
Rochester Oliveira
 
jQuery introduction
Tomi Juhola
 
Learning jQuery in 30 minutes
Simon Willison
 
J query fundamentals
Attaporn Ninsuwan
 
jQuery Internals + Cool Stuff
jeresig
 
jQuery Fundamentals
Doncho Minkov
 
Beginning jQuery
Mindy McAdams
 
fuser interface-development-using-jquery
Kostas Mavridis
 
jQuery For Beginners - jQuery Conference 2009
Ralph Whitbeck
 
Jquery
eginni
 
jQuery Introduction/ jquery basic concept
MuhammadJameel83
 
Ad

Recently uploaded (20)

PPTX
Presentation about variables and constant.pptx
kr2589474
 
PPTX
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
PDF
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
PPTX
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
PDF
Salesforce Implementation Services Provider.pdf
VALiNTRY360
 
PPT
Why Reliable Server Maintenance Service in New York is Crucial for Your Business
Sam Vohra
 
PDF
Adobe Illustrator Crack Full Download (Latest Version 2025) Pre-Activated
imang66g
 
PDF
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
PPTX
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
PDF
ShowUs: Pharo Stream Deck (ESUG 2025, Gdansk)
ESUG
 
PDF
Appium Automation Testing Tutorial PDF: Learn Mobile Testing in 7 Days
jamescantor38
 
PPTX
Explanation about Structures in C language.pptx
Veeral Rathod
 
PDF
Bandai Playdia The Book - David Glotz
BluePanther6
 
PPTX
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
Balancing Resource Capacity and Workloads with OnePlan – Avoid Overloading Te...
OnePlan Solutions
 
PPTX
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
PPTX
Presentation about variables and constant.pptx
safalsingh810
 
PDF
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
PDF
Protecting the Digital World Cyber Securit
dnthakkar16
 
PDF
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 
Presentation about variables and constant.pptx
kr2589474
 
Odoo Integration Services by Candidroot Solutions
CandidRoot Solutions Private Limited
 
Key Features to Look for in Arizona App Development Services
Net-Craft.com
 
GALILEO CRS SYSTEM | GALILEO TRAVEL SOFTWARE
philipnathen82
 
Salesforce Implementation Services Provider.pdf
VALiNTRY360
 
Why Reliable Server Maintenance Service in New York is Crucial for Your Business
Sam Vohra
 
Adobe Illustrator Crack Full Download (Latest Version 2025) Pre-Activated
imang66g
 
WatchTraderHub - Watch Dealer software with inventory management and multi-ch...
WatchDealer Pavel
 
slidesgo-unlocking-the-code-the-dynamic-dance-of-variables-and-constants-2024...
kr2589474
 
ShowUs: Pharo Stream Deck (ESUG 2025, Gdansk)
ESUG
 
Appium Automation Testing Tutorial PDF: Learn Mobile Testing in 7 Days
jamescantor38
 
Explanation about Structures in C language.pptx
Veeral Rathod
 
Bandai Playdia The Book - David Glotz
BluePanther6
 
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Balancing Resource Capacity and Workloads with OnePlan – Avoid Overloading Te...
OnePlan Solutions
 
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
Presentation about variables and constant.pptx
safalsingh810
 
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
Protecting the Digital World Cyber Securit
dnthakkar16
 
advancepresentationskillshdhdhhdhdhdhhfhf
jasmenrojas249
 

Useful things to do with jQuery