The one thing in reading and commenting on alot of blogs not just small blogs either,popular ones with custom themes have this problem too.
What is the one thing you will do when finished typing the comment? You click submit.
The problem lies in that instead of making it simple and allowing you to reach the submit button by pressing tab once and then enter, they make it to where you have to scroll down and click submit with your pointer.
You’re probally thinking this isnt that big of a deal but for those of us with laptops and average resolutions(1024×768) this really is a pain.
Maybe I’m over reacting, what do you think? Should the tab from typing the comment go directly to the submit button or instead to advertising like Shoemoney does or to the search bar like Ben of Bloggingexperiment does?
Update: I looked through the Brians Threaded Plugin code and the bug that caused this annoying little problem is that Brian simply forgot to give the submit button a tab index. Im surprised this has yet to be fixed within the plugin itself, its so easy.
So to solve this problem all you have to do is assign a tab index to the button.
Current:<input onclick=”onAddComment();” name=”addcommentbutton” type=”button” id=”addcommentbutton” value=”Add comment” />
Fix:<input onclick=”onAddComment();” name=”addcommentbutton” type=”button” id=”addcommentbutton” value=”Add comment” tabindex=”5″ />
Thats a great point and something I been meaning to fix for a long time… The issue is its a plugin called “brians threaded comments”. Its been on my list of items to fix for a long time.
Thanks for the link and feedback!
If you think that’s bad, what about the people who want to comment with mobile devices like blackberry, iphone, or cell phone? You can hedge your bets by adding WAP to the site or by posting the juciest details on a .mobi version of the site.
I use 1280×1024 resolution, so it doesn’t really matter to me, but I can see why you would be annoyed.
I tried the tab index bit but for whatever reason it didn’t work in my theme. I’ll keep workin on it though.
P.S. Lol the tab doesn’t work on this site either. It takes me to the search box.
It takes two tabs for me to get to the search box and I just posted a comment on your blog and the tabs fixed, so either you pressed tab twice or its your browser, not sure.
Yeah, must be a firefox issue. Either that or maybe a Mac issue? I’ll check into it.