Advertisement

09.05.2008 at 04:34AM PDT, ID: 23705793 | Points: 500
[x]
Attachment Details

function works in ie but not firefox

Asked by rmardis in JavaScript, Internet Explorer Web Browser, Firefox Web Browser

Tags: ,

I have a field on my form called OrderQuantity.  In IE when the value changes and the value is <=0 then an alert is fired, works greate in IE.  Nothing happens in firefox.  Can anyone tell me why?Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
var OrderQuantity = document.getElementById('value_Quantity');
OrderQuantity.onchange = OrderQuantity.onblur = function(){
if (parseFloat(OrderQuantity.value) <= 0){
OrderQuantity.focus();
alert('Your order quantity must be greater than zero');
return false;
}}
 
 
 
 
function CheckFinishedHeightValue(){
var ISTotalHeight = document.getElementById('value_DAHeightTotal');
if (ISTotalHeight.value == 0){
alert('Finished Size Height Total cannot be zero');
return false;
}
 
var ISTotalWidth = document.getElementById('value_DAWidthTotal');
if (ISTotalWidth.value == 0){
alert('Finished Size Width Total cannot be zero');
return false;
}
}
[+][-]09.05.2008 at 04:51AM PDT, ID: 22397602

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.05.2008 at 04:57AM PDT, ID: 22397653

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.05.2008 at 06:00AM PDT, ID: 22398304

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.05.2008 at 06:40AM PDT, ID: 22398765

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.12.2008 at 08:37AM PDT, ID: 22460854

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628