02 January 2010 ~ 1 Comment

Set focus on first field with Prototype

If you are using jQuery see this post. To set focus on first text field with Prototype I prefer something like this var firstField = $$(‘input:text:visible’).first(); if (firstField) firstField.focus(); but you can also try with Form.focusFirstElement or Form.findFirstElement

Continue Reading

16 September 2009 ~ 0 Comments

Stripe table rows with Prototype

I’ve spend a lot of time with Prototype last few days, and this is going to be my first post related to prototype. So let’s see how to stripe the table using prototype, I think you will be surprised how easy it is. HTML for our table will look like

Continue Reading