Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Input Jquery Focus On Page Load Then Do the following Re: Input Jquery Focus On Page Load Then Do the following

#103434
jamygolden
Member

Ok, then try something like:

$('.cf-se-input[autofocus]').trigger('focus').focus(function(){
$(this).parent().addClass('focussed');
}).blur(function(){
$(this).parent().removeClass('focussed');
});