Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
jQuery Object getClasses System
Posted on 08/29/2014 at 11:04 am by Kevin Wentworth
Viewed 9,409 times | 0 comments
After having to create a list of classes on an element, I decided that it was time to have a method to pull all of an objects classes into one returnable array. This is extremely useful for class-based tagging and object finding.
Requires jQuery v1.2+
The getClasses Method
- jQuery.fn.getClasses = function() {
- var classes = [];
- var objClass = $(this).attr('class');
- if(value !== "") {
- classes.push(value);
- }
- });
- return classes;
- }
Using It
Instead of doing anything fancy, let's just print out the classes that the div has, into its child span
- var theClasses = $('#element').getClasses();
Good Luck, Fellow Programmers.
Tags for jQuery Object getClasses System
Jquery | Javascript | Tutorial
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!