3
votes
3answers
1k views
Character offset in an Internet Explorer TextRange
As far as I can tell there's no simple way of retrieving a character offset from a TextRange object in Internet Explorer. The W3C Range object has a node, and the offset into the text within that n …
2
votes
1answer
74 views
Exposing a function from Java to Rhino
It's easy to make objects available to Rhino from Java using ScriptableObject.putProperty, but is there a way to expose a top-level function? That is, can I make it so scripts in Rhino …
0
votes
Testing onbeforeunload events from Selenium
You could write a user extension (or just some JavaScript in a storeEval etc) that tests that window.onbeforeunload is set, and then replaces it with null before continuing on from the page. Ugly, …
6
votes
if statement inside a variable
var myVar += (myVar2 != false ? "Link 2" : "");
Ternary conditional operator etc.
…
1
vote
