i can't see select on page components. Please update element select. Thanks for sharing
There is currently no default style for it but try clicking in it anyways. I will work on a default style tonight
Thanks your answer. How to create a select like that? My code:
<select name="" id="selector">
<option value="0" selected disabled>All</option>
<option value="1">abc</option>
<option value="2">def</option>
<option value="3">ghi</option>
<option value="4">jkl</option>
</select>
but it's not working and i don't see anything of select. Please help me one more time.
Have you imported jquery and materialize.js into your HTML? Are there any console errors?
When import materialize.js to head tag error, import to body no error
Make sure your HTML looks like this.
<html>
<head>
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
</head>
<body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>
Checked everything still not working
There doesn't seem to be any known issues with a simple select not working right now. Please create a new issue with a codepen (http://codepen.io/Dogfalo/pen/xbzPQV) example. Make sure you have initialised the javascript code indicated in http://materializecss.com/forms.html#select .
Select works with these files:
<script src="//code.jquery.com/jquery-2.1.2.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
The select didn't work for me with these files:
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
So, I copy-pasted my whole page to codepen and everything magically worked.
I found out that codepen used different versions of the JS-files that what I had included.
You can see it from the Pen Settings:

The problem seems to be with the latest version of jQuery.
Yes, so don't use jQuery 3.0.0 and 2.2.0.
with jquery 2.1.4 and this:
$(document).ready(function() {
$('select').material_select();
});
select work fine
@RealTekOne Thanks, it tooks me a long time to figure out why it was not working...
Hi try it
works with me
use materialize.css 1.0.0-beta
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('select');
var options = document.querySelectorAll('option');
var instances = M.FormSelect.init(elems, options);
});
Most helpful comment
Hi try it
works with me
use materialize.css 1.0.0-beta
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('select');
var options = document.querySelectorAll('option');
var instances = M.FormSelect.init(elems, options);
});