Manso jQuery Trick: is the element really visible

WireframeWhen designing desktop apps, websites, and mobile applications, more than once I have tried using an application like mockingbird or Pencil Project. On one hand, mockingbird, is a web application that can be accessed from any browser and allows you to design multiple pages with different elements. On the other hand, Pencil Project, initially born as a Firefox extension, now has a multiplatform desktop application that allows you to mockup easily.

The drawback I see on these two applications is that for some reason, I always end up making simple mockups with a simple pen and paper. This way I can organize my ideas faster than using these applications. I guess the main reason for this is that I’m not a designer, so to me it is the same doing a shitty design in paper, than a shitty design with an application. Moreover, usually using a computer app for this task I end up spending more time to do the same…

Anyway, the other day I discovered Wireframe.cc, and the truth is that I was quite impressed by the UI. It is super-easy and fast to use. You just drag the mouse while clicking and voila, you have an item of the size of your selection. You click on the type of item you want and you are done with the item. Even if you want to change attributes, you just have to double click on it, and select the attributes you want to change.

Actually, it is the first time I feel that I do not waste my time doing mockups with an application of this kind. From what I’ve seen, this application is starting, and it still lacks of some functionalities and needs some polishment, but I suppose that those will be added in the future. Even I think this lack of complexity and lack of tons of box types is what makes you go faster.

I think choosing the right tool for a job is a matter of personal preferences and personal needs, but I would recommend trying wireframe.cc and taking a look at the other apps I pointed out at the beginning of the post.

Feel free to share any other tool you find useful in the comments 😉

Trackback URL

  1. adrive
    03/06/2009 at 1:02 pm Permalink

    Great job! Your :reallyvisible selector should definitely be in the core!

  2. Jiri Melcak
    05/08/2009 at 12:16 pm Permalink

    Thanks very much. Help me a lot this evening.

  3. Aamir Afridi
    21/08/2009 at 7:27 am Permalink

    Awesome man… Very very helpful…

  4. Ian Holmes
    09/09/2009 at 1:01 am Permalink

    Thanks for the article – well explained and eay to follow. However, the syntax for your extension to the jQuery selector engine does not work – try this instead:

    jQuery.extend(jQuery.expr[“:”],{reallyvisible: function(a) { return (jQuery(a).is(‘:visible’) && jQuery(a).parents(‘:hidden’).length == 0) }});

  5. Revenue Robot
    11/12/2009 at 1:37 pm Permalink

    awesome thanks for posting this it was what i’ve been looking for…

  6. Drew
    17/07/2011 at 11:34 am Permalink

    @ Ian Holmes,

    Thanks for reposting the extension, I couldn’t get the original one to work either.
    I had to change the backticks to quotes around the :visible & the :hidden text…

    jQuery.extend(jQuery.expr[“:”],{reallyvisible: function(a) { return (jQuery(a).is(‘:visible’) && jQuery(a).parents(‘:hidden’).length == 0) }});

    Hopefully it isn’t the filters on the site causing the backticks.

  7. Virendra
    10/02/2012 at 3:28 am Permalink

    Your post is good but these attribute doesn’t work when visibility=hidden is used to hide the element. I faced this situation and after sometime got the solution as well. So thought of sharing with you.

    http://jquerybyexample.blogspot.in/2012/02/how-to-check-element-visible-or-hidden.html