hello I try to use jquery plugin for making input type range work for FF and IE.
So I use the following code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Dokument bez tytułu</title>
<script src="http://cdn.jquerytools.org/1.2.7/full/jquery.tools.min.js"></script>
<script>
$(":range").rangeinput();
</script></head>
<body>
<input type="range" min="0" max="100" step="5" />
</body>
</html>
but it does not work with FF and IE, it just display an input type text.
Does anyone have an idea?
Kind Regards.
SP
Maybe like