Redirect to Another Page within Object Page - HTML CSS -
i have 2 pages.
page1.html
<object width="100%" height="550px" data="url"></object>
page2.html
<html> <body> other content <object width="100%" height="550px" data="page1.html"></object> other content </body> </html>
on mobile devices, page1 redirects page3 . currently, when load page2, redirected page3 because having object / iframe redirecting page3.
i need redirect within page2 like
page2 should be
other content <object data="redirected page3 because of mobile device"></object> other content
redirection should not done on top level page. looking help. thanks.
Comments
Post a Comment