help can't hide an object
Hi,
I'm trying to hide an object if the dropdown did not select the first object, but it won't work
where did I do wrong?
This is my code:
- if $('select option:first)')
- .is('not(:selected)')
- {
- $('.attachment').hide();
- }
Thanks!