Version: (using KDE KDE 3.4.3) Installed from: Debian testing/unstable Packages Compiler: debian packaged for kde 3.4.3 OS: Linux An html script has an embedded checkedbox with a checked/ text, yet the displayed form in konqueror does not show a check as seen in other browsers. A snipet from the generated page/form: <TABLE> <TR> <FORM ACTION="gotopage.php" METHOD="POST"> <TABLE> <TR> <TD CLASS="labeltext" > <INPUT TYPE="CHECKBOX" NAME="example" CHECKED/> another label</TD> </TABLE> </form> </TABLE> Java is a loaded plugin.
Why there is slash in input closing tag? Without it your code works fine. Hmm, it works too if there white space between CHECKED and />. CHECKED/> won't work but CHECKED /> works.
You're writing in uppercase, so this is definitely NOT XML. Therefore, don't use ending slashes in tags.
*** This bug has been marked as a duplicate of 87221 ***