Jump to content

Jquery focus


themistral

Recommended Posts

Hi guys,

 

I am using jquery to add a class to an input box on a focus event.

 

$('input').focus(function() {
$(this).addClass("focus");   
});

 

It works but only if I tab to the input box - if I click in the box the code doesn't work.

I've tried changing the code to

 

$('input').click(function() {
$(this).addClass("focus");   
});

 

but that isn't working either.

 

Can anyone shed any light?

Link to comment
https://forums.phpfreaks.com/topic/252107-jquery-focus/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.