Just downloaded the latest version and the Extended onfocus / onblur is no longer in the action.
I have seen a few posts relating to the form field text - seems a simple thing to have, but managed to get it working. Is there a simple explanation/example?
Enter
name: placeholder
value: anything you like really
Press OK
Press OK (again) to return to your Freeway page
Preview and your placeholder text should be displayed in the form input item
Make a decision if you care about the page not validating in less than HTML 5 pages
There is no step 10!
Regards,
Tim.
On 25 Oct 2012, at 13:06, BigG wrote:
I have seen a few posts relating to the form field text - seems a simple thing to have, but managed to get it working. Is there a simple explanation/example?
Yes. What I would do is employ a “polyfill” for the standard behavior. Basically, it’s a JavaScript “shim” that only fires when the correct standards way of doing it won’t work. That way it only annoys the IE 8 and lower users, rather than slowing everyone else down as well.
Let me see if I can dig something out, I’ve solved this problem about a hundred times.
Walter
On Oct 25, 2012, at 9:51 AM, BigG wrote:
So I would have to employ another method for IE 8 and under?
Apply the Protaculous Action to your page, choose Prototype-packed from the Library picker, and paste in that code. The only tiny wrinkle here is that the script will never let you enter the placeholder text as the actual entry value, so choose your placeholders wisely! (This will only be an issue if someone named First Last tries to submit your form with IE.)
Walter
On Oct 25, 2012, at 9:59 AM, Walter Lee Davis wrote:
Yes. What I would do is employ a “polyfill” for the standard behavior. Basically, it’s a JavaScript “shim” that only fires when the correct standards way of doing it won’t work. That way it only annoys the IE 8 and lower users, rather than slowing everyone else down as well.
Let me see if I can dig something out, I’ve solved this problem about a hundred times.
Walter
On Oct 25, 2012, at 9:51 AM, BigG wrote:
So I would have to employ another method for IE 8 and under?
You also have a zillion JavaScript errors on your page, mostly to do with cross-domain requests from Twitter or something like that. Develop / Show Error Console (in Safari) for the hideous news.
Walter
On Oct 25, 2012, at 11:31 AM, BigG wrote:
Have applied that to the page, but nothing has changed in IE8.