Display a single item Display multiple items on a page Give your items a class Your link to show the hidden items
Category: Manipulating HTML
Changing an image
If you need to stop the image beign changed by a later script you can add this:
Changing href of a link
Use this in the page footer (after the element to be changed)
Adding onclick functionality to an html element
Use this in the page footer (after the element to be changed) Change the html content and add an on click submit form to a span
Changing the contents of html elements
Element types? Can be anything, so <div id=”, <span id=”, <p id=”, etc N.B. You need to place the <script> after the HTML element, or call it within say window.onload = function() (the div or whatever tag you’ve used must be before the javascript on the page) In your html To manipulate text within a […]