Search Results

0
votes

Is it possible to obtain a web-browser’s Java VM without using an applet?

This script seems to do the trick on all major browsers: http://www.pinlady.net/PluginDetect/JavaDetect.htm …
0
votes

IE TextRange select method not working properly

Maybe I misunderstand, but if I click to the right of that first line, my cursor already immediately appears at the start of the second line, so that's not a TextRange issue, right? Adding …
4
votes

JavaScript string newline character?

I've just tested a few browsers using this silly bit of JavaScript: <!doctype html> <script> function bar(){ baz = document.getElementById('foo').value; alert((b …
2
votes

SVG Parser in Javascript

After a good look around on Google, it looks like CanvaSVG was never much more than a project hacked togethe …
2
votes

Alternatives to using autocomplete in forms

autocomplete is valid HTML5 and is supported by all major …
2
votes

Can !important rules be used in IE’s CSS expressions?

The reason those CSS expressions don't work is because IE only evaluates the expression for the last property in the cascade. E.g. if you have an HTML document with a link inside it and the …
0
votes

unable to resize table beyond certain minimum width

What those lines of jQuery do is add style="width: 400px" to those table elements. And if you check the DOM, you'll see that they both succeed at doing that. However, you've al …
1
vote

CSS Menu hides behind flash only in IE (SWFObject)

Get rid of that position: relative in the universal selector rule (*) starting off your CSS. That's a really bad idea. Removing it fixes the problem. It d …
1
vote

Find Hover CSS Attribute

The animateToSelector jQuery plug-in seems to do what you want. I found that plug-in through …