Jump to content

Jorge

New Members
  • Posts

    2
  • Joined

  • Last visited

Jorge's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thanks Another question, is there a better way?
  2. Can I please get your opinion on this piece of js code. Which way is better or correct between the two version, I know both work but I am curious if of one of the 2 is better or both or if none. This one: document.getElementById("startEd").onclick = function startEdit () { //Make the element editable var element = document.getElementById("editableElement"); element.contentEditable = true; element.focus(); } Or this one: function startEdit () { //Make the element editable var element = document.getElementById("editableElement"); element.contentEditable = true; element.focus(); } //Runs the StartEdit function when button is clicked document.getElementById("startEd").onclick = function() { startEdit(); } This is the HTML just in case: DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Editable Content</title> <link rel="stylesheet" href="css/editableElement.css"> </head> <body> <main> <button id="startEd">Start Editing</button> <button id="stopEd">Finish Editing</button> <p id="editableElement"></p> </main> <script type="text/javascript" src="js/editableElement.js"></script> </body> </html>
×
×
  • Create New...