Re: [Proto-Scripty] Show of hands

2014-01-03 Thread Dave Kibble
Happy New Year to you too. I'm not a power user but maintain a site with lots of widgets that are Prototype based, including wide use of TableKit and Ajax pop-up editors. I've been holding off investing too heavily in scriptaculous and Prototype because of the uncertainty but on the flip side have

Re: [Proto-Scripty] Ajax CORS error message

2013-01-16 Thread Dave Kibble
is the page served from http://test.heroku.com ? If not, it's a cross-site scripting security issue. -- 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-scriptaculous@googlegroups.com. To

Re: [Proto-Scripty] highlighting a tablerow

2013-01-01 Thread Dave Kibble
I think there's also something weird about CSS applied to table rows, (I think) cells don't inherit all properties from the row they 'belong' to. Make sure your HTML/CSS works in a stand-alone document first to check. Dave On 1 January 2013 22:53, Phil Petree phil.pet...@gmail.com wrote: I have

Re: [Proto-Scripty] Re: Hi, new to group. Having an issue with visible() method. any suggestions?

2012-10-15 Thread Dave Kibble
To answer your OP directly (not sure if it has been, I didn't notice it). open_div = 'system'+k+''; ... if ($(open_div).visible()==true) { if there is no item with id 'system'+k then $(open_div) returns null (correctly) and so $(open_div).visible() throws an error. (for example if

Re: [Proto-Scripty] stupid checkbox question

2012-04-27 Thread Dave Kibble
On 27 April 2012 09:12, Phil Petree phil.pet...@gmail.com wrote: Its 4a here, I'm gonna get some sleep. On 27 April 2012 10:04, Phil Petree phil.pet...@gmail.com wrote: Well, that didn't work... not enough sleep! input type='checkbox' id='1' not a legal ID - must start with a letter

[Proto-Scripty] new Element removes the name property from passed initialiser in IE7

2011-09-27 Thread Dave Kibble
Just spent more time than I should discovering a (possible) bug in prototype's new Element and could not find it in a web search so thought I'd log it here. I have an object that stores the type of a pop-up (simplified): this.attributes = {name: 'value', type: 'text'}; then uses the object to

Re: [Proto-Scripty] Firefox height:100% bug w/ prototype fix

2010-11-22 Thread Dave Kibble
I suggest that you insert a doctype and then run it through a validator until you get no errors or warning and then analyse what you are left with if you still have the problem. On 15 November 2010 19:26, Scott counterstre...@gmail.com wrote: So I've been working on a project the involves a

Re: [Proto-Scripty] Re: how to modify a part of an a href=...

2010-08-19 Thread Dave Kibble
examples;..) erwin On 18 août, 19:27, Dave Kibble davekib...@gmail.com wrote: you might find this regular expression useful: var myRegExp = /(^.*?)([^\/]*)\?(.*$)/; var match = myRegExp.exec(link.href.toString()); alert(match[1] + '\n' + match[2] + '\n' + match[3]); -- You

Re: [Proto-Scripty] how to modify a part of an a href=...

2010-08-18 Thread Dave Kibble
you might find this regular expression useful: var myRegExp = /(^.*?)([^\/]*)\?(.*$)/; var match = myRegExp.exec(link.href.toString()); alert(match[1] + '\n' + match[2] + '\n' + match[3]); -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us

[Proto-Scripty] Re: Simple Ajax form

2009-11-03 Thread Dave Kibble
What happens if you type your server/getIP.php into a browser address bar? Your PHP should emit a valid HTML file (i.e. include head and body tags), but I don't know if that would necessarily stop it working. --~--~-~--~~~---~--~~ You received this message