I have a set of buttons on my master page (I have attached the code below) but no onclick event is being raised. I pulled the final page source and no onclick event was present.
I found the issue. Here was the problem. On the master Page I had to change this:
< script language="javascript" src="scriptLibrary.js" type="text/javascript"/>
To this:
< script language="javascript" src="scriptLibrary.js" type="text/javascript">< /script>
And after that it performed a normal postback without errors.