How to change the text color in NumericStepper

280 Views Asked by At

I seriously cannot find a way to simply change the text color of a NumericStepper. Is it event possible?

2

There are 2 best solutions below

2
Kuldeep Raj On

Please use 'setStyle' method for text color:

Please read this post : Link

0
Bhupendra Shukla On

Try this,

<input type="text" value="something" onclick="this.value='';this.style.color='red';" />