View Single Post
Old 10-05-2012, 12:49 PM   PM User | #5
AA Haider
New to the CF scene

 
Join Date: Oct 2012
Posts: 5
Thanks: 1
Thanked 0 Times in 0 Posts
AA Haider is an unknown quantity at this point
This is not my question
I say that here is a code which is work well in google chrome and firfox
new version but it can not work in IE or firfox old version.
This is a code.
Code:
<!doctype html>
<html>
<head>
<title>Example 0</title>
</head>

<body>

<p>
<form>
<label>What is your favorite color?
      <input type="text" list="colors" />
   <datalist id="colors">
      <option value="black">Black</option>
      <option value="blue">Blue</option>
      <option value="white">White</option>
      <option value="yellow">Yellow</option>
   </datalist>
</label>
</form>
</p>

</body>
</html>
Please solve this problem.
AA Haider is offline   Reply With Quote