i try to show one element of a class with this jquery code:
jQuery('.slide_cover').get(0).toggle(800);
but i get this error:
Uncaught TypeError: undefined is not a function
and code lick this works fine:
jQuery('.slide_cover').toggle(800);
also if i try to get the element in console so it works
jQuery('.slide_cover').get(0)
Can you help me? Thank you!