Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

57%
+2 −1
Q&A How to include HTML files in another HTML file with vanilla Javascript?

I develop an HTML-CSS-JavaScript-PHP contact form and I have a large HTML file which is very long and very wide (lots of horizontal scrolling due to nesting) and it's hard for me personally to work...

0 answers  ·  posted 2y ago by deleted user  ·  edited 2y ago by Alexei‭

#3: Post edited by user avatar Alexei‭ · 2021-08-27T06:45:12Z (over 2 years ago)
added relevant tag
#2: Post edited by user avatar Canina‭ · 2021-08-20T13:03:32Z (over 2 years ago)
that the question seeks Javascript solutions is quite relevant
  • How to include HTML files in another HTML file?
  • How to include HTML files in another HTML file with vanilla Javascript?
I develop an HTML-CSS-JavaScript-PHP contact form and I have a large HTML file which is very long and very wide (lots of horizontal scrolling due to nesting) and it's hard for me personally to work with.

I want to split the HTML file to different HTML files; all called/included/imported from one central HTML file (say, index.html) to ensure modularity and to ease long run maintenance.

[According to this MDN page](https://developer.mozilla.org/en-US/docs/Web/Web_Components/HTML_Imports), HTML imports are deprecated and no alternative was mentioned in that page. I also tried to Google search *HTML import JavaScript* but I didn't find something decisive or standard.

* I don't want to use `iframe`
* I don't want to use third party tools such as Gulp or Grunt
* `v$("#DivContent").load("yourFile.html");` might be neat but I don't use jQuery at all
* `<object data="filename.html"></object>` (what about it?)
* AJAX might be a good way but AJAX codes tend to be "messy"
* [This article has some nice insights](https://developer.mozilla.org/en-US/docs/Web/Web_Components/HTML_Imports); perhaps I should use PHP

How to include HTML files with vanilla JavaScript?
#1: Initial revision by (deleted user) · 2021-08-20T04:16:38Z (over 2 years ago)
How to include HTML files in another HTML file?
I develop an HTML-CSS-JavaScript-PHP contact form and I have a large HTML file which is very long and very wide (lots of horizontal scrolling due to nesting) and it's hard for me personally to work with.

I want to split the HTML file to different HTML files; all called/included/imported from one central HTML file (say, index.html) to ensure modularity and to ease long run maintenance.

[According to this MDN page](https://developer.mozilla.org/en-US/docs/Web/Web_Components/HTML_Imports), HTML imports are deprecated and no alternative was mentioned in that page. I also tried to Google search *HTML import JavaScript* but I didn't find something decisive or standard.

* I don't want to use `iframe`
* I don't want to use third party tools such as Gulp or Grunt
* `v$("#DivContent").load("yourFile.html");` might be neat but I don't use jQuery at all
* `<object data="filename.html"></object>` (what about it?)
* AJAX might be a good way but AJAX codes tend to be "messy"
* [This article has some nice insights](https://developer.mozilla.org/en-US/docs/Web/Web_Components/HTML_Imports); perhaps I should use PHP

How to include HTML files with vanilla JavaScript?