[Proto-Scripty] element.getInlineOpacity is not a function

2009-09-29 Thread infectedrhythms
I can't seem to figure this out! It was working previously. I don't think I have changed anything relevant. http://www.inbeatstore.com try clciking one of the Categories on the left hand side... Error: element.getInlineOpacity is not a function Source File: http://www.inbeatstore.com/js/effects.

[Proto-Scripty] scripty2 alpha 2 with WebKit CSS Transition support

2009-09-29 Thread madrobby
Hi all, I've pushed a new alpha version of scripty2 that contains support for WebKit CSS Transitions (browser-native visual effects). The best thing is that to use it, you don't have to do anything! If you use .morph(), your effects will now automatically use native visual effects. For more com

[Proto-Scripty] Re: element.getInlineOpacity is not a function

2009-09-29 Thread infectedrhythms
Ok I gigured out the issue but not sure how to fix it. I'm using Scriptaculous to do my Ajax calls and when I include JQuery to add JCarousel to my page, the error is thrown... Can Scriptaculous and JQuery coexist together? On Sep 29, 1:19 am, infectedrhythms wrote: > I can't seem to figure th

[Proto-Scripty] Re: element.getInlineOpacity is not a function

2009-09-29 Thread Alex McAuley
yes jQuery.noConflict(); for example $jq=jQuery.noConflict(); then every jquery call must use $jq() instead of the dollar $() example to set innerHTML of foo in prototypejs... $('foo').innerHTML='Bar'; ... In jQuery. $jq('#foo').innerHTML='Bar'; HTH Alex Mcauley http://www.thevacancymarke

[Proto-Scripty] Re: element.getInlineOpacity is not a function

2009-09-29 Thread infectedrhythms
So the first like inside the JCarousel js file should be... $jq=jQuery.noConflict();? And then every function call in JCarousel should be $jq? On Sep 29, 4:41 pm, "Alex McAuley" wrote: > yes > > jQuery.noConflict(); > > for example > > $jq=jQuery.noConflict(); > > then every jquery call mus

[Proto-Scripty] Re: element.getInlineOpacity is not a function

2009-09-29 Thread infectedrhythms
Not sure I get it but all I did was add $jq=jQuery.noConflict() As the first line inside the jcarousel js file and all is good! I guess cause it's wrapped or something? On Sep 29, 6:42 pm, infectedrhythms wrote: > So the first like inside the JCarousel js file should be... > > $jq=jQuery.noCo

[Proto-Scripty] Content slider with prototype/scriptaculous?

2009-09-29 Thread zion
I need to build a content slider like this: http://www.gimiti.com/kltan/demo/jFlow/ http://www.gimiti.com/kltan/wordpress/?p=46 The slides(divs) should fill the whole page and move horizontally. Is there some nice scripts to do this using prototype and scriptaculous? Thanks for all answers! --~-

[Proto-Scripty] Re: IE Add Observers in Reverse Order?

2009-09-29 Thread RobG
On Sep 29, 8:45 am, KammylandSoftware wrote: > When ever you add oberservers to the same event such as > > Event.oberve("myElement", "mousedown", "someMethod_1()"); > Event.oberve("myElement", "mousedown", "someMethod_2()"); > > does IE execute them in REVERSE order upon fire? > > They get exec

[Proto-Scripty] Re: weird behavior w/ prototype & firefox

2009-09-29 Thread RobG
On Sep 29, 2:54 am, mhgrove wrote: > I want to have the button call a function which first schedules a call > to show the busy spinner after say like 5 seconds.  This way if the > call to the server is fast, there's no blip on screen of the spinner > just before the page redirects.  The functio

[Proto-Scripty] Re: element.getInlineOpacity is not a function

2009-09-29 Thread Alex McAuley
Anywhere before jcarosel is called is fine.. personaly i do it just after jquery is included in my page Alex Mcauley http://www.thevacancymarket.com - Original Message - From: "infectedrhythms" To: "Prototype & script.aculo.us" Sent: Tuesday, September 29, 2009 11:49 PM Subject: [Proto