Hi Friends,
In one of my APEX pages, I am using a Text field (P15_VALUE) where value is put based on user selection of a pop-up LOV.
If the value in the text field is >50,000 then the color of the text in the text field should be red and if it is less than 50,000 then it should be blue.
I am using a Dynamic Action to the Text field item (P15_VALUE) and in the true node I have added JavaScript code.
The JavaScript I am using is as shown below:
if($v(P15_VALUE) > 50000){
$('#P15_VALUE').css("color","red");
}else{
$('#P15_VALUE').css("color","blue");
}
The above is working fine for browsers like Chrome, Firefox, Microsoft Edge. But it is not working in Internet Explorer.
Can anyone please suggest how to make it work in Internet Explorer.
Thanks & Regards
Hawker