Front End Development workshop

Slides:



Advertisements
Similar presentations
JavaScript and AJAX Jonathan Foss University of Warwick
Advertisements

An Introduction to D3.js By Robert Dillon.
Programming Club IIT Kanpur. Work environment Before you begin coding,always set up your work environment to your needs IDE Notepad++ Sublime Text 2.
The Document Object Model (DOM) 1 JavaScript is an object-based language—that is, it’s based on manipulating objects by changing each object’s properties.
CS428 Web Engineering Lecture 15 Introduction to Jquery.
INTRO TO MAKING A WEBSITE Mark Zhang.  HTML  CSS  Javascript  PHP  MySQL  …That’s a lot of stuff!
ITM352 Javascript and Dynamic Web Pages: Client Side Processing.
Philly.NET Hands-On jQuery + Plug-ins Bill Wolff, Rob Keiser.
Agenda What is AJAX? What is jQuery? Demonstration/Tutorial Resources Q&A.
Course review BTM 395: Internet Programming. What you have learnt in this course.
JQuery 10/21. Today jQuery Some cool tools around the web JavaScript Libraries Drawing libraries HTML Frameworks Conventions.
A really fairly simple guide to: mobile browser-based application development (part 4, JQuery & DOM) Chris Greenhalgh G54UBI / Chris Greenhalgh.
JQUERY | INTRODUCTION. jQuery  Open source JavaScript library  Simplifies the interactions between  HTML document, or the Document Object Model (DOM),
Jquery Nasrullah. Jquery jQuery is a JavaScript Library. jQuery greatly simplifies JavaScript programming. jQuery is easy to learn.
Animation & Effects Using JQuery. What is jQuery? jQuery is a lightweight, JavaScript library. The purpose of jQuery is to make it much easier to use.
Browser scripting jQuery Edited by: Trần Thị Mỹ Dung Ref:w3schools.com.
JavaScript Library. What is jQuery jQuery is a lightweight JavaScript library. The purpose is to make it easier to use JavaScript code on your website.
JQuery JavaScript is a powerful language but it is not always easy to work with. jQuery is a JavaScript library that helps with: – HTML document traversal.
TOPIC II Dynamic HTML Prepared by: Nimcan Cabd Cali.
HTML JAVASCRIPT. CONTENTS Javascript Example NOSCRIPT Tag Advantages Summary Exercise.
Intro to jQuery. What is jQuery? A JavaScript library Lightweight (about 31KB for the minified version) Simplifies HTML document traversing (DOM), event.
IS2802 Introduction to Multimedia Applications for Business Lecture 07: Introduction to jQuery Rob Gleasure
Unit 13 –JQuery Basics Instructor: Brent Presley.
Web Technologies Lecture 8 JQuery. “A fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax.
AJAX and REST. Slide 2 What is AJAX? It’s an acronym for Asynchronous JavaScript and XML Although requests need not be asynchronous It’s not really a.
Document Object Model Nasrullah. DOM When a page is loaded,browser creates a Document Object Model of the Page.
SHAREPOINT & JQUERY. Hi, my name and I am a product manager at lightning tools. I have been working with SharePoint for 5 years.
Formerly WISP Framework Joe Chrzanowski WAX FRAMEWORK.
Chapter 6 Murach's JavaScript and jQuery, C6© 2012, Mike Murach & Associates, Inc.Slide 1.
1 Using jQuery JavaScript & jQuery the missing manual (Second Edition)
HTML...CSS...JAVASCRIPT for Higher Computing Science.
SharePoint & jQuery. About me Phill Duffy – Product Manager at Lightning Tools Ltd – Author of ‘Pro SharePoint with jQuery’ – MCTS Application Developer.
Best Institutes offering Software Development courses.
Dive into web development
X3DOM : Integrating 3D content seamlessly into webpage
JQuery Fundamentals Introduction Tutorial Videos
What is jQuery?.
Javascript and Dynamic Web Pages: Client Side Processing
Programming Web Pages with JavaScript
12/04/12 JQuery I took these slides from the site because they were pretty good looking. Instructions for editing school and department titles: Select.
Tek Raj Chhetri Code for Humans not for machine.
Development of Internet Applications jQuery, TypeScript, LESS
Week 4: Introduction to Javascript
Human Computer Interaction
Front End Development workshop
Intro to jQuery jQuery is a popular, and extensible, JavaScript library Supports … DOM manipulation CSS manipulation HTML event methods Effects & animations.
Social Media And Global Computing Managing MVC With jQuery and AJAX
Lecture 11. Web Standards Continued
AJAX and REST.
Intro to JavaScript CS 1150 Spring 2017.
JQuery.
JQUERY Online TRAINING AT GOLOGICA
Asynchronous Java script And XML Technology
Top 5 Front End Development Tools. 1. Sublime Text Sublime Text may be a super quick and have packed text and development editor. If you're about to be.
The Cliff Notes Version
Revision.
jQuery The Easy JavaScript Nikolay Chochev Technical Trainer
JQuery with ASP.NET.
Secure Web Programming
JavaScript and the DOM MIS 2402 Jeremy Shafer Department of MIS
Javascript and JQuery SRM DSC.
ხელმძღვანელი: დიმიტრი ქარაული
Web Client Side Technologies Raneem Qaddoura
Murach's JavaScript and jQuery (3rd Ed.)
Murach's JavaScript and jQuery (3rd Ed.)
Lab 1: D3 Setup John Fallon
Murach's JavaScript and jQuery (3rd Ed.)
© 2017, Mike Murach & Associates, Inc.
JavaScript and the DOM MIS 2402 Maxwell Furman Department of MIS
Presentation transcript:

Front End Development workshop WEEK FOUR: BASIC JAVASCRIPT

Review Tentative timeline: HTML – basics CSS – basics CSS - intermediate Javascript (jQuery) Hosting (Heroku) - basics

Review Tentative timeline: HTML – basics CSS – basics CSS - intermediate Javascript (jQuery) Hosting (Heroku) - basics Custom fonts Backgrounds Media queries

This week Tentative timeline: HTML – basics CSS – basics CSS - intermediate Javascript (jQuery) Hosting (Heroku) - basics What is Javascript? What is jQuery? Animations Event handling

What is javascript? Javascript can: Change the HTML (Document Object Model) The DOM defines the logical structure of documents and the way a document is accessed and manipulated. JS can populate HTML with data (Angular, React, etc…) Access the internet in the background (AJAX)

What is javascript? Exercise: Using Javascript, let’s show one image at first, and the rest on click.

What is javascript? Notes: Load scripts at the end of HTML document.ready(); console.log();

What is jQuery? jQuery is a framework that makes writing javascript easier

What is jQuery? jQuery is a framework that makes writing javascript easier A collection of pre-built javascript functions

What is jQuery? jQuery is a framework that makes writing javascript easier A collection of pre-built javascript functions Reduces the amount of javascript needed to do common javascripty things

Next Week Tentative timeline: HTML – basics CSS – basics CSS - intermediate Javascript (jQuery) Hosting (Heroku) - basics

References Browsers Chrome Text editors (IDE’s) Sublime Text (https://www.sublimetext.com/download) Repositories Github (https://github.com/glenb0/frontendworkshop) Local environment python -m SimpleHTTPServer 8000