1
vote
Fixed page layout in IE6
Add the following code to the <head>
<!--[if lte IE 6]>
<style type="text/css">
html, body {
height: 100%;
overflow: auto;
}
.ie6fixed {
p …
0
votes
How should I handle autolinking in wiki page content?
My idea would be to query the titles like SELECT title FROM articles and simply check if each wikilink is in that array of strings. If it is you link to the page, if not, you link to t …
1
vote
How to submit a form when the return key is pressed?
I think you should actually have a submit button or a submit image... Do you have a specific reason for using a "submit div"? If you just want custom styles I recommend <input type="image" …
2
votes
Multiple submit buttons on a form
Hi, I hope this helps. I'm just doing the trick of floating the buttons on the right - like in normal wizard :-)
This way the Prev button is left of the Next button but the Nex …
