[Proto-Scripty] Re: IE problem - document.getElementById

2010-01-19 Thread Sumit
and surprisingly, the same document.getElementById() works on individual li elements. for example if i do document.getElementById('issue_1'), it returns me an object with right childNodes.length I guess something screwed up with IE and i would've to do something else to avoid this ul issue On Ja

[Proto-Scripty] Re: IE problem - document.getElementById

2010-01-19 Thread T.J. Crowder
Hi, Do you have any page-global variables with the name "issues", any page- global functions called "issues", any elements with name="issues", any form *fields* with name="issues", etc.? IE has a very, very strange (buggy) concept of namespaces and conflates several of them inappropriately into

[Proto-Scripty] Re: Update of 2 divs at same time

2010-01-19 Thread nfuria
Thanks Collin I will try to modify my script to use this approach but the Ajax Updater is working and in some circunstances it is called 3 times with success. Furia On Jan 18, 2:48 pm, ColinFine wrote: > On Jan 14, 11:04 pm, nfuria wrote: > > > I have a page that shows a long table with the re

[Proto-Scripty] Re: Prototype and Galleria.js

2010-01-19 Thread Mike Santini
I figured it out. To get galleria.js to work with scriptaculous, you must alter the gallera.js file by changing adding a variable change noConflict to the top and then change all of the $ into that new variable. Then add a normal noConflict to the calling function that is on your page. On Jan 12,

[Proto-Scripty] problem getting fade/appear to apply correctly to elements

2010-01-19 Thread BB Design
Here is my page: http://www.eccrv.com/v2 Mousing over the buttons at the top (Independent Living, Personal Care, etc.) should cause the image under them to fade out, and a different image to appear. First example below, I'm showing the Javascript, the button with event trigger, then the DIV's wit

[Proto-Scripty] Re: script.aculo.us autocomplete: Restrict to list

2010-01-19 Thread shellster
Just do an onkeypress event. Check the value of the field, and if it doesn't match what you want, delete the last character and loop until the form field value returns results from your list of acceptable words. You will want to loop in case they somehow get multiple letters entered before your s

[Proto-Scripty] RSS Feed

2010-01-19 Thread Rick . Wellman
My apologies if there is a different forum to ask this, but when I originally signed up to this group I setup an RSS feed. I do not get regular RSS updates (actually I get none except the first) and was wondering if others are experiencing the same thing or if I need to investigate my client (the

[Proto-Scripty] Re: How to observe the event window.resize ?

2010-01-19 Thread joe t.
Try Event.observe(window, 'resize', ...); (similar to the 'dom:loaded' pseudo-event) However, per a jQuery discussion here: http://stackoverflow.com/questions/641857/javascript-window-resize-event and here: http://noteslog.com/post/how-to-fix-the-resize-event-in-ie/ it might not be so wise to obse