My Greasemonkey script works exactly as I want it to by but it somehow blocks javascripts from the website itself. They just don't work anymore.
I use the very useful waitForKeyElements() to start some actions after a certain container has been loaded.
What is disturbing the other scripts?
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @grant none
// ==/UserScript==
var newText = 'changed';
// changes after loading .containerid
waitForKeyElements (
"#containerid", renameTop
);
function renameTop() {
var searchlinkTop = document.getElementById('containerid');
searchlinkTop.innerHTML = newText;
}
// some normal changes
function waitForKeyElements (
// ... the script's content