Skip to content

Tag: html

How to remove an HTML element using Javascript?

I am a total newbie. Can somebody tell me how to remove an HTML element using the original Javascript not jQuery. index.html myscripts.js What happens when I click the submit button, is that it will disappear for a very very short time and then appear back immediately. I want to completely remove the element …

Do tags only go in the tag?

Is it possible/good practice to use <link href””> to include stylesheets outside of the <head> tag, or do they only work / should they be only used in <head>? Answer It’s possible to do it. It’s not recommended to do it, because whatever content comes before the <l…

Detect when a user leaves a website

I am trying to create my own website access library (for fun) like Google Analytics where I can detect when a user accesses my website, what pages they view etc. Is there a way to determine when the user leaves a page &/or leaves the website for good? I have successfully coded (in python) the detecting wh…

How do I disable a href link in JavaScript?

I have a tag <a href=”#”> Previous </a> 1 2 3 4 <a href=”#”> Next </a> and in some conditions I want this tag to be completely disabled. Code from comments (this is how the link is generated) Answer Try this when you dont want user to redirect on click

Get multiple elements by Id

I have a page with anchor tags throughout the body like this: The ID is always the same but the name changes. I need to populate a list of the names of these anchor tags, for example; Name 1, Name 2, Name 3. This is where I’ve got to so far: This writes out the name of the first anchor