javascript - How to include a division from another webpage and put it in a division? -


how can include div webpage , display on webpage? can use iframe? help!

if using .php in pages can use include example

you have header div let's name header.php

<header>   <div>    //....   </div> </header> 

you can include on other pages example in index.php

<?php include 'header.php'; ?> 

hope help.


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -