2
votes
What is the easiest or fastest way to make CSS render the same in all browsers
I like developing against Firefox first, often using Yahoo's YUI for reset (and grids for basic structure of the page), and using IE conditional directives to override formats that IE, in all its&n …
3
votes
Implementing a resizable textarea?
At first I believed it was a built-in feature of the Wysiwym Markdown editor, but Shog9 is correct: it's not baked-in at all, but is courtesy of …
2
votes
Limiting HTML Input into Text Box
You didn't state what the forum was built with, but if it's PHP, check out:
http://htmlpurifier.org/
Library …
1
vote
Anyone know of a good algorithm for rendering an HTML table to an image?
If a commercial tool is an option, look at:
HtmlCapture ActiveX Control V2.0 (originally named HtmlSnap) …
0
votes
Show a PDF document in a browser without the menu bar
Good discussion on using IE7 in Kiosk mode:
http://samanathon.com/internet-explorer-7s-kiosk-mode/
…
3
votes
HTML color wheel control for website
SEE http://stackoverflow.com/questions/77431/whats-a-good-javascript-plugin-color-picker
…
2
votes
Could a website force the browser to go into fullscreen mode?
Open a new window in full screen mode on IE:
<script>
<!--
window.open("page.html","fs","fullscreen,scrollbars")
//-->
</script>
Putting in a "Cl …
1
vote
How to show a comparison of 2 html text blocks
Simple Diff, by Paul Butler, looks as though it's designed to do exactly what you need: …
