I have an iframe with a certian text:
mytext
<iframe src="theURL?mytext" ... />
How can I search for "mytext" and remove it?
I have an iframe with a certian text:
mytext
<iframe src="theURL?mytext" ... />
How can I search for "mytext" and remove it?
Use attribute contains selector
$('iframe[src*="mytext"]').attr('src', function(i, oldSrc) {
return oldSrc.replace('mytext', '');
});