document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
Javascript how to add target="_parent" in document.location.href
document.location.href="http://verttgrettest.com/testpaper.aspx?VideoId=1"
Javascript how to add target="_parent" in document.location.href
You can't, the .href is literally just the URL you want to redirect to. You have to directly change the .href of the frame you want to target, not the href of the window/frame you're in e.g.
parent.document.location.href = 'http://...'
window.open(
'http://verttgrettest.com/testpaper.aspx?VideoId=1',
'_blank'
);
//but popup blocker may block it
window.open('http://verttgrettest.com/testpaper.aspx?VideoId=1')
window.open would be "_parent"