Tagged Questions

0
votes
1answer
29 views

IE error with parseInt dropdown value (jquery val())

I have an dropdown with the following in it: <select id="shipping" name="shipping_option"> <option SELECTED value="60">R60</option> <option value="90">R90</option> …
1
vote
6answers
440 views

Is there an equivalent to JavaScript parseInt in C#?

I was wondering if anyone had put together something or had seen something equivalent to the JavaScript parseInt for C#. Specifically, i'm looking to take a string like: 123abc4567890 and return …
0
votes
4answers
657 views

Is J2ME’s Integer.parseInt() broken?

While writing a game for J2ME we ran into an issue using java.lang.Integer.parseInt() We have several constant values defined as hex values, for example: CHARACTER_RED = 0xFFAAA005; During the …