Problem with duplicate call to JQuery from DMX Zone Components [Resolved]
Problem with duplicate call to JQuery from DMX Zone Components [Resolved]
Hi,
Updating a client's site, and I thought data table tool would be nice to add.
So far this looks like a nice ajax table, but I use dreamweaver and DMXzone extensions, which use jQuery too. I installed and it works fine here:
http://www.dynamicsights.com/cc3/medtest.php
BUT when placed in the page with all of the animations and what not, it does not work..
http://www.dynamicsights.com/cc3/medlist.php
I tried the following:
[code]
jQuery.noConflict();
$(document).ready(function() {
$('#medTable').dataTable();
} );
[/code]
as well as replacing the $('#medTable') with jQuery('#medTable'), but to no avail.
Suggestions?
Updating a client's site, and I thought data table tool would be nice to add.
So far this looks like a nice ajax table, but I use dreamweaver and DMXzone extensions, which use jQuery too. I installed and it works fine here:
http://www.dynamicsights.com/cc3/medtest.php
BUT when placed in the page with all of the animations and what not, it does not work..
http://www.dynamicsights.com/cc3/medlist.php
I tried the following:
[code]
jQuery.noConflict();
$(document).ready(function() {
$('#medTable').dataTable();
} );
[/code]
as well as replacing the $('#medTable') with jQuery('#medTable'), but to no avail.
Suggestions?
This discussion has been closed.
Replies
That worked.
Now working to resolve the Firefox layout issue :(