Skip to the content...

Welcome to the David Walsh Blog. I'm a MooTools, Dojo, jQuery, CSS, and PHP Web Developer located in Madison, Wisconsin, United States. Please contact me if I can make your experience on my website better.

iPhone Click Effect Using MooTools or jQuery

34 Responses »

One thing I love about love about Safari on the iPhone is that Safari provides a darkened background effect when you click a link. It's the most subtle of details but just enforces than an action is taking place. So why not implement that on any page? We can easily do so using MooTools or jQuery.

The CSS

.clicked { padding:1px 2px; -moz-border-radius:5px; background:#aaa; }

Style as you wish!

The MooTools JavaScript

window.addEvent('domready',function() {
	var lynx = $$('a');
	lynx.addEvent('click',function(e) {
		lynx.removeClass('clicked'); //remove from others
		this.addClass('clicked');
	});
});

The syntax between the two frameworks is very similar.

The jQuery JavaScript

$(document).ready(function() {
	var lynx = $('a');
	lynx.click(function(e) {
		lynx.removeClass('clicked');
		$(this).addClass('clicked');
	});
});

My example shows the gray background but what's great is that since the snippet uses a CSS class, you can make the background any color you'd like. You could add a spinner next to the link or italicize the link text. Of course when a link is clicked there's only a moment where you can see the added effect but I think it's worth it!

Discussion

  1. September 22, 2009 @ 7:47 am

    You’re right, this effect very subtle, but incredibly effective.

    Curious how a linked transparent gif/png would be affected? I’m assuming you would see the ‘clicked’ background on those as well?

  2. September 22, 2009 @ 8:01 am

    Nice stuff, but shouldn’t it be e.preventDefault(); on the mootools version too?
    I would like to know how you did this textmate snippet integration too, your awesome!

  3. September 22, 2009 @ 8:06 am

    My bad — I forgot to remove the “stop” and “preventDefault()” ‘s from when they were demos. We don’t want to stop or prevent anything.

  4. mr.x.
    September 22, 2009 @ 9:10 am

    I love it! I’ve made a hover effect a while back and this is a great add to it since a lot of my site uses ajax!

    Here is my hover-effect script:
    $$(‘a[not!=e]‘).each(function(el){

    el.addEvent(‘mouseover’, function(event){
    var morph = new Fx.Morph(el, {duration: ‘short’, transition: Fx.Transitions.Sine.easeOut});
    var bgcolor = el.getStyle(‘background-color’);
    morph.start({
    ‘padding-top’: [0 , 5],
    ‘padding-bottom’: [0 , 5],
    ‘background-Color’:'#cfffff’
    });

    });
    el.addEvent(‘mouseout’, function(event){
    morph_delay = function(){
    var morph = new Fx.Morph(el, {duration: ‘short’, transition: Fx.Transitions.Sine.easeOut});
    morph.start({
    ‘padding-top’: [5 , 0],
    ‘padding-bottom’: [5 , 0],
    ‘background-Color’:this.bgcolor
    });
    }
    morph_delay.delay(50)
    });
    })

  5. thomas
    September 22, 2009 @ 9:11 am

    Excuse me, but why just not use the :active CSS-pseudo class?

  6. thomas
    September 22, 2009 @ 9:12 am

    @Thomas: CSS-pseudo selector* even

  7. September 22, 2009 @ 9:18 am

    Couldn’t you mostly do this with CSS? the a:active pseudo-class will give you something when they click on it.

    It’ll go away when they release the mouse button (so I wouldn’t do it if you wanted a spinner or something fancy) but if you just want to visually register that they clicked a link, :active might be enough.

  8. September 22, 2009 @ 9:25 am

    “:active” is a great option but prefer the javascript method because it gives me more options.

  9. mr.x.
    September 22, 2009 @ 9:36 am

    Is it my imagination or lynx is named by new Ubuntu 10.04: Lucid Lynx ?

  10. thomas
    September 22, 2009 @ 11:12 am

    @David Walsh: I don’t see what additional options you’re referring to in the above example that can’t be solved with the :active pseudo-selector.

    I found a nice article that pretty much sums up my thoughts about the use of (redundant) Javascript: http://css-tricks.com/you-know-you-should-use-javascript-when/
    “JavaScript: If it can be done in another language, it should be done in another language.”

    Regards

  11. September 22, 2009 @ 11:12 am

    Don’t waste resources and just remove the class from the active link ;)

    http://paste.davidwalsh.name/99

  12. September 22, 2009 @ 11:13 am

    Good call Kassens!

  13. September 22, 2009 @ 11:15 am

    Thomas: I realize that. One thing I wanted to toy with was leaving the class on anything clicked. Maybe a different color for those that weren’t the most recent clicked. In that case I’d definitely JS. I do, however, see where you’re coming from.

  14. September 22, 2009 @ 4:46 pm

    I hardly see anything that resembles the iPhone UI, but thanks for the post and the mootools & jQuery comparison code. Also I love your code preview, it is FTW.

  15. September 24, 2009 @ 6:50 am

    I don’t mean to repeat what others have already stated, but I have to agree that CSS is the right tool for this task.

    I believe that :focus is what you’re after, not :active. The link remains “focused” even after the mouse button is released.

  16. September 25, 2009 @ 7:25 am

    Agree, the :active selector is there for a reason, and you don’t need any javascript at all for it!

  17. andrew
    October 12, 2009 @ 4:09 pm

    Personally, I don’t think he was trying to show a better than css way, simply showing up to do. Also, if we’re doing this for Safari, should we not be using the -webkit-border-radius? I was under the impression Safari doesn’t use the -moz. Cheers.

  18. al
    October 29, 2009 @ 5:49 am

    Would like to know how to apply it to a specific div so that it’s not applied to all clickable links including pics, thx.

  19. January 8, 2010 @ 12:09 am

    I’d humbly suggest a mousedown for the addClass and mouseup and mouseout for removeClass to better resemble iPhone functionality.

  20. hamid
    May 18, 2010 @ 11:38 am

    i think it is better if you use this :

    a {
    outline: none;
    }

Be Heard!

Share your thoughts with fellow developers of all skill levels! I want to hear from you!

Name*:
Email*:
Website:  
Wrap your code with <code> tags, f00!