Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'm building a website that has a similar format with all of the pages is there a way to have a template so you don't have to retype the same code over and over again so that if I want to redesign the website I only have to redesign the main template instead of every page
Creating multiple HTML pages with the same layout is exactly the reason why frameworks such vuejs and react are so popular. if you are new in web dev I can recommend you vuejs. It's very easy to learn.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 days ago.
Improve this question
Hey! I'm just trying to create this custom graph, values come from the backend but to be honest I was looking for experts maybe in react or javascript of any library that could help me to develop this feature. I'm making a project with react.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am trying to find something that doesn't use JSX to build. Is there any alternative other framework that will accomplish this as fast as react does?
Just use vuejs. You make your html template and write you js code under the template.
Vuejs is also very comparable to react in speed.
Here is a link to vuejs.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am developing a web solution where certain users can create articles that are post on the main feed of the application.
I wonder if there any plugin that lets me have a post/article creation interface similar to this?
The main point is having these options for Bold, Italic, Text Size and alignment, etc...
Does anyone knows a plugin that allows me to insert this kind of box?
Many Thanks
TinyMCE or CKEditor will be a good solution. I prefer TinyMCE, It's a very rich editor based on js.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
To build a website I got a predesigned template from WrapBootstrap. After I added it to my project, I deleted some HTML unused parts. For visual effect (e.g. fade effect and others) the template uses a lot of Javascript files as dependencies. I'm sure some of them are actually unused.
There's a automated way to check if I'm still using some of them? I will keep them and remove the unused.
This for performance purposes.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Looking for something like Viewer.js but for loading a separate HTML document.
So I want something that has pagination concepts, and this doesn't have javascript in it, just CSS and HTML. It's not cross domain, it's fed back from a Web API.
Not sure why there's downvotes.
Why don't you use iframe?. It should do exactly what you need - load a separate HTML into your web page.
You cannot create something like Viewer.js because you can have problems with loaded JS and CSS, that is why iframe is a safety option (and probably the only one)