Hey everyone! I am new to coding in javascript and I'm hoping for some help with stripping text. I have a string that is formatted like this:
<iframe src="http://embed.videokoo.com/61YVek?client_file_id=390856&width=720&height=480" style="width:720px;height:480px;border:0;margin:0;padding:0;"></iframe>
My goal is to remove everything except for the URL, so the final output should be:
http://embed.videokoo.com/61YVek?client_file_id=390856
Does anyone have suggestions on how I can achieve this?