TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Guest User
Tech Writer
2.1k
472.7k
Texbox is not center focus when its validated shifts?
Mar 19 2020 9:24 AM
Hi Team
I need some improvement on my code, it validates the textbox for email, as soon it does it shift the texbox and allow that error be on the left. Could this be div class= input-group pull-left be the reason? See my logic and does not look right to a user it may lead to a bug.
<div
class
=
"row"
>
<label
for
"Email"
>Email:</label>
<label id=
"labelMessage"
class
=
"text-danger"
style=
"display:none"
>This field
is
required</label>
<div
class
=
"input-group col-md-4 col-md-offset-2 col-sm-2 col-xs-2"
>
<div
class
=
"input-group pull-right"
>
@Html.TextBoxFor(m => m.Email,
new
{
@
class
=
"form-control"
,
type =
"email"
,
id =
"inputEmail"
,
placeholder =
"Email address"
,
autofocus =
"autofocus"
})
<div
class
=
"input-group-append"
>
<div
class
=
"input-group-text"
>
</div>
</div>
</div>
</div>
</div>
t;script type=
'text/javascript'
>
$(function () {
//When the blur event occurs from your Textbox (you lose focus)
$(
'#inputEmail'
).blur(function () {
var email = document.getElementById(
"inputEmail"
).value;
var expr = /^([\w-\.]+)@@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
if
(!expr.test(email)) {
document.getElementById(
"labelMessage"
).style.display =
"inline"
;
}
else
{
document.getElementById(
"labelMessage"
).style.display =
"none"
;
}
});
});
t;/script>
Reply
Answers (
2
)
Dynamically add Tooltip for hover mouse (show the HTML tag)
Replace Dom and Canvas Dynamically?