Hoii,
Hebben jullie het ook opgemerkt dat er achter de stukken code lege regels komen? Ligt dit aan m'n browser of PhpHulp?
Groetjes, Wessel
697 views
... lege regel
... lege regel
<?php
echo 'foobar';
?>
... lege regel
... lege regel
// ==UserScript==
// @name code blokken herstellen
// @namespace http://www.hoeboe.tk
// @description Verwijderd de ads op phphulp
// @include http://www.phphulp.nl/
// ==/UserScript==
(function () {
function doSomethingWithClasses() {
//Populate the array with all the page tags
var allPageTags=document.getElementsByTagName("*");
//Cycle through the tags using a for loop
for (i=0; i<allPageTags.length; i++)
{
//Pick out the tags with our class name
switch (allPageTags[i].className)
{
case("code_source") :
allPageTags[i].style.lineHeight = '14px';
break;
}
}
}
doSomethingWithClasses();
})();