javascript $ variables in asp.net?

Protein

New member
I am using a javascript function that has variables ($) inside a ascx file.
the debugger displat "object doesnt support this property or method" I have tried using the jQuery.noConflict() method but this doesnt help


this is the code:
<script type="text/javascript">
var $j = jQuery.noConflict();
var disabled = true;
$j(window).bind("load", function() {
$j("div#mygaltop").slideView({ toolTip: true });
$j("div#mygalone").slideView();
$j("div#mygaltwo").slideView({
easeFunc: "easeInOutBounce",
easeTime: 2200
});
$j("code").chili();
});



it works fine in an html file. I want to use this script in dotnetnuke 5.0
and what does it mean when i get the above error?
 
Back
Top