I have the following button that I'd like to fadeOut the text. I don't want to fadeout the button, just the text within it. How would I do this? jQuery So far:\[code\]$('#name').click(function(){ //Fade out text });\[/code\]Markup:\[code\] <button id="name" type="submit" class="btn btn-large">Next >></button>\[/code\]