Hi All, I'm new to the forum.
my question is:
can all html be done in javascript?
the question has to do with parenting/siblings.
can all html be done in javascript?
-
- Posts:1
can all html be done in javascript?
Admin
Posts:805
Hi WestJA,
Welcome to this forum.
You can set and add in the page the html code with javascript, you can build all the html code with javascript; but that content will not appear in the source page, so, the search engines will not see it to can index it.
- You can give an example with what you want to make.
Welcome to this forum.
You can set and add in the page the html code with javascript, you can build all the html code with javascript; but that content will not appear in the source page, so, the search engines will not see it to can index it.
- You can give an example with what you want to make.
Similar Topics
- Hour and Minutes togheter in Javascript
JavaScript - jQuery - Ajax First post
Dear Coursesweb I can not find out how to add the hours + minutes togheter.Last post
<SCRIPT LANGUAGE= JavaScript >
day = new Date()
hr =...
See and use the following example:
<script>
var day = new Date();
let hr = day.getHours();
let mn = day.getMinutes();
let se =... - Display message to every minute in Javascript
JavaScript - jQuery - Ajax First post
Hello,Last post
On eatch minute from the current hour I wanna have an message
I can not find out how to complete
I hope to get something like this (code...
If you only want to display a message to every minute, just use the setInterval() function. It calls a function repeatedly, over and over again, at...