the following code properly work in IE but not in Firefox.
wat i need to do to make the following code work properly in firefox.
in IE lbl_status value shown and focus also set to txt_oldpass.
but in firefox nothing is happend.
function oldpassCheck()
{
var hfoldpass=document.getElementById('ctl00_cph_hf_oldpass').value;
var txtoldpass=document.getElementById('ctl00_cph_txt_oldPassword').value;
if(hfoldpass!=txtoldpass)
{ document.getElementById('ctl00_cph_lbl_status').innerText="INCORRECT OLD PASSWORD";
document.getElementById('ctl00_cph_txt_oldPassword').value='';
document.getElementById('ctl00_cph_txt_oldPassword').focus();
}
}
rcsprakash
Member
163 Points
191 Posts
inner text not set into the label, in firefox browser.
Mar 04, 2008 05:58 AM|LINK
hi,
the following code properly work in IE but not in Firefox.
wat i need to do to make the following code work properly in firefox.
in IE lbl_status value shown and focus also set to txt_oldpass.
but in firefox nothing is happend.
function oldpassCheck()
{
var hfoldpass=document.getElementById('ctl00_cph_hf_oldpass').value;
var txtoldpass=document.getElementById('ctl00_cph_txt_oldPassword').value;
if(hfoldpass!=txtoldpass)
{
document.getElementById('ctl00_cph_lbl_status').innerText="INCORRECT OLD PASSWORD";
document.getElementById('ctl00_cph_txt_oldPassword').value='';
document.getElementById('ctl00_cph_txt_oldPassword').focus();
}
}
Senior Software Engineer
iLink Multitech Solution Pvt. Ltd
Chennai,TN,India.
vik20000in
All-Star
25882 Points
3993 Posts
MVP
Re: inner text not set into the label, in firefox browser.
Mar 04, 2008 06:15 AM|LINK
use innerHTML instead of innerText. innerText does not work in firefox. innerHTML will work in both of them
www.vikramlakhotia.com
Please mark the answer if it helped you
rcsprakash
Member
163 Points
191 Posts
Re: inner text not set into the label, in firefox browser.
Mar 04, 2008 06:18 AM|LINK
thanks for the reply.
how can we set focus to the txtbox and its value =empty in firefox
Senior Software Engineer
iLink Multitech Solution Pvt. Ltd
Chennai,TN,India.