Computer Hardware Video Tutorials – 67 Hours

Here is a collection of over 67 hours of premium video tutorials on Hardware by Pluralsight. In order to view the videos, you need to become a member of Pluralsight. By Kapooht – Own work, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=25789639 Background: Hardware is the collection of physical elements that make up a computer system. Computer hardware is the physical parts or components of a computer, such as the monitor,... [Read More...]

cancelable JavaScript (JS) Example: HTML DOM Objects – Other Event Attributes – cancelable JavaScript (JS) Example

cancelable JavaScript (JS) Example: HTML DOM Objects – Other Event Attributes – cancelable JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the cancelable Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.cancelable – returns whether default behavior for event is cancelable. Restrictions: None Notes: You can build... [Read More...]

shiftKey JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – shiftKey JavaScript (JS) Example

shiftKey JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – shiftKey JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the shiftKey Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.shiftKey=true|false|1|0 – returns whether the shift key was pressed. Restrictions: None Notes: You can build your... [Read More...]

screenY JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – screenY JavaScript (JS) Example

screenY JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – screenY JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the screenY Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.screenY – returns the vertical position on the clients screen for the mouse position. Restrictions: None Notes: You can... [Read More...]

screenX JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – screenX JavaScript (JS) Example

screenX JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – screenX JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the screenX Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.screenX – returns the horizontal position on the clients screen for the mouse position. Restrictions: None Notes: You... [Read More...]

relatedTarget JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – relatedTarget JavaScript (JS) Example

relatedTarget JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – relatedTarget JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the relatedTarget Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.relatedTarget – returns the element related to the element that triggered the event. Restrictions: None... [Read More...]

metaKey JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – metaKey JavaScript (JS) Example

metaKey JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – metaKey JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the metaKey Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.metaKey=true|false|1|0 – returns whether the meta key was pressed. The meta key is the ctrl key on a Mac. Restrictions:... [Read More...]

ctrlKey JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – ctrlKey JavaScript (JS) Example

ctrlKey JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – ctrlKey JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the ctrlKey Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.ctrlKey=true|false|1|0 – returns whether the ctrl key was pressed. Restrictions: None Notes: You can build your own... [Read More...]

button JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – button JavaScript (JS) Example

button JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – button JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the button Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.button=0|1|2 0 = left 1 = middle 2 = right internet explorer: 1 = left 4 = middle 2 = right Since 2 is always right, you can say... [Read More...]

altkey JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – altkey JavaScript (JS) Example

altkey JavaScript (JS) Example: HTML DOM Objects – Mouse/Keyboard Attributes – altkey JavaScript (JS) Example Purpose: – Illustrates the JavaScript syntax for the altkey Event Attribute. View Other Attributes and Handlers for DOM Events Prerequistes: Install Visual Web Developer 2008 Syntax: event.altKey=true|false|1|0 – Allows you to know when altkey is pressed. Restrictions: None Notes: You can build your own library... [Read More...]