4
votes
HTML: What’s the effect of adding ‘return false’ to an onclick event ?
I believe it causes the standard event to not happen.
In your example the browser will not attempt to go to #.
…
1
vote
middle click (new tabs) and javascript links
It would require some testing, but I believe that most browsers do not execute the click handler when you click them, meaning that only the link is utilized.
Not however that your handler f …
1
vote
Many people don’t know how to multi-select items in a HTML <select> control, so…?
You could just use a manual list of items (Say as simple links), that have Javascript onclick behavior that deselects/selects manually. Basically by changing the css class between two values, and c …
