- Home
- Jquery Examples
- Focus And Blur Event
jQuery - Focus And Blur Event
विवरण :
कोई विवरण नहीं है |
सोर्स कोड :
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script> $(document).ready(function(){ $("input").focus(function(){ $(this).css("color", "#F00"); }); $("input").blur(function(){ $(this).css("background-color", "#FF0"); }); }); </script> </head> <body> Type any Text : <input type="text"> <input type="submit" value="Submit"> </body> </html>
आउटपुट :
Type any Text :