Possible Duplicate:
How to convert decimal to hex in JavaScript?
Is there an equivalent of python's int('hex-string', 16) function in Javascript?
Possible Duplicate:
How to convert decimal to hex in JavaScript?
Is there an equivalent of python's int('hex-string', 16) function in Javascript?
You can use parseInt():
var result = parseInt("0x42", 16); // 66