I have a JQuery file that works fine on a normal webpage, but doesn't work inside of DNN.
DNN is pointing at the latest version of JQuery in the Host settings I have a container called news containing (news.css, news.ascx) and a module called newsdata.ascx inside of the container.
I have this code in the module to start launch the JQuery file:
<script type="text/javascript">
$(function() {
$("#controller").jFlow({
slides: "#slides",
width: "277px",
height: "150px",
duration: 250
});
});
</script>
But nothing happens. Am I placing the code in the correct locations?
Thanks