JavaScript 2022

Term 3 Wednesday

May - July 2022

This site will be updated live during the sessions

Week 4 Example 4

JavaScript

JavaScript

Using getAttribute to get the url in the link below

Website
		
001window.onload = function(){
		
002	const link1 = document.getElementById("link1");
		
003	const linkURL = link1.getAttribute('href');
		
004	if(linkURL!=null)
		
005		console.log(linkURL);
		
006}