0

HTML5 Placeholder is not working in windows phones? Using HTML5 and Javascript a created a web appliacation which is working on all the devices, now getting problem that PlaceHolder is not working in Windows Phones,

Can anyone help me on this...

Thanks

Jagan C
  • 66
  • 12

2 Answers2

1

HTML5 Placeholder is not working in windows phones?

Correct. It isn't a supported feature (at least in Windows Phone 7).

Make sure that any essential information needed to fill out the field is stored in a <label>.

Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335
  • With the exception of inputs which have built in labels (such as submit buttons), all input (and select and textarea) elements should be accompanied by a label. See also [this](http://www.456bereastreet.com/archive/200711/use_the_label_element_to_make_your_html_forms_accessible/). – Quentin Jun 10 '13 at 11:42
0

You can try to do a workaround using javascript. like here: http://code.google.com/p/complete-placeholder/

Karl Adler
  • 15,780
  • 10
  • 70
  • 88