Is it possible to modify/remove an <body onload="...">
event via GreaseMonkey?
The code in question is this:
<body onload="if (document.body.scrollIntoView && (window.location.href.indexOf('#') == -1 || window.location.href.indexOf('#post') > -1)) { fetch_object('currentPost').scrollIntoView(true); }">
I would like to completely prevent it from executing (it is an annoying vBulletin feature to scroll to the post even if no hash is present in the URL which apparently also triggers when using the "back" button).