Working with DOM Alex Gklinos M.Sc

Total Page:16

File Type:pdf, Size:1020Kb

Working with DOM Alex Gklinos M.Sc Document Object Model - Working with DOM Alex Gklinos M.Sc. in E-Commerce Teach yourself Working with DOM W3C- DOM The Document Object Model The structure of DOM Management of an HTML document with DOM nodes Relationships and management of document nodes Creating a new node Replacing a node with a new node Deleting an existing node DOM nodes management script of an HTML document by Alex Gklinos M.Sc. in E-Commerce in 6 hours Client Side Web Technologies The most cost-effective valuable e-books at w3opensource.com Copyright © w3opensource.com. All rights reserved. Document Object Model - Working with DOM Alex Gklinos M.Sc. in E-Commerce Document Object Model Working with DOM Learning Document Object Model Working with DOM you will be able to create structure web documents which will cover the browsers versions 6 and later for full compatibility with the W3C-DOM model. From the 6th version and later all main browsers of the market that are based on the W3C-DOM model offer full compatibility with this object oriented technology for the web documents structure. Knowing the DOM technology in combination with JavaScript you will able to program each HTML or XML element which DOM converts to an object - node achieving perfect performance for your web documents. Especially you will learn : How to read an HTML or XML document under DOM How a web document is structured with DOM How the document tree of nodes is created How to manage a web document through DOM How to handle the relationships among the nodes of the web document How to create a new node in an HTML document How to add the id attribute to a new node of a web document How to create contents for new nodes How to embed a new node into the body elemnt of an HTML document How to write script to create and embed a new node into the document How to replace a node with a new node How to delete an existing node How to manage the DOM nodes of an HTML document Copyright © w3opensource.com. All rights reserved. Document Object Model - Working with DOM Alex Gklinos M.Sc. in E-Commerce Chapter 1 : Introduction to Document Object Model -DOM 1.1. The Object Management Group & IDL language of W3C 1.2. W3C DOM - The Document Object Model 1.2.1. recommendation of WC3 DOM - Level 1 1.2.2. recommendation of WC3 DOM - Level 2 1.2.3. recommendation of WC3 DOM - Level 3 1.3. The Netscape DOM 1.4. The Microsoft DOM Chapter 2 : The structure of W3C-DOM 2.1. Access the web document structure through W3C-DOM 2.2. Node is the core of the DOM structure 2.3. The DOM access models of Microsoft and Netscape 2.3.1. The object document.all of Microsof 2.3.2. The object document.layers of Netscape 2.4. The Nodes technology and the family tree 2.4.1. HTML document nodes 2.4.2. XML document nodes 2.4.3. Parents, children & siblings nodes 2.4.4. .Nodes categories Chapter 3: Managing web documents with W3C-DOM 3.1. Management of an HTML document with DOM nodes 3.1.1. The id attribute in an element of an HTML document 3.2. Relationships and management of document nodes. 3.3. Creating and embedding nodes 3.3.1. Creating a new node 3.3.2. Adding the id attribute to the new node 3.3.3. Creating contents 3.3.4. Adding contents to the new node 3.3.5. Embedding the new node into the body element 3.3.6. Script to create and embed a new node into the document 3.4. Replacing a node with a new node 3.5. Deleting an existing node 3.6. DOM Management script for an HTML document Chapter 4: The node document 4.1. Properties of node d o c u m e n t 4.1.1. documentElement 4.1.2. doctype 4.1.3. readyState 4.1.4. onreadystatechange 4.1.5. ondataavailable 4.1.6. parseError 4.1.7. url 4.2. Methods of node d o c u m e n t 4.2.1. getElementbyId(id) 4.2.2. getElementsbyTagName(tag) 4.2.3. createTextNode(data) Copyright © w3opensource.com. All rights reserved. Document Object Model - Working with DOM Alex Gklinos M.Sc. in E-Commerce 4.2.4. createComment(sxolio) 4.2.5. createElement(name) 4.2.6. createProcessingInstruction(target,data) 4.2.7. createEntityReference(name) 4.2.8. createCDATA(data) 4.3. Accessing a web document through its document node Chapter 5: DOM Nodes Properties and Methods 5.1. The basic properties of nodes 5.1.2. nodeType 5.1.3. nodeName 5.1.4. nodeValue 5.1.5. attributes methods: reset() - nextNode() - getNamedItem() 5.1.6. text methods: splitText() - insertData() - appendData() replaceData() - deleteData() 5.2. Properties which define relationships among nodes 5.2.1. Relationship property of parentNode 5.2.2. Relationship property of childNodes 5.2.3. Relationship properties of firstChild, lastChild, previousSibling, nextSibling 5.3. General methods of nodes relationships appendChild(child), insertBefore(child,beforechild), replaceChild(child,old), removeChild(child), cloneNode(deep), hasChildNodes(), getNamedItem(), setNamedItem(), removeNamedItem() 5.4. Methods for properties of Element nodes setAttribute (name,value), setAttribute(attr), getAttribute(name), removeAttribute(name), setAttributeNode(attr), getAttributeNode(name), removeAttributeNode(name) 5.5. Changing URLs and the connection text through DOM 5.5.1. The logic of the DOM script 5.5.2. The full coded HTML document with the DOM script Summary Teach yourself at w3opensource Learn More Our e-Business Web Tutor Environment Copyright © w3opensource.com. All rights reserved. Document Object Model - Working with DOM Alex Gklinos M.Sc. in E-Commerce 1. Introduction to Document Object Model 1.1. The Object Management Group & IDL language of W3C The Document Object Model (DOM), has not only been created for browsers but also as a multi-language, multi-platform Application Program Interface. The ΟMG ( Object Management Group ) of W3C has developed the IDL ( Interface Definition Language ), a special language for object interfaces. OMG IDL is not used to describe objects, that is what they do, but what their properties and methods are. In this way, IDL maps the elements-objects of an Object Oriented Programming language and with the certain DOM standards in IDL, achieves support of multiple languages. So far, there is an IDL mapping of Java, C++, Ada, Smalltalk and Cobol and the respective DOM standards are available. 1.2. W3C DOM - The Document Object Model The Document Object Model (DOM), was initially created by the W3C organization aiming at the browsers' compatibility and particularly that of Netscape Navigator 3 and Internet Explorer 3. The DOM recommendation supports both HTML and XML documents. The Document Object Model - DOM allows the programmer z access & add z access & delete z access & manipulate z all styles z all elements z all attributes of a document The document can be accessed using the DOM through several programming languages that the browser supports, such as : z Java, z JavaScript / ECMAScript / JScript z and VBScript (MSIE ). DOM 1 (level-1), defines the full standardization of the document as far as objects are concerned, that is how the objects are structured and how we can refer to them. You can find the recommendation of the standards of DOM-Level-1 at the site : Copyright © w3opensource.com. All rights reserved. Document Object Model - Working with DOM Alex Gklinos M.Sc. in E-Commerce WWW.w3org/TR/REC-DOM-Level-1/ DOM provides a typical way of accessing the document objects, no matter what the programming language or the browser is, and enables us to develop DOM applications using JavaScript or other programming languages. The connection of W3C DOM with ECMAScript, which is a standardization of JavaScript, lets us develop applications that support as many browsers as possible. DOM 2 (level-2), furthermore, defines a system of event handling and the validation of the document through its declaration of its type (DTD - Document Type Declaration). You can find the recommendation of the standards of DOM-Level-2 at the site : WWW.w3org/TR/REC-DOM-Level-2/ What follows is the basic DOM terminology : 1. Νode : It's the reference to an element, its attributes or a document text. 2. Element: It represents in any reference a certain document tag. 3. Attribute : It represents a certain attribute of the document element. Browsers that offer full support of DOM are ΙE 6+ and Netscape 6+ and all others which based upon them. These browsers versions enable us to access any code, element or attribute of an HTML element through DOM Support of multiple browsers from DOM applies only to the versions of the two main browsers we mentioned above. Checking backwards compatibility that concerns older browsers not supporting DOM is left to the programmer either through browser detection or through objects the browser supports (Object Detection). 1.2.1. Recommendation of WC3 DOM - Level 1 (1st October of 1998) DOM 1 (level-1), defines the full object standards of a web document, how the document object- elements are structured and the ways that we can use to refer to them. It is implemented in XML and HTML documents. (This diagram Architecture of the core of DOM Level 1 is from W3C) Copyright © w3opensource.com. All rights reserved. Document Object Model - Working with DOM Alex Gklinos M.Sc. in E-Commerce DOM, offer us a typical access way to document objects independently from the programming language or browsers giving us the possibility to develop DOM applications through JavaScript or other programming languages.
Recommended publications
  • TRABAJO DE DIPLOMA Título: Diseño De La Página Web De Antenas
    FACULTAD DE INGENIERÍA ELÉCTRICA Departamento de Telecomunicaciones y Electrónica TRABAJO DE DIPLOMA Título: Diseño de la Página Web de Antenas Autor: Alaín Hidalgo Burgos Tutor: Dr. Roberto Jiménez Hernández Santa Clara 2006 “Año de la Revolución Energética en Cuba” Universidad Central “Marta Abreu” de Las Villas FACULTAD DE INGENIERÍA ELÉCTRICA Departamento de Telecomunicaciones y Electrónica TTRRAABBAAJJOO DDEE DDIIPPLLOOMMAA Diseño de la Página Web de Antenas Autor: Alaín Hidalgo Burgos e-mail: [email protected] Tutor: Dr. Roberto Jiménez Hernández Prof. Dpto. de Telecomunicaciones y electrónica Facultad de Ing. Eléctrica. UCLV. e-mail: [email protected] Santa Clara Curso 2005-2006 “Año de la Revolución Energética en Cuba” Hago constar que el presente trabajo de diploma fue realizado en la Universidad Central “Marta Abreu” de Las Villas como parte de la culminación de estudios de la especialidad de Ingeniería en Telecomunicaciones y Electrónica, autorizando a que el mismo sea utilizado por la Institución, para los fines que estime conveniente, tanto de forma parcial como total y que además no podrá ser presentado en eventos, ni publicados sin autorización de la Universidad. Firma del Autor Los abajo firmantes certificamos que el presente trabajo ha sido realizado según acuerdo de la dirección de nuestro centro y el mismo cumple con los requisitos que debe tener un trabajo de esta envergadura referido a la temática señalada. Firma del Tutor Firma del Jefe de Departamento donde se defiende el trabajo Firma del Responsable de Información Científico-Técnica PENSAMIENTO “El néctar de la victoria se bebe en la copa del sacrificio” DEDICATORIA Dedico este trabajo a mis padres, a mí hermana y a mi novia por ser las personas más hermosas que existen y a las cuales les debo todo.
    [Show full text]
  • Cascading Style Sheet Styling Issues for Punjabi Language
    Cascading Style Sheet Styling Issues for Punjabi Language Thesis submitted in partial fulfillment of the requirements for the award of degree of Master of Engineering in Computer Science and Engineering Submitted By Swati Mittal (Roll No. 800932024) Under the supervision of: Mr. Parteek Bhatia Assistant Professor (CSED) COMPUTER SCIENCE AND ENGINEERING DEPARTMENT THAPAR UNIVERSITY PATIALA – 147004 June 2011 i ii Abstract Most of the websites today are multilingual. The information provided on the Internet is in local language. The fonts used for local languages are not compatible with the browsers. The websites make use of Cascading Style Sheets for styling. The effect of using CSS styles on local languages is not as good as it is for English language. There are many CSS styling issues in display of local languages. W3C India has identified many CSS styling issues for Indic Scripts. In the work presented, CSS styling issues like, first-letter styling, underlining, over lining, line- through of characters, hyperlink display while mouse over, horizontal spacing, etc., have been discussed for Punjabi language. These issues have been analyzed on six different browsers, namely, Google Chrome, Mozilla Firefox, Netscape Navigator, Safari, Internet Explorer and Opera. A comparative study of all these browsers has been carried out based on the CSS styling issues. A number of Punjabi websites have been analyzed to find the problems in display. The websites use Unicode and non-Unicode Gurmukhi fonts for Punjabi content. There are problems in display of non-Unicode fonts. A web application has been created that allows an end-user to apply different CSS styles on the Punjabi text.
    [Show full text]
  • Security Analysis of Browser Extension Concepts
    Saarland University Faculty of Natural Sciences and Technology I Department of Computer Science Bachelor's thesis Security Analysis of Browser Extension Concepts A comparison of Internet Explorer 9, Safari 5, Firefox 8, and Chrome 14 submitted by Karsten Knuth submitted January 14, 2012 Supervisor Prof. Dr. Michael Backes Advisors Raphael Reischuk Sebastian Gerling Reviewers Prof. Dr. Michael Backes Dr. Matteo Maffei Statement in Lieu of an Oath I hereby confirm that I have written this thesis on my own and that I have not used any other media or materials than the ones referred to in this thesis. Saarbr¨ucken, January 14, 2012 Karsten Knuth Declaration of Consent I agree to make both versions of my thesis (with a passing grade) accessible to the public by having them added to the library of the Computer Science Department. Saarbr¨ucken, January 14, 2012 Karsten Knuth Acknowledgments First of all, I thank Professor Dr. Michael Backes for giving me the chance to write my bachelor's thesis at the Information Security & Cryptography chair. During the making of this thesis I have gotten a deeper look in a topic which I hope to be given the chance to follow up in my upcoming academic career. Furthermore, I thank my advisors Raphael Reischuk, Sebastian Gerling, and Philipp von Styp-Rekowsky for supporting me with words and deeds during the making of this thesis. In particular, I thank the first two for bearing with me since the release of my topic. My thanks also go to Lara Schneider and Michael Zeidler for offering me helpful advice.
    [Show full text]
  • Modulo Diseño De Sitios
    UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA FACULTAD DE CIENCIAS BÁSICAS E INGENIERÍA PROGRAMA DE INGENIERÍA DE SISTEMAS MMOODDUULLOO DDIISSEEÑÑOO DDEE SSIITTIIOOSS WWEEBB Autores: Ingenieros: JORGE EDUARDO SALAZAR ZÚÑIGA ORLANDO PUENTES ANDRADE Revisión y Modificación (Ingeniero. MAURICIO PERDOMO VARGAS) La Plata Huila – 10 de Diciembre de 2009 UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA FACULTAD DE CIENCIAS BÁSICAS E INGENIERÍA PROGRAMA DE INGENIERÍA DE SISTEMAS CONTENIDO INTRODUCCIÓN AL CURSO DISEÑO DE SITIOS WEB 1 ÍTEM TITULO PAG . 1. UNIDAD 1. GENERALIDADES DEL 4 MODELAMIENTO Y LAS ARQUITECTURAS WEB 1.1 INTRODUCCIÓN 4 1.2 CAPITULO 1: TEMAS CLAVES DEL DISEÑO DE SITIOS WEB 5 1.2.1 LECCIÓN 1: QUE ES EL DISEÑO DE SITIOS WEB 5 1.2.2 LECCIÓN 2: LA PIRÁMIDE DEL DISEÑO WEB 5 1.2.3 LECCIÓN 3: MODELOS PARA EL DESARROLLO WEB. 6 1.2.4 LECCIÓN 4: EVALUACIÓN DE UN SITIO WEB 7 1.2.5 LECCIÓN 5: RECOMENDACIONES FINALES 8 1.2.6 ACTIVIDADES 10 1.2.7 AUTOEVALUACIÓN 10 1.2.8 BIBLIOGRAFÍA 10 1.3 CAPITULO 2: EL PROCESO DEL DISEÑO WEB 11 1.3.1 LECCIÓN 6: NECESIDAD DE UNA METODOLOGÍA DE 11 DISEÑO Y DESARROLLO. 1.3.2 LECCIÓN 7: ENFOQUE DE UN PROYECTO DE UN SITIO 11 WEB. 1.3.3 LECCIÓN 8: PLANIFICACIÓN DEL SITIO 13 1.3.4 LECCIÓN 9: ETAPAS DE LA FASE DEL DISEÑO 14 1.3.5 LECCIÓN 10: IMPLANTACIÓN DE LA VERSIÓN BETA DEL 15 SITIO. 1.3.6 ACTIVIDADES 16 1.3.7 AUTOEVALUACIÓN 16 1.3.8 BIBLIOGRAFÍA 16 1.4 CAPITULO 3: VARIABLES DE ÉXITO PARA LOS SITIOS 17 WEB 1.4.1 LECCIÓN 11: DISEÑO PARA LOS USUARIOS 17 1.4.2 LECCIÓN 12: RESPUESTA Y TIEMPO DE REACCIÓN 19 1.4.3 LECCIÓN 13: TIPOS DE SITIOS WEB 21 UNIVERSIDAD NACIONAL ABIERTA Y A DISTANCIA FACULTAD DE CIENCIAS BÁSICAS E INGENIERÍA PROGRAMA DE INGENIERÍA DE SISTEMAS 1.4.4 LECCIÓN 14: TIPOS Y ELECCIÓN DE LA ESTRUCTURA DE 24 UN SITIO 1.4.5 LECCIÓN 15: TEORÍA Y PRÁCTICA DE LA EXPLORACIÓN 27 1.4.6 ACTIVIDADES 33 1.4.7 AUTOEVALUACIÓN 33 1.4.8.
    [Show full text]
  • Why Websites Can Change Without Warning
    Why Websites Can Change Without Warning WHY WOULD MY WEBSITE LOOK DIFFERENT WITHOUT NOTICE? HISTORY: Your website is a series of files & databases. Websites used to be “static” because ​ there were only a few ways to view them. Now we have a complex system, and telling your webmaster what device, operating system and browser is crucial, here’s why: TERMINOLOGY: You have a desktop or mobile “device”. Desktop computers and mobile ​ ​ ​ devices have “operating systems” which are software. To see your website, you’ll pull up a ​ ​ ​ ​ “browser” which is also software, to surf the Internet. Your website is a series of files that ​ ​ needs to be 100% compatible with all devices, operating systems and browsers. Your website is built on WordPress and gets a weekly check up (sometimes more often) to ​ ​ ​ see if any changes have occured. Your site could also be attacked with bad files, links, spam, comments and other annoying internet pests! Or other components will suddenly need updating which is nothing out of the ordinary. WHAT DOES IT LOOK LIKE IF SOMETHING HAS CHANGED? Any update to the following can make your website look differently: There are 85 operating ​ systems (OS) that can update (without warning). And any of the most popular roughly 7 ​ ​ ​ browsers also update regularly which can affect your site visually and other ways. (Lists below) ​ Now, with an OS or browser update, your site’s 18 website components likely will need ​ ​ updating too. Once website updates are implemented, there are currently about 21 mobile ​ devices, and 141 desktop devices that need to be viewed for compatibility.
    [Show full text]
  • November, 1999
    CADDO-BOSSIER WINDOWS USER GROUP Shreveport – Bossier City Louisiana www.shreveport.com/cbwug Volume 1, No 9 Caddo-Bossier Windows User Group Newsletter November, 1999 GO!ZILLA one finishes to start the next. GO! OUR NEXT MEETING by Mark Reeves ZILLA fixes all those problems and 7 p.m. a few more besides. It is a Thursday November 11, l999 download and connections manager Being in the computer business as a Marshall and Associates system integrator, I am always for the Internet that works with 819 Shreveport-Barksdale Hwy downloading something off the IE4.x and above, plus Netscape 4.x Internet for my clients. Bios up- and above. Shreveport, Louisiana grades, videodriv- Meetings 2nd Thursday of each month ers, etc. My big- If you lose your gest problem is the connection it will poor phone lines restart on command MARK YOUR CALENDAR we have in after you log back Shreveport/ on to the Internet. It Bossier discon- restarts where it left Newsletter reproduction necting me repeatedly. I recently off so you do not have to compliments of Office Depot start over! You can use its had to download on East 70th Street a 46 meg patch file, I had to restart download manager to download downloading 3 times from scratch files in sequence, which is much AFTER I had download 80% of the faster. C-B WUG CLUB ELECTIONS file. My next problem is needing to Our annual election of officers will be download multiple files, so I either (Continued on page 4) held at the December 10 meeting.
    [Show full text]
  • Effective Web Design, Second Edition
    Effective Web Design Effective Web Design, Second Edition Ann Navarro SYBEX® Associate Publisher: Cheryl Applewood Contracts and Licensing Manager: Kristine O'Callaghan Acquisitions and Developmental Editor: Raquel Baker Editors: Joseph A. Webb, James A. Compton, Colleen Wheeler Strand Production Editor: Dennis Fitzgerald Technical Editor: Marshall Jansen Book Designer: Maureen Forys, Happenstance Type-O-Rama Graphic Illustrator: Tony Jonick Electronic Publishing Specialist: Maureen Forys, Happenstance Type-O-Rama Proofreaders: Nelson Kim, Nancy Riddiough, Leslie E.H. Light Indexer: Ann Rogers CD Coordinator: Christine Harris CD Technician: Kevin Ly Cover Designer: Design Site Cover Illustrator/Photographer: Dan Bowman Copyright © 2001 SYBEX Inc., 1151 Marina Village Parkway, Alameda, CA 94501. World rights reserved. page 1 Effective Web Design The author(s) created reusable code in this publication expressly for reuse by readers. Sybex grants readers limited permission to reuse the code found in this publication or its accompanying CD-ROM so long as (author(s)) are attributed in any application containing the reusable code and the code itself is never distributed, posted online by electronic transmission, sold, or commercially exploited as a stand- alone product. Aside from this specific exception concerning reusable code, no part of this publication may be stored in a retrieval system, transmitted, or reproduced in any way, including but not limited to photocopy, photograph, magnetic, or other record, without the prior agreement and written permission of the publisher. An earlier version of this book was published under the title Effective Web Design © 1998 SYBEX Inc. Library of Congress Card Number: 2001088112 ISBN: 0-7821-2849-1 SYBEX and the SYBEX logo are either registered trademarks or trademarks of SYBEX Inc.
    [Show full text]
  • Clearing Cache/Cookies Browser Guide
    Clearing Cache/Cookies Browser Guide April 17, 2014 1 Table of Contents AOL:............................................................................................................................................................... 3 Clearing Cache: ......................................................................................................................................... 3 Clearing Cookies: ....................................................................................................................................... 3 Internet Explorer: ......................................................................................................................................... 3 Clearing Cache: ......................................................................................................................................... 3 Clearing Cookies: ....................................................................................................................................... 4 Firefox: .......................................................................................................................................................... 4 Clearing Cache: ......................................................................................................................................... 4 Clearing Cookies: ....................................................................................................................................... 4 Chrome: .......................................................................................................................................................
    [Show full text]
  • Ipasmaster 3.0 First Time Setup
    IPASMaster 3.0 First Time Setup IPASMaster 3.0 First Time Setup TABLE OF CONTENTS IPASMaster (IPM) Link and Getting Started ........................................................................................................................... 3 Browser Configuration First Use – Internet Explorer ......................................................................................................... 3 Browser Configuration First Use – Chrome/Firefox ........................................................................................................... 5 Browser Configuration First Use – Edge (Windows 10) .................................................................................................. 10 IPASMaster Configuration – First Use ..................................................................................................................................... 11 Creating IPM Desktop Shortcuts, Browser Favorites, Bookmarks ............................................................................... 12 Page 2 of 13 Saved: 08/11/2018 11:32:00 AM Author: CBIZ Printed: 08/11/2018 11:32:00 AM IPASMaster 3.0 First Time Setup IPASMaster (IPM) Link and Getting Started The IPASMaster website is https://ipm.cbiz.com/ipasmaster3 To start using IPASMaster, open your browser and proceed to the appropriate First Use configuration section of this document for the browser you are using, Internet Explorer, Chrome/Firefox or Edge (Windows 10 browser). Browser Configuration First Use – Internet Explorer Add IPM production and test
    [Show full text]
  • IE Browser Settings
    Configuring Internet Explorer Oracle Banking Payments Release 14.3.0.0.0 [May] [2019] Table of Contents 1. CONFIGURING INTERNET EXPLORER.......................................................................................................................3 1.1 Configuring Internet Options ........................................................................................................................ 3 1.2 Creating Shortcut for Oracle Banking Payments Application Browser with – no merge Parameter ............ 7 1.3 Setting Compatibility View(IE 11 onwards) ................................................................................................. 10 1.4 Clearing the Cache ....................................................................................................................................... 11 1.5 Suppressing Caching .................................................................................................................................... 13 1.6 Settings for Trusted Sites ............................................................................................................................. 14 1.7 Settings for Pop-up Blocker ......................................................................................................................... 16 1.8 Browser Behaviour ...................................................................................................................................... 17 1. Configuring Internet Explorer Oracle Banking does not support Microsoft Internet Explorer
    [Show full text]
  • Browser Updates
    Internet Browser Software MigovBOE Rev. 6/4/18 INTERNET BROWSER SOFTWARE UPDATES AND SETTINGS: TABLE OF CONTENTS Determine your Internet Browser software program .......................................................................................................................... 2 Internet Explorer .............................................................................................................................................................................. 3 Google Chrome ................................................................................................................................................................................ 4 Google Chrome (Continued) ............................................................................................................................................................ 5 Mozilla Firefox ................................................................................................................................................................................. 6 Safari ................................................................................................................................................................................................ 7 Windows 10 Microsoft Edge ............................................................................................................................................................ 8 More Elections eLearning Center Help ...........................................................................................................................................
    [Show full text]
  • Hi Quality Version Available on AMIGALAND.COM
    L 9427-111-39,00 F 379942703900301110 ISSN 1164-1746 AMIGA-A\BOX-BeOS & Vidéo Numérique PIOS-DRACO-pOS Phase 5: annonce d'un ordinateur quadri-PPC PIOS ONE: les nouvelles spécifications Jeff Schindler: Je prépare TAmlga de l'avenir' POWER Dqssier: CyberStorm im agin Hi Quality Version Available on AMIGALAND.COM imagine 5.1a Art Effect 2.5 Sony dcr-sc io o n o s rubriques: News DP, Jeux, Real3D, i E, ASM, HTML, Niouznet, Lightwave sur le Avril 1998 n°111 Suisse 12FS, Belgique 250FB, Canada 8.50$ Quand ? Samedi 9 et Dimanche 10 mai 1998 de 9 heures à 19 heures O ù ? Centre Culturel Wauterbos 1640 Rhode-Saint-Genèse t «rc» ' De la France, prendre l'autoroute Paris-Bruxelles. Dix kilomètres avant Bruxelles prendre la sortie 15 Huizingen, juste après la sortie \ Halle prendre à droite et suivre les flèches vertes « Amiga Show « ^ sur 8 kilomètres Pourquoi ? Hi Quality Version Available on AMIGALAND.COMPour découvrir les dernières nouveautés de l'Amiga. Pour vous équiper en matériel, utilitaires, jeux, domaine public.... Pour rencontrer les acteurs du monde Amiga: revendeurs, presse, artistes créateurs... Pour acheter et vendre du matériel d'occasion Petro t . sera présent Un musée Commodore - Amiga sera présenté au public . Ie samedi après-midi Plusieurs sociétés ont déjà confirmé leur présence : Amiga International Inc, Amiga City, ADFI, AmigaNews, Génération Amiga, Pixel Art . t Digital Précision, The Black Tiger, Epie Marketing (UK), Micronik, (D) Sous réserve de confirmation : .... v Atéo Concepts, F.D.S, Dream, Power Computing (UK), Phase 5 (D) Golden Image, etc...' , - Comment ? Digital Précision «■* i / /*\ r— w— r— r— » 3 3 0 Chaussé© d© J©tt© Entrée 35 FF ou 200 FB b i o b i B m x e i i e s Parkinn nratuit Tel: 32 (0)2 426 os 04 rdir\ir îy yidlUll F ax : 3 2 (0 )2 4 2 0 3 8 7 5 ^ Possibilité de restauration * * Organisation Patrick Fauxvaux Jacques De Braekeleer SOMMAIRE Editorial La pre\box de Phase 5 4 News Allemagne 8 Phase 5 voudrait nous faire rêver avec son nouveau projet, la L'assiette Anglaise 12 pre\box, et tant mieux.
    [Show full text]