[Proto-Scripty] Re: prototype.js with jquery-1.3.2.min.js is not working.

2010-01-06 Thread lvdesign
hi, the prototype's library is pretentieuse so the others must do the work bibliotheque conflit de library //---jQuery bien definir l'espace de jQuery: jQuery(function($) { //la function }); jQuery.noConflict(); jQuery(document).ready(function ($) {

[Proto-Scripty] How to highlight the current slide's number

2010-01-06 Thread MH
I would like to ask a question in relation to Takashi's old MudCorp Image Gallery. I have implemented his gallery but would like to ask how I can further add functionality to it. www.mudcorporation.com/code/js/MudFadeGallery-2.2.1/ If you check the above page for the online gallery, you can

Re: [Proto-Scripty] Finding the first form item of any type within a div

2010-01-06 Thread Alex McAuley
$('mydiv').select('input','select')[0]; Alex Mcauley http://www.thevacancymarket.com - Original Message - From: Tony Andrews tony.andrew...@googlemail.com To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com Sent: Tuesday, January 05, 2010 3:17 PM Subject:

[Proto-Scripty] Re: prototype.js with jquery-1.3.2.min.js is not working.

2010-01-06 Thread Mence
thank for your reply -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email to prototype-scriptacul...@googlegroups.com. To unsubscribe from this group, send email to

Re: [Proto-Scripty] Re: prototype.js with jquery-1.3.2.min.js is not working.

2010-01-06 Thread Alex McAuley
You can also assign jquery to a different variable $j=jQuery.noConflict(); then you can use $j(#some-id).somejQueryFunction().css().html().next().chain and $ becomes unpolluted Alex Mcauley http://www.thevacancymarket.com - Original Message - From: Mence

[Proto-Scripty] Re: How to highlight the current slide's number

2010-01-06 Thread MH
I found the onmouseclick actions and they appear as: function setOnMouseClick() { var elements = document.getElementsByTagName(a); for (var i = 0; i elements.length; i++) { switch(elements[i].className) { case next:

Re: [Proto-Scripty] Assistance with clicks

2010-01-06 Thread Walter Lee Davis
I just did something very similar (also a calendar) and what I came up with was this: I had a single overlay DIV hidden at the top of the page, and after a click on an empty cell, I would load the overlay with the Create Appointment screen, use Element.clonePosition() to set the top and

Re: [Proto-Scripty] Re: How to highlight the current slide's number

2010-01-06 Thread Alex McAuley
If you have the element as an object then you can easily traverse anything surrounding it right up to document level... i'll take a look at the code in a while and see if i can come up with anything Alex Mcauley http://www.thevacancymarket.com - Original Message - From: MH

[Proto-Scripty] Prototype.js Closure Compiler

2010-01-06 Thread Ron Derksen
Hi list, I was wondering if anyone has any best practices with regards to Google's Closure Compiler and Prototype.js. What are the best settings and how do you prevent the Compiler from breaking your code while optimizing the file size? Thanks, Ron -- You received this message because you are