I have been trying to make a toggle for alot of things in jquery now, i am still fairly new to jquery. I have tried toggleing a class, copying off of other scripts. And also the normal toggle function.
$(function(){
$('div').toggle(function(){
$(this).text('odd clicks');
}, function(){
$(this).text('even clicks');
});
});
https://www.jsfiddle.net/bVr2r/84
Here is an example. Can someone explain to me why my selected content gets a fade out?
also here is a an example of my idea with a class swap:
http://www.jsfiddle.net/bVr2r/85
i know it is not perfect, was made in a rush, but point still stands. Anyone knows why 1 of those don't work? or have another idea that would make it work? i have tried alot of different threads and i just cant seem to get a toggle effect.
last example. i tried to make a next button, simply by changing the class when i click. Firebug shows that the class gets changed, but it seems like jquery doesn't realize that the new class is existant. Its the same problem but different example
