[jQuery] Re: Conflict between Simplemodal and jquery-ui slider?

2009-09-16 Thread Eric Martin
The problem is that you are including the basic.js file from my site, which is causing a conflict. Remove that script and use the following code: $(document).ready(function() { $('#basic-modal input.basic, #basic-modal a.basic').click(function (e) { e.preventDefault();

[jQuery] Re: Conflict between Simplemodal and jquery-ui slider?

2009-09-11 Thread folder123
The behavior i'm seeing is the onShow only seems to run once. On subsequent modal window opens the contents in onShow don't seem to execute. -k On Sep 11, 7:31 pm, folder123 wrote: > I'm still having issues with the code below, the slider now doesn't > even show up on a 2nd window open. > > Any

[jQuery] Re: Conflict between Simplemodal and jquery-ui slider?

2009-09-11 Thread folder123
I'm still having issues with the code below, the slider now doesn't even show up on a 2nd window open. Any thoughts greatly appreciated, I'm sure i'm missing something simple. -k On Sep 11, 2:52 pm, Eric Martin wrote: > Use the onShow callback in SimpleModal to call the slider init code: >

[jQuery] Re: Conflict between Simplemodal and jquery-ui slider?

2009-09-11 Thread folder123
Excellent, thanks for the reply and your hard work on SimpleModal, it's greatly appeciated. -k On Sep 11, 2:52 pm, Eric Martin wrote: > Use the onShow callback in SimpleModal to call the slider init code: > > $('#basic-modal-content').modal({onShow: function (dialog) { >     $("#slider-vertical

[jQuery] Re: Conflict between Simplemodal and jquery-ui slider?

2009-09-11 Thread Eric Martin
Use the onShow callback in SimpleModal to call the slider init code: $('#basic-modal-content').modal({onShow: function (dialog) { $("#slider-vertical", dialog.container[0]).slider({ orientation: "vertical", range: "min", min: 50, max: 300, value: 100,

[jQuery] Re: Conflict with Lightbox 2 & Smooth scroll

2009-09-02 Thread gilberto.ramosoton
Check out the css on both to see that there is not an id or class with the same name. On Sep 2, 1:35 pm, evansonuk wrote: > Hi, > > Having problems with conflicts between Lightbox 2 & smooth scroll. > > Does anyone know anything about this, or better yet anyone know a way > around this? > > I am

[jQuery] Re: Conflict between jquery and mootools

2009-08-19 Thread jqueryuser
I'm using the Joomla CMS, I am having difficulties to find a variable that reference the jquery

[jQuery] Re: Conflict between jquery and mootools

2009-08-19 Thread abrar alam
On Tue, Aug 18, 2009 at 7:32 PM, Mohd.Tareq wrote: > use noconflict function > > http://michaelshadle.com/2007/07/03/jquerys-no-conflict-mode-yet-another-reason-why-its-the-best/ > > On Tue, Aug 18, 2009 at 7:09 PM, jqueryuser wrote: > >> >> Is not working, put the setting in the file but does n

[jQuery] Re: Conflict between jquery and mootools

2009-08-18 Thread Mohd.Tareq
use noconflict function http://michaelshadle.com/2007/07/03/jquerys-no-conflict-mode-yet-another-reason-why-its-the-best/ On Tue, Aug 18, 2009 at 7:09 PM, jqueryuser wrote: > > Is not working, put the setting in the file but does not work on the > site, the jquery.js I have on my server, but wher

[jQuery] Re: Conflict between jquery and mootools

2009-08-18 Thread jqueryuser
Is not working, put the setting in the file but does not work on the site, the jquery.js I have on my server, but where can I download the prototype.js? Mootools.js may be the problem? because the version I have is not working and release more than one

[jQuery] Re: Conflict between jquery and mootools

2009-08-17 Thread Charlie
http://docs.jquery.com/Using_jQuery_with_Other_Libraries The examples show all jqueryuser wrote: I need help, I'm with conflict between mootools and jquery, I found something on the internet but seucesso. Can anybody tell me which file and which line change to end this conglito change? I

[jQuery] Re: Conflict with Mootools...

2009-01-20 Thread Steven Barbera
Nice job, its always a great relief after you've struggled with a problem to conquer it. Good luck with your JS. On Tue, Jan 20, 2009 at 2:37 PM, Erik R. Peterson wrote: > Guess what!! I got it to work!! Very nice > I feel like I parted the sea like moses > > thanks. > > Erik > > > >

[jQuery] Re: Conflict with Mootools...

2009-01-20 Thread Erik R. Peterson
Guess what!! I got it to work!! Very nice I feel like I parted the sea like moses thanks. Erik On Jan 20, 2009, at 2:01 PM, Steven Barbera wrote: Oooh, make sure you put the jQuery.noConflict() code at the top right after the lavalamp.min.js code. Also make sure you add the

[jQuery] Re: Conflict with Mootools...

2009-01-20 Thread Erik R. Peterson
Like this? var $j = jQuery.noConflict(); $(function() { $("#1, #2, #3").lavaLamp({ fx: "backout", speed: 700, click: function(event, menuItem) { return false; } });

[jQuery] Re: Conflict with Mootools...

Oooh, make sure you put the jQuery.noConflict() code at the top right after the lavalamp.min.js code. Also make sure you add the tags around it. Steve On Tue, Jan 20, 2009 at 1:58 PM, Erik R. Peterson wrote: > I eliminated some unnecessary scripts. > This is what i have now:

[jQuery] Re: Conflict with Mootools...

I eliminated some unnecessary scripts. This is what i have now: script>