Hi,
I was wondering..being on Mac.
When I copy an url from the safari browser and paste it into and editable textfield and trace the value, I get:
<a href="https://krpano.com">https://krpano.com</a>
I also see it is underlined etc..
which is problematic as I just need the url .. not all the a href stuff.
When copied from Chrome it works just good, I get:
https://krpano.com/
Is there a way to strip the input of an editable textfield from all extra stuff/attributes before it is set as text value?
I'm looking for a setting or so.
Obviously i could strip it with indexof text .. but that would be my last, if at all, option.
I already use var.toString(); but the issue above is another one..
Tuur