1
vote
Can I tell anything about a hyperlink that was clicked in JavaScript?
If you cannot change the onclick="determine()" in your HTML, but you can change the determine() function, then I think your best bet is to:
Leave the determine() function blank so it doesn' …
0
votes
Can I tell anything about a hyperlink that was clicked in JavaScript?
Another solution:
Add an onclick handler to the document. When a user clicks the link, the click event will "bubble" up to the window, and you will have access to the event to determine whi …
3
votes
How to prevent Javascript injection attacks within user-generated HTML
Whitelist for elements and attributes is the only acceptable choice in my opinion. Anything not on your whitelist should be stripped out or encoded (change <>&" to entities). Also b …
