i guess the headline is matching pretty good my question.
Usually when binding javascript-events i avoid binding those inline (with e.g. onclick). Anyway when I would do it I would just write onclick="someFunction();"
I just now read this answer https://stackoverflow.com/a/6307626/1402667 where onclick="javascript: someFunction();" is used. I only knew this to be a way to set the href of a link to an javascript function and I'm wondering if theres any use/difference in prepending "javascript:" inside of onclicks, onchanges, etc.
Can someone give me clearness whether it makes any difference?
Thanks in advance