Bootstrap snippet and html example. Highlight textbox instead of error message using jquery validations

Bootstrap 3.3.6 snippet "Highlight textbox instead of error message using jquery validations" with HTML, CSS, and JS. Copy, paste, and customize this responsive UI component for your project.
Tags: form,validations

HTML code

Clean, semantic HTML that powers this Bootstrap 3.3.6 snippet. Copy and paste it into your page (with Bootstrap loaded) to reproduce the exact layout shown in the preview.

<div class="container">
    <div class="col-lg-8">
    						
							<form id="your_form_id" class="form-horizontal" action="" method="POST" name="your_form_id">

								<div class="form-group">
									<label class="col-lg-2 control-label" for="inputEmail1">First Name</label>
									<div class="col-lg-10">
										<input id="first_name" class="required form-control" name="first_name" type="text" placeholder="" /> 
									</div>
								</div>
								
								<div class="form-group">
									<label class="col-lg-2 control-label" for="inputEmail1">Last Name</label>
									<div class="col-lg-10">
										<input id="last_name" class="required form-control" name="last_name" type="text" placeholder="" /> 
									</div>
								</div>
								
								<div class="form-group">
									<label class="col-lg-2 control-label" for="inputEmail1">Email Address</label>
									<div class="col-lg-10">
										<input id="email_address" class="required form-control" name="email_address" type="text" placeholder="" /> 
									</div>
								</div>
								
								<button id="" class="btn btn-default" type="submit">Submit</button>
								
							</form>
							
							</div>
</div>

<script src="https://ajax.aspnetcdn.com/ajax/jquery.validate/1.15.0/jquery.validate.js"></script>

CSS code

Scoped CSS that styles the component. Paste it after Bootstrap 3.3.6 to keep the design, spacing, and responsiveness consistent.

body{margin-top:20px;}

 .has_error{ border: 1px solid red;}

Javascript/Jquery code

Lightweight JS to power any interactions this snippet needs. Drop it under your scripts (after Bootstrap 3.3.6) to mirror the live demo.


$(function(){
$("#your_form_id").validate({
    			
								errorPlacement: function(error, element) {
									
									// name attrib of the field
									var n = element.attr("name");
								
									if (n == "first_name")
										element.attr("placeholder", "Please enter your first name");
									else if (n == "last_name")
										element.attr("placeholder", "Please enter your last name");	
									else if (n == "email_address")
										element.attr("placeholder", "Please enter your email address");
										
								},
								rules: {
									first_name: {
										minlength: 2,
										required: true
									},
									last_name: {
										minlength: 2,
										required: true
									},
									email_address: {
										minlength: 6,
										required: true,
										email: true
									}
								},
								highlight: function(element) {
									
									// add a class "has_error" to the element 
									$(element).addClass('has_error');
								},
								unhighlight: function(element) {
									
									// remove the class "has_error" from the element 
									$(element).removeClass('has_error');
								},
								submitHandler: function(form) {
									
								   // submit form now. 
								}
							});
}) 

Similar snippets

Bootstrap example and template. Dark Login

Dark Login

Bootstrap example and template. Update user profile

Update user profile

Bootstrap example and template. bs4 beta login

bs4 beta login

Bootstrap example and template. Register form with particles js

Register form with particles js

Bootstrap example and template. modern Gmail inbox

modern Gmail inbox

Bootstrap example and template. Latest arrivals products

Latest arrivals products

Bootstrap example and template. products grid with hove icons

products grid with hove icons

Bootstrap example and template. Refresh Widget

Refresh Widget

FAQ

How do I use this snippet?

Include Bootstrap 3.3.6, paste the HTML, add the CSS block, and include the JS (if any) to mirror the live preview.

Can I use it in commercial projects?

Yes. It’s free for personal and commercial work; check the snippets license for details.

Is it responsive?

Yes. It inherits the responsive grid and components from Bootstrap 3.3.6.

Bootstrap example and template. Highlight textbox instead of error message using jquery validations

About this bootstrap example/template

Optimized for copy‑paste: clean HTML, scoped CSS, and minimal JS so you can ship production‑ready UI faster and keep designs consistent.

Mobile‑first and responsive by default. Tested across modern browsers to reduce polish time on your project.

Already trusted in 10.7K+ views. Reuse this snippet to speed up landing pages, dashboards, or onboarding flows.

Bootstrap 3.3.6

<link rel='stylesheet' href='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css'>

<script src='https://netdna.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js'></script>

This code example is based on bootstrap 3.3.6 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

Jquery plugins

Great built-in plugins with jquery framework, you can easy to change all declarations

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working