I have an input tag like this:
<input type='password' id='myinput' type='text' />
And I give the value by jquery like this:
var x = $('#myinput').val();
I want to give it in md5 decode. How can I convert te value to md5? Thanks
I have an input tag like this:
<input type='password' id='myinput' type='text' />
And I give the value by jquery like this:
var x = $('#myinput').val();
I want to give it in md5 decode. How can I convert te value to md5? Thanks