[Proto-Scripty] Fade effect to 80% fades 100% black first

2011-04-03 Thread kstubs
Can someone tell me why this fades 100% black first then snaps back to 80% fade? Click on any link at bottom of the page: http://beta.meetscoresonline.com/ -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, s

[Proto-Scripty] Re: Parse html

2011-04-03 Thread kstubs
I now have a simple Ajax.Request that fetches json. I thought a little nifty trick is to add mime type .json and serve back application/json. Nice! So now, if I just want static content for my rich client pages I can drop a little json on the server like this: http://beta.meetscoresonline.c

[Proto-Scripty] strange element.select issue

2011-04-03 Thread Joschi Cassel
Hi all, Having an odd element.select issue. I am using .select("input") on a table row. If the ID of the row starts with a number ("01CA5BE1- BA6C-45AB-B46B-C3F25ACF003A" is id value), .select(input) returns error below. [Exception... "An invalid or illegal string was specified" code: "12" nsr

[Proto-Scripty] Re: strange element.select issue

2011-04-03 Thread T.J. Crowder
Hi, Don't start `id` values with digits, it's not valid in CSS[1] (and therefore not in CSS selectors, such as those used by `select` or `$ $`). This is true of HTML4 as well[2], but HTML5 opens this up[3] such that an ID can be just about anything that doesn't have a space in it. [1] http://www

Re: [Proto-Scripty] strange element.select issue

2011-04-03 Thread Jonathan Rosenberg
Technically, an I'd cannot start with a digit. Maybe this is the problem? On Apr 2, 2011 4:53 PM, "Joschi Cassel" wrote: > Hi all, > Having an odd element.select issue. I am using .select("input") on > a table row. If the ID of the row starts with a number ("01CA5BE1- > BA6C-45AB-B46B-C3F25ACF00

Re: [Proto-Scripty] Accordian Menu using prototype.js

2011-04-03 Thread Phil Petree
Walter, Thanks for your feedback. Unfortunately, a good menuing system requires a lot more than just taking an existing accordian system and messing around with the CSS. You need the ability to easily disable/gray the entire menu struture and/or its individual elements along with many other func

[Proto-Scripty] Re: strange element.select issue

2011-04-03 Thread Joschi Cassel
I do recall that now. Thank you. It just fits so perfectly to use the ID of the sql table row as the ID of the matching HTML table row :) What is your preferred method when populating a table with results from a query? Thank you, Joschi On Apr 3, 9:20 am, "T.J. Crowder" wrote: > Hi, > > Don't

[Proto-Scripty] Re: strange element.select issue

2011-04-03 Thread Joschi Cassel
Must be because it works well otherwise. Thank you for responding. On Apr 3, 9:28 am, Jonathan Rosenberg wrote: > Technically, an I'd cannot start with a digit.  Maybe this is the problem? >  On Apr 2, 2011 4:53 PM, "Joschi Cassel" wrote: > > > Hi all, > > Having an odd element.select issue. I

Re: [Proto-Scripty] Re: strange element.select issue

2011-04-03 Thread Walter Lee Davis
I prepend something known and meaningless, like row_ to the numerical ID. Then I strip that off with slice or split('_').last() when I need to use it later. Frameworks like Scriptaculous Sortable do that for you as well, when you serialize a sortable table, you are required to have the IDs

[Proto-Scripty] Re: Accordian Menu using prototype.js

2011-04-03 Thread disccomp
Google "openrico" On Apr 1, 10:35 pm, Phil Petree wrote: > Can ANYONE tell me where to find a functionong Accordian _MENU_??? > > I have Accordian V2.0 but I dont see any way to implement that as a > functioning menu, just an accordian effect on a page. > > I also found the code by Brian Crescima

[Proto-Scripty] Re: Parse html

2011-04-03 Thread Alphonso77
Hi kstubs. This is something I'm experimenting with as well. I think that it requires the creation of a document fragment and then adding that fragment to the DOM of the existing page. It seems that XML is automatically parsed to the DOM but HTML has to be parsed manually with a custom function.