UPDATE: Got it to work.. had to include jQuery load statement in the injected head code.. even though I thought it was loading somewhere else in the templates.. ..
so now I have the jquery script I need injected on every page but the Injector module is showing on every page..
how can I hide the module but still allow it to work? thanks
---------------original post----------------------------
I installed Injector for DNN v5 on my site and put this code in the head
( as seen with debug on)
<scrpt-tag>
$(document).ready(function(){
$("div.menu_style").append("<span style="float: right; padding-right: 15px;"><img src="http://mysite.com/portals/2/images/signal-menu-logo.png"></span>");
});</scrpt-tag>
This is code that works ok on my DNN pages when I run it in jQuery with Firebug script console..
How can I get this to work with Injector in head tags of all pages?
Thanks much!