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

Popular posts from this blog

ios - RestKit 0.20 — CoreData: error: Failed to call designated initializer on NSManagedObject class (again) -

laravel - PDOException in Connector.php line 55: SQLSTATE[HY000] [1045] Access denied for user 'root'@'localhost' (using password: YES) -

java - Digest auth with Spring Security using javaconfig -