vote up 3 vote down star

This is a follow up to a previous question which seems to have confused people so I'll purify it a bit. Here is some markup.

<div class="button width120 height30 iconLeft colorRed"></div>
<div class="button width180 height20 iconPlus colorBlue"></div>
<div class="button width200 height10 iconStar colorGreen"></div>
<div class="button width110 height60 iconBack colorOrange"></div>

The challenge is to fill in the code in the following.

$(".button").each(function(){

    // Get the width from the class

    // Get the height from the class

    // Get the icon from the class

    // Get the color from the class

});

Now, I know that you shouldn't use classes this way so I'm not looking for alternative ways of doing it, this is an experiment and I'm interested to know if it's possible to do it this way.

flag

That's CSS overkill – tj111 Apr 16 at 19:31

6 Answers

vote up 6 vote down

Something like:

$(".button").each(function(){
    var classNames = $(this).attr('class').split(' ');
    var width, height;
    for(int i = 0; i < classNames.length; i++) {
        var className = classNames[i];
        if(className.indexOf('width') > -1) {
            width = className.substring(5, className.length - 1);
        } else if(className.indexOf('height') > -1) {
            height = className.substring(6, className.length - 1);
        } // etc. etc.
    }
});

Or have I misunderstood what you were asking?

link|flag
Substr wont quite work, since the height and width could be longer – Ólafur Waage Apr 16 at 14:53
1  
eh? it uses className.length - 1, so the value can be of any length. – Rory Fitzpatrick Apr 16 at 14:54
I think you have understood the question :) Would this still work if the width wasn't there when the page loaded but I added it using $(".button").addClass("width250"); Would the new class have been added to the class attribute? – jonhobbs Apr 16 at 14:55
@jonhobbs: Yes it would, at least if you run this code after you add the class. When you call addClass, jQuery simply modifies the className property of the element. – Moff Apr 16 at 15:05
vote up 3 vote down

This is a terrible idea, but since you seem to already know that, here's the code:

$(".button").each( function() {
  var width, height, color, icon;
  $.each( $(this).attr('class').split(), function( cls ) {
    if( cls.match("^width") ) { width = cls.split('width').pop(); }
    else if( cls.match("^height") ) { height = cls.split('height').pop(); }
    else if( cls.match("^icon") ) { icon = cls.split('icon').pop(); }
    else if( cls.match("^color") ) { color = cls.split('color').pop(); }
  } );
  console.log( "width: " + width );
  console.log( "height: " + height );
  console.log( "icon: " + icon );
  console.log( "color: " + color );
});
link|flag
Nice :) (10 chars? what if all I want is a smiley!) – Rory Fitzpatrick Apr 16 at 18:39
vote up 2 vote down

I found this answer which looks very robust...

$(".button").each(function(el){
    classStr = el.className;
    classes = classStr.split(' ');

    // Loop through classes and find the one that starts with icon

});
link|flag
vote up 0 vote down

I like to solve some challenges in silly ways. :D This is a very unelegant, inefficient and not very safe solution. But i had fun writing it.

<!doctype html>
<html>

  <head>

    <script src="jquery/jquery-1.3.2.min.js"></script>
    <script>
      $(function () {
        $(".button").each(function(){
          var div = $(this)
          div.css({"border":"1px solid black"});
          var classes = div.attr('class').split(' ').slice(1);
          classes.forEach( function (element) {
            div.append(/(width|height)(\d+)|(icon|color)(\S+)/.exec(element).filter(function (element) {return !!element} ).slice(1).join(": ").concat("<br>" ) )
          })
        })
      });

    </script>
  </head>
  <body>
    <div class="button width120 height30 iconLeft colorRed"></div>
    <div class="button width180 height20 iconPlus colorBlue"></div>
    <div class="button width200 height10 iconStar colorGreen"></div>
    <div class="button width110 height60 iconBack colorOrange"></div>


  </body>

</html>

Ohh, and it doesn't work in every browser. ;)

link|flag
vote up 0 vote down

Why do you have such a class in a div?

link|flag
vote up 0 vote down
$(".button").each( function() {
    var classStr = this.className;
    var classes = {}
    classStr.replace( /(width|height|icon|color)([a-z0-9]+)/gi,
        function( str, key, val ) {
            classes[key] = val;
        }
    );
    console.log( classes );
});

/*
 * {
 *     width:  '120',
 *     height: '30',
 *     icon:   'Left',
 *     color:  'Red'
 * }
 */
link|flag
Nice work, but you didn't extract out just the values. I'm pretty sure that's what he wanted. So, you're like halfway there. – KyleFarris Apr 16 at 17:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.