Hi I have a string like below:
>123456<
How can I easily replace the angle brackets and replace them with blank?
I have tried the below:
mystring.replace(/>/g, "");
mystring.replace(/</g, "");
However if I do an alert(mystring);
on this it is still showing with the angle brackets?