I want to encrypt password using md5 method in javascript. This is my code and I didn't get any answer. Please help me..
Code:
var p = document.getElementById('Password').value;
alert(p);// this part working
var temp = MD5(p);
alert(temp);//this is not working
Comment