Go Back   CodingForums.com > :: Client side development > JavaScript programming > JavaScript frameworks

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 02-25-2013, 08:38 AM   PM User | #1
ROYW1000
Regular Coder

 
Join Date: Jan 2010
Posts: 151
Thanks: 10
Thanked 1 Time in 1 Post
ROYW1000 is an unknown quantity at this point
Help with JQuery Conflicts

HI

I am using 2 scripts Thumbnail Viewer 2 and JMenu but as you can see from the following 2 examples they dont work together. I have tried moving the positions but without luck.

Any ideas?

http://www.testing-website.co.uk - Thumbnails working but menu does not.

http://www.testing-website.co.uk/index1.html - Menu working but thumbnails not.

Thanks in advance.

Roy

Last edited by ROYW1000; 02-25-2013 at 09:27 AM..
ROYW1000 is offline   Reply With Quote
Old 02-25-2013, 10:15 AM   PM User | #2
Celtboy
Regular Coder

 
Join Date: May 2002
Location: Virginia, USA
Posts: 620
Thanks: 0
Thanked 6 Times in 6 Posts
Celtboy is an unknown quantity at this point
the Thumbnail Viewer code is what's messing things up. You can just do this to your page to get stuff working again:

Code:
<script type="text/javascript">

(function($){ 
	$(function(){
		$("#jMenu").jMenu({
			openClick : false,
			ulWidth : 'auto',
			effects : {
				effectSpeedOpen : 150,
				effectSpeedClose : 150,
				effectTypeOpen : 'slide',
				effectTypeClose : 'hide',
				effectOpen : 'linear',
				effectClose : 'linear'
			},
			TimeBeforeOpening : 100,
			TimeBeforeClosing : 11,
			animatedText : false,
			paddingLeft: 1		});
	});
})(jQuery);
</script>
Celtboy is offline   Reply With Quote
Users who have thanked Celtboy for this post:
ROYW1000 (02-25-2013)
Old 02-25-2013, 10:21 AM   PM User | #3
ROYW1000
Regular Coder

 
Join Date: Jan 2010
Posts: 151
Thanks: 10
Thanked 1 Time in 1 Post
ROYW1000 is an unknown quantity at this point
Hi

Thanks worked a treat.

Roy
ROYW1000 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 08:48 PM.


Advertisement
Log in to turn off these ads.