diff options
author | Julio Capote <jcapote@gmail.com> | 2018-11-06 20:26:21 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2018-11-06 20:26:21 +0000 |
commit | 3d98eee4f2da4fecff7ce41bfe66a6b40eb2fc43 (patch) | |
tree | 622a5392f5af3782c74184fdf867da55c96bf72a /content/post/2008-10-11-tabbing-through-fields-vertically.markdown | |
parent | d15dc6c9daaaff093b825b650a079b3ac02b362e (diff) | |
download | capotej.com-3d98eee4f2da4fecff7ce41bfe66a6b40eb2fc43.tar.gz |
fix post teasers
Diffstat (limited to 'content/post/2008-10-11-tabbing-through-fields-vertically.markdown')
-rw-r--r-- | content/post/2008-10-11-tabbing-through-fields-vertically.markdown | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/content/post/2008-10-11-tabbing-through-fields-vertically.markdown b/content/post/2008-10-11-tabbing-through-fields-vertically.markdown index 2ca859d..7b72484 100644 --- a/content/post/2008-10-11-tabbing-through-fields-vertically.markdown +++ b/content/post/2008-10-11-tabbing-through-fields-vertically.markdown @@ -11,6 +11,8 @@ tags: Sometimes it’s useful to switch the browser’s default tabbing behavior (left to right) to the opposite (top to bottom) when your input fields are in a grid layout instead the of the usual single column layout. Having to do this manually is a real pain, especially for large grids; So here is a solution in javascript, using mootools: +<!--more--> + ```javascript window.addEvent('domready', function(){ var trs = $$('#mytable tr') |