vote up 2 vote down star
2

Hi, I'm working on a web form where I wish to (after form submission) highlight those input fields that weren't entered correctly.

The highlight effect I wish to create is an endlessly looping animation between background-color: #fcc; and #fff; in the faulty input fields, using jQuery. When one of those fields gain focus, I wish to stop the animation of that field.

I'm fairly off-beat in jQuery and JS, so if anyone could point me in the right direction, I'd be sincerely grateful.

flag

50% accept rate

3 Answers

vote up 8 vote down check

Check out these two jQuery plugins:

Pulse: http://enhance.qd-creative.co.uk/demos/pulse/

Seek Attention: http://enhance.qd-creative.co.uk/demo/seekAttention/

I think Pulse is what you were asking for, but Seek Attention could be useful in some cases as well.

Here is a very rudimentary sample I created using the pulse plug in.

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
<script src="http://enhance.qd-creative.co.uk/demos/pulse/pulse.jquery.js" type="text/javascript"></script>

<script type="text/javascript">
    function doSomething() {
        if ($('.BadTextBox').val() == "") {
            $('.BadTextBox').pulse({ backgroundColors: ['#fcc', '#fff'] });
        }
        else {
            $('.BadTextBox').css({'background-color': '#fff'}).stop();
        }

    }
</script>

<input type="text" class="BadTextBox" onblur="doSomething();" />

When the user navigates away from the text box it starts pulsing if empty. If they go back and fill it out, it stops pulsing.

link|flag
I've been looking for something like seekAttention for ages now, never knew it existed. Thank you! – Crescent Fresh Feb 22 at 12:55
Thanks a bundle for your great answer, irobinson. Never heard of these plugins either. – CED-214 Feb 25 at 13:15
you're welcome! glad it helps. – Ian Robinson Feb 25 at 16:19
vote up 0 vote down

here's how i would do it (general steps):

  1. loop through inputs, add class "incorrect" to those fields
  2. while looping, toggle bg of "incorrect" classes, sleep for however long
  3. on click of input, remove it's "incorrect" class.

this may not work if in the while loop, nothing else is executable. post fixes in the comments.

link|flag
vote up 1 vote down

I did something similar

Firstly create the javascript function variable

var PulsePut = function (){

    if ($(this).val() == "") {
        $(this).pulse({ backgroundColors: ['#ffffee', '#fff'] });
    }
    else {
        $(this).css({'background-color': '#fff'}).stop();
    } }

Then add a class to the inputs

<input type="text" class="PulsePut" />

Finally, to initialise the function

$(document).ready(function(){

$('.PulsePut').blur(PulsePut); }

This will make any input you have with the class .PulsePut pulse if empty.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.