[Proto-Scripty] $$ utility method returns href value instead of anchor tag reference

2009-03-20 Thread tkane2000
How come the $$() function returns the value of the href when selecting an anchor tag instead of the tag itself? ...I've had mixed results for this btwn FF and IE6, but it's consistant in the code below. Anyone know what I'm doing wrong here or if there's a workaround? div id=gallery

[Proto-Scripty] Benefits of script.aculo.us OR prototype...

2009-03-20 Thread Ninza
Hi, I am new in AJAX world and want to use Ajax framework for my new project. I am developing web based application where I want to populate forms (Questioner) dynamically through Data base. For following things i need Ajax for: 1. On submitting page, either change questions on form OR change

[Proto-Scripty] Re: Ajax.Updater home-brew autocompletion timing issue

2009-03-20 Thread Szymon Wilkołazki
Matt Foster wrote: [...] To address the wrong order issue, you could create a queue of requests such that each request is asynchronous but stacked such that it will not be sent until the previous request has returned. I've written something for this for prototype 1.5 as Ajax.RequestQueue

[Proto-Scripty] Re: behave like Extjs Ajax.request

2009-03-20 Thread nige.ani...@googlemail.com
If you are just concerned with the weight of the ExtJs library, build a version of it which contains just the stuff you need... Seems like if all you need is Ajax, you can build a slimmed down version of ExtJs, and keep your pages the same. --~--~-~--~~~---~--~~

[Proto-Scripty] Shrinking JS

2009-03-20 Thread Jeztah
After a little playing ove the last couple of days i came up with a nice easy way of shrinking many js files on the fly into 1 file ... this will speed up load time heavily on heavy javascript loaded sites . the code is php and is very simple .. it also uses

[Proto-Scripty] Re: $$ utility method returns href value instead of anchor tag reference

2009-03-20 Thread Richard Quadling
Almost certainly you are seeing the results of a toString() method kicking in for the objects (or similar). Try ... alert(links[0]: + links[0].id + ':' + links[0].href); Richard Quadling. 2009/3/20 tkane2000 tkthomp...@gmail.com: How come the $$() function returns the value of the href when

[Proto-Scripty] Re: Shrinking JS

2009-03-20 Thread Richard Quadling
2009/3/20 Jeztah webmas...@thecarmarketplace.com: After a little playing ove the last couple of days i came up with a nice easy way of shrinking many js files on the fly into 1 file ... this will speed up load time heavily on heavy javascript loaded sites . the code is php and is very

[Proto-Scripty] Re: Shrinking JS

2009-03-20 Thread Richard Quadling
2009/3/20 Richard Quadling rquadl...@googlemail.com: 2009/3/20 Jeztah webmas...@thecarmarketplace.com: After a little playing ove the last couple of days i came up with a nice easy way of shrinking many js files on the fly into 1 file ... this will speed up load time heavily on heavy

[Proto-Scripty] how to darken a div

2009-03-20 Thread calitom
Hi, i want to darken a div, but i want to let a window which allow to see an undarken area on my div... Here is an example of what i exactly want to do, but i don't know how to do... http://www.defusion.org.uk/demos/060519/cropper.php?demoType=previewimage=castleformSubmit=Load+demo Thank you

[Proto-Scripty] Re: Shrinking JS

2009-03-20 Thread Alex Mcauley
Thanks but i wasnt looking to do it, i just had an idea !! Regards Alex - Original Message - From: Richard Quadling rquadl...@googlemail.com To: prototype-scriptaculous@googlegroups.com Sent: Friday, March 20, 2009 11:46 AM Subject: [Proto-Scripty] Re: Shrinking JS 2009/3/20 Richard

[Proto-Scripty] Re: Shrinking JS

2009-03-20 Thread Richard Quadling
2009/3/20 Alex Mcauley webmas...@thecarmarketplace.com: Thanks but i wasnt looking to do it, i just had an idea !! Regards Alex - Original Message - From: Richard Quadling rquadl...@googlemail.com To: prototype-scriptaculous@googlegroups.com Sent: Friday, March 20, 2009 11:46 AM

[Proto-Scripty] Re: Ajax.Updater home-brew autocompletion timing issue

2009-03-20 Thread Jonny Nott
as a bonus, in the case of my problem, I don't even need to tag requests with a uniqid or serial, as I know that I'm only interested in responses to requests where the search string was the same as the current form field value. On Mar 20, 9:26 am, Szymon Wilkołazki wilkola...@gmail.com wrote:

[Proto-Scripty] Re: Shrinking JS

2009-03-20 Thread Alex Mcauley
ahh !! .. mine has mod_defalte and zlib compression all on the server anyway so i didnt need to !! ... I did notice that his method doesnt minify the files ... Each to their own Alex - Original Message - From: Richard Quadling rquadl...@googlemail.com To:

[Proto-Scripty] Re: Shrinking JS

2009-03-20 Thread Richard Quadling
2009/3/20 Alex Mcauley webmas...@thecarmarketplace.com: ahh !! .. mine has mod_defalte and zlib compression all on the server anyway so i didnt need to !! ... I did notice that his method doesnt minify the files ... Each to their own Alex - Original Message - From: Richard

[Proto-Scripty] Re: Shrinking JS

2009-03-20 Thread Alex Mcauley
thats why i minify on the fly , then its just one change in a .htaccess file to change a path and i can have packed or unpacked scripts ! - Original Message - From: Richard Quadling rquadl...@googlemail.com To: prototype-scriptaculous@googlegroups.com Sent: Friday, March 20, 2009

[Proto-Scripty] Re: Shrinking JS

2009-03-20 Thread Szymon Wilkołazki
2009/3/20 Jeztah webmas...@thecarmarketplace.com: After a little playing ove the last couple of days i came up with a nice easy way of shrinking many js files on the fly into 1 file ... this will speed up load time heavily on heavy javascript loaded sites . the code is php and is very

[Proto-Scripty] #readAttribute('class') returns wrong results in IE8 - where is solution?

2009-03-20 Thread keemor
Hello, I have exactly this problem: http://prototype.lighthouseapp.com/projects/8886/tickets/364-ie8-doesnt-like-readattributeclass I the last comment, Andrew Dupont says: This was fixed a while back when I made all the changes necessary to get the DOM tests passing in IE8. I'm very glad, but

[Proto-Scripty] Re: $$ utility method returns href value instead of anchor tag reference

2009-03-20 Thread tkane2000
hmm, well, links[0] is returning a string, not the a object, so those will both return null. The question is why does this statement: $$('.gallery .thumb .listItem .thumbHolder'); return the value of href (a string) and not that a object? Thanks! On Mar 20, 6:38 am, Richard Quadling

[Proto-Scripty] Re: #readAttribute('class') returns wrong results in IE8 - where is solution?

2009-03-20 Thread kangax
On Mar 20, 12:09 pm, keemor kee...@gmail.com wrote: Hello, I have exactly this problem:http://prototype.lighthouseapp.com/projects/8886/tickets/364-ie8-does... I the last comment, Andrew Dupont says: This was fixed a while back when I made all the changes necessary to get the DOM tests