[jQuery] How do I change the target value for all links with a target of _top

[jQuery] How do I change the target value for all links with a target of _top


I am embedding an external page (with permission) in an iframe on my
page. The problem is when the page has a link with a target value of
_top it navigates out of the frame.
An example link I could try to change is:
"<a target="_top" href="http://jobsearchlog.com">Job Search Log</a>"
I want to change the target attribute value to an empty value or even
better remove the target attribute from the link.
I have been successful at using $('a[@href^="http://"]') to identify
external links so I figured $('a[@target$="_top]') would work to
identify the links with that target but it doesn't seem to work.
Any help would be greatly appreciated.