Hi I would like to use a fade in effect on this jquery and have it appear on touch devices on click.
$('#one').hover(function() {
$('#one_text').css('background-color', '#fdb913');
}, function() {
// on mouseout, reset the background colour
$('#one_text').css('background-color', '');
});