Needless to say, I am no coder! I dabble with it only when I have to.
I have images/text linked to buttons that fade in “onclick” from “original” images/text .
I’ve gotten this to work great with text or image but… I would like the images/text to fade out and return to “original” images/text after a time limit and or no mouse use.
Here’s the code I have so far:
$(document).ready(function(){
$('.image/text1).click(function() {
$('#original_image/text).fadeOut(300, function() {
var the_text = $('#image/text1).html();
$(this).html(the_text).fadeIn(300);
Thanks