Hallo,
ich habe ein kleines Problem. Ich erstelle ein Analyse Script welches mir den Body Parsen soll, leider klappt das nicht so richtig.
Die Suche sieht so aus (für pref_replace)
Ich bekomme auch alles raus, außer inline Javascripte und den von Google (analytics). Fehlermeldungen bekomme ich leider keine.
Ein Beispiel für inline wäre:
und der Google Analytics Code sieht so aus
Vielleicht hat jemand einen Tipp für mich?
Danke !
ich habe ein kleines Problem. Ich erstelle ein Analyse Script welches mir den Body Parsen soll, leider klappt das nicht so richtig.
Die Suche sieht so aus (für pref_replace)
PHP-Code:
$suche = "%(<[ ]*\?.*\?[ ]*>)|(<[ ]*script[ ]*(.*)>.*<[ ]*/[ ]*script[ ]*>)%siU";
Ein Beispiel für inline wäre:
HTML-Code:
$(document).ready(function() {
HTML-Code:
<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-XXXXXX-X']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script>
Danke !
Kommentar