5
votes
Truncate a string nicely to fit within a given pixel width.
There are a couple of problems with your code.
Why "/ 5" ? The width of the characters depends on font-family and font-size.
You must escape "str" in the abbr title (or else …
3
votes
Turn off caching for JavaScript files on Firefox
Have you tried to use CTRL-F5 to update the page?
…
3
votes
In AJAX how to retrive variable from inside of onreadystatechange = function ()
The following code assumes that the ajax-request is synchronous:
function popup(){
ajaxFunction();
alert(MyVariable);
}
But since synchronous requests are …
2
votes
Is there a way in javascript to detect if the unload event is caused via a refresh, the back button, or closing the browser?
No, and if there was it would be browser dependent.
What kind of code are you trying to run when the user closes the page?
Is it to logout the user?
Then the user would not be logged out if the bro …
2
votes
Detect from browser if specific application is installed
If you want to detect with javascript inside the browser, you can probably use the collection "navigator.plugins". It works with Firefox, Opera and Chrome but unfortunately not with IE.
Up …
1
vote
Determine whether browser allows focus on radios/checkboxes
One approach is to try to set the focus and then detect if it was successful. Do this by assigning an onfocus event that set a variable to true, try to focus it and then check if the variable is tr …
1
vote
Change an element’s onfocus handler with Javascript?
It looks like you don't allow the fields to be empty, but what if the user puts a single or more spaces in the field? If you want to prevent this, you need to trim it. (See …
3
votes
Firefox Javascript Events Anonymous Function
IMHO closures should not be used in this case and there is no need to create a new function for each onlick (uses much more memory than necessary) and eval is the wrong answer.
You know tha …
0
votes
list of email addresses that can be used to test a javascript validation script.
The domain part (after the last @), is a series of string labels divided by a dot.
Each label is a string of 1 to 63 octets consisting of A-Z, a-z 0-9 or hyphen (-)
The maximum size …
1
vote
How to find slow-down in Javascript in IE6
Just a tip of what that "something" could be...
String concatenation in IE is (or at least was when I …
2
votes
Can anyone recommend a good, free javascript for punycode to Unicode conversion?
I took the time to create the punycode below. It it based on the C code in RFC 3492. To use it with domain names you have to remove/add "xn--" from/to the input/output to/from decode/encode.
…
1
vote
Problem with HTML Parser in IE
Like Sergey Kirienko said: use conditional comments. The code below will only be executed by internet explorer. Microsoft has good information on …
2
votes
Is there a best practice for generating html with javascript
If you absolutely have to concatenate strings, instead of the normal :
var s="";
for (var i=0; i < 200; ++i) {s += "testing"; }
use a temporary array:
…
0
votes
Can event handler defined within javascript object literal access itself?
The problem is that you need a link to your object. The children of an object don't know who their parents are, because they can be hosted by any parent or by no parent at all:
var …
4
votes
strpos is not defined in Chrome?
strpos is not part of the ECMAScript Language Specification ECMA-262 3rd edition (com …
