0

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

Ghilas BELHADJ
  • 12,402
  • 10
  • 54
  • 88

1 Answers1

0

There is no native function to do this in jQuery

use a Plugin

Ghilas BELHADJ
  • 12,402
  • 10
  • 54
  • 88