Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This validation works, but the error message is shown next to the radiobutton moving the before the default label for the radiobutton. Is there a way of putting the error message align to the right instead?

Run the code to see what I mean.

Thanks for your assistance.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>Form Validation Demo</title>
      <script type="text/javascript" src="jquery.js"></script>
      <script type="text/javascript" src="jquery.validate.js"></script>

      <script type="text/javascript">

            $(document).ready(function() {
                $("#form1").validate({
                    rules: {

                        accept: "required",// simple rule, converted to {required:true}

                    },
                    messages: {

                         accept: "* Required",
                    }
                });
            });

        </script>

    <style type="text/css">
        label.error {  
            color: red;
         }
    </style>

    </head> 

    <body>
        <form id="form1" method="post" action="">
             <div>
            <input type="radio" name="accept" value="accept" /> Accept
             </div>
          <input class="submit" type="submit" value="Submit">

        </form>

     </BODY>
    </html>
share|improve this question

1 Answer

up vote 1 down vote accepted

You can try this:

label.error {  
    color: red;
    position:absolute;
    left:75px;
}

Working Example: http://jsfiddle.net/jasongennaro/Ja8jr/

share|improve this answer
Thanks for that. I knew I was missing something :) – Helen Neely Oct 9 '11 at 12:05
My pleasure @HelenNeely! – Jason Gennaro Oct 9 '11 at 12:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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