Graphic Effects in Javascript Validation

-2

What effect / validation library JS where validation is performed at each field fill and returns inconsistencies immediately and displays floating information like this used by google sign up.

Examples

    
asked by anonymous 04.01.2015 / 18:05

1 answer

4

For the validations highlighted in the green box I suggest you use JQuery validation (look at demos on link ) or bootstrap link

For the red marking tooltip I suggest two components, choose what you think is best:

  • Bootstrap (this is the best): link . Take a look at all the components and you'll see that there's a lot of good stuff you can use in your app. but see these to make the box effect in red link , link , link and link

  • JQuery UI link , it's not exactly the same but it works and comes with several components that you can use without having to stay putting a lot of separate libraries in your application.

Note: The bootstrap is very good but its css files can change the look of your site if it is already ready. Use only in new applications.

    
04.01.2015 / 18:58