in reply to Re^2: CGI.pm and tabindex
in thread CGI.pm and tabindex
perl -MCGI=:form, -e 'print textfield()'
perl -MCGI=:form,:tabindex -e 'print textfield()'
On my system, the first one outputs <input type="text" name="" /> without the tabindex while the second one includes the tabindex attribute: <input type="text" name="" tabindex="1" />
This is just a quick check if the defaults are for some reason different in your CGI.pm or whether there is something more mysterious going on. If your results from running these are the same as mine, then there must be something in your program or the environment it's running in that is triggering the strange tabindex behavior.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: CGI.pm and tabindex
by ruzam (Curate) on Aug 31, 2006 at 06:05 UTC | |
by dirving (Friar) on Aug 31, 2006 at 17:54 UTC | |
by ruzam (Curate) on Sep 03, 2006 at 17:05 UTC |