Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Okay, I have a jQuery line of code, that I need to convert to work with Prototype.

$(document).ready(function(){
 if(navigator.userAgent.indexOf('Chrome')!=-1)
 {
  /* Applying a special chrome curosor,
   as it fails to render completely blank curosrs. */
  zoom.addClass('chrome');  
 }
});

zoom is the classname and I want to add the class chrome to it if chrome is detected.

So far for Prototype I have this:

document.observe("dom:loaded", function() {
 Object.prototype.addClass = function(className) {
    if (!this.hasClass(className)) { //if the class isn't there already
    this.className += (' ' + className); //append it to the end of the class list
    }
 }
});

But unfortunately, that's as far as I can get with Google searching.

Anyone have a solution?

share|improve this question
What do you mean by zoom is the classname. Are you saying that's a jQuery object containing an element that has the class "zoom"? – user113716 Dec 15 '10 at 3:16
This has already been answered in a post below. Thanks! – AntoNB Dec 16 '10 at 5:57

1 Answer

up vote 4 down vote accepted

I'll assume you're selecting elements with the class "zoom".

document.observe('dom:loaded', function() {
    if(navigator.userAgent.indexOf('Chrome')!=-1) {
        $$('.zoom').each(function(e) {
            e.addClassName( 'chrome' );
        });
    }
});

In the code in the question, you're adding to Object.prototype. Never do that. It will only cause problems.

share|improve this answer
You can reduce some of that indentation with $$('.zoom').invoke('addClassName', 'chrome'); – clockworkgeek Dec 15 '10 at 4:06
It worked fantastically! Thanks a bunch! – AntoNB Dec 15 '10 at 5:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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