How do I add adsense code to this javascript code. I think there might be a solution with jquery and getscript, but I'm not able to get it to work
<script>
var rep = $("#topbar").find(".reputation-score").text().replace(/,|\s/g,'');
if (rep.match(/\d+k/i)) rep = rep.replace(/k/g, '') * 1000;
if (rep == "") rep = 0;
if (rep < 200 && $("#banner-bottom").length == 0) {
if ($(".answer").length == 0)
abovebanner = $("#answers-header");
else
abovebanner = $(".answer:first");
abovebanner.after('HELP ADD ADSENSE CODE HERE');
}
</script>
and guys I'm not very good with javascript, so if you guys could paste a working solution. I'd really appreciate it.