JavaScript Focus Blinker für jQuery
Focus Blinker für jQuery
ist ein Plugin mit dem in Formfeldern die markierten Felder oder Button hervorgehoben werden.
Demo:
JavaScript - Focus Blinker für jQuery
in <head>
<script type='text/javascript' src='jquery-1.3.2.min.js'></script>
<script type='text/javascript' src='jquery.focusBlinker.js'></script>
<script type='text/javascript'>
//<![CDATA[
$( document ).ready( function(){
$('#base').focusBlinker();
});
//]]>
</script>
in <body>
<body id='base'>
<form>
<input id='text1' type='text' value='' />
<input type='password' value='' /><br><br>
<input type='button' value='button1' />
<textarea></textarea>
<button>button2</button>
</form>
Focus Blinker für jQuery Seite
