Category: Javascript

  • HTML, CSS, JavaScript Explained // fast 4 minute summary (with LEGO)

    Before you start any web development tutorials for beginners, FIRST understand what languages are used for building websites: HTML, CSS, JavaScript. Learn why you can’t exist online without these programming languages! Consider this your code and coding concept 101. JOIN The GLITCH Email List: https://glitch.technology/subscribe SAY HELLO Tweets by DanielleThe https://medium.com/@daniellethe Original source

  • JavaScript tutorial: Adding touch events | lynda.com

    Touch events allow users to interact with mobile devices via touch gestures such as finger swipes and taps. In this tutorial, learn how to implement JavaScript touch events. Watch more at http://www.lynda.com/JavaScript-tutorials/JavaScript-Events/140780-2.html?utm_campaign=_3b1rvuFCJY&utm_medium=viral&utm_source=youtube. This tutorial is a single movie from the JavaScript: Events course presented by lynda.com author Ray Villalobos. The complete course is 2 hours…

  • Creating a blockchain with Javascript (Blockchain, part 1)

    Learn how to write your own Blockchain with JavaScript. In this video I’ll show you what is behind a blockchain by using simple code. It’s not a complete implementation, but enough to understand how blockchains work and how they guarantee that blocks can never be changed. After creating our blockchain we’ll try and tamper with…

  • JavaScript Tutorial For Beginners #38 – Removing Elements from the DOM

    Hey guys, in the last JS tutorial I showed you how to insert new HTML elements into the DOM. In this lesson, I’ll show you how to remove elements from the DOM! We can remove elements from the DOM in JavaScript via the removeChild() method. If you have any questions, fire away 🙂 SUBSCRIBE TO…

  • JavaScript Speech Recognition #JavaScript30 20/30

    Today we learn how to use the built in Speech Recognition in the browser. Grab all the exercises and starter files over at https://JavaScript30.com Original source

  • JavaScript Modules ES6 ES2015 Tutorial

    Understanding ES6 Modules in JavaScript with Import, Export named and Export Default Syntax. Article and code samples from this tutorial * techsith.com Please be my patreons on patreaon * https://www.patreon.com/techsith Follow me for technology updates * https://facebook.com/techsith * https://twitter.com/techsith1 Help me translate this video. * http://www.youtube.com/timedtext_video?ref=share&v=HqIkddLfCAk Original source

  • Curso Completo de HTML5, CSS3 y JavaScript Parte I

    INSCRÍBETE AL CURSO PARA DESCARGAR MATERAL: https://itec.school/course/curso-de-html5-css3-y-js Tema: Introducción a HTML5 TE SUPER RECOMIENDO ESTE HOST: http://bit.ly/1xnobwo En este curso aprenderemos desde CERO, las tecnologías que hacen la web posible, considerando la estructura, diseño y funcionalidad. En esta lista de reproducción, veremos paso por paso, todas as herramientas que necesitas para convertirte en un programador…

  • JavaScript Tutorial for Beginners – 52 – Windows object

    In this video we will discuss the windows object and page redirects. Old index HTML code: http://pastebin.com/NNMpUFBf Javascript code: http://pastebin.com/vbHp6G87 New index: http://pastebin.com/jG6HbZWi CSS: http://pastebin.com/shLMbvCL Original source

  • Scraping JavaScript pages with Scrapy and Splash

    This video is part of the “Learn Scrapy” series. In this video, you’ll learn how to use Splash to render JavaScript based pages for your Scrapy spiders. Have a look at the companion website: https://learn.scrapinghub.com/scrapy/ – Splash docs: https://splash.readthedocs.io/en/stable/ – Scrapy-Splash plugin: https://github.com/scrapy-plugins/scrapy-splash Settings for ScrapySplash: SPLASH_URL = ‘http://localhost:8050’ DOWNLOADER_MIDDLEWARES = { ‘scrapy_splash.SplashCookiesMiddleware’: 723, ‘scrapy_splash.SplashMiddleware’:…

  • Javascript Selectors – Javascript Tutorial for Beginners With Examples

    In this Javascript tutorial for beginners, we’re going to be using Javascript selectors to access the DOM (document object model) and interact with our webpage in realtime. Selectors allow us to search for elements in the web page, get those html elements, and do things with them. Selector methods are: document.getElementsByTagName(‘div’) document.getElementsByClassName(‘done’) document.getElementById(‘my-id’) document.querySelector(‘#my-id’) document.querySelectorAll(‘.classname’)…