Cargando…

JavaScript and DHTML cookbook /

On numerous online forums for JavaScript and DHTML, the majority of questions begin with "How do I ...?" This new Cookbook provides the answers. After reading thousands of forum threads over the years, author and scripting pioneer Danny Goodman has compiled a list of problems that frequent...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Goodman, Danny
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Sebastopol, CA ; Farnham : O'Reilly, 2003.
Edición:1st ed.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 a 4500
001 OR_ocm54116516
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 040130s2003 caua o 001 0 eng d
040 |a OCL  |b eng  |e pn  |c OCL  |d OCLCQ  |d UMC  |d CEF  |d VLB  |d OCLCQ  |d OCLCF  |d OCLCQ  |d CUSER  |d ZWZ  |d E7B  |d OCLCQ  |d COO  |d FEM  |d MOQ  |d RDF  |d UKAHL  |d DST  |d OCLCO  |d OCLCQ  |d OCLCO 
019 |a 326763155  |a 861530758  |a 968010384  |a 969008501  |a 1300661545  |a 1303367196 
020 |a 9780596517120  |q (e-book) 
020 |a 0596517122  |q (e-book) 
020 |a 9780596552114 
020 |a 0596552114 
020 |z 0596004672 
020 |z 9780596004675 
024 8 |a 0596004672 
029 1 |a AU@  |b 000066231866 
029 1 |a AU@  |b 000068983823 
035 |a (OCoLC)54116516  |z (OCoLC)326763155  |z (OCoLC)861530758  |z (OCoLC)968010384  |z (OCoLC)969008501  |z (OCoLC)1300661545  |z (OCoLC)1303367196 
050 4 |a QA76.73.J39  |b G63 2003 
082 0 4 |a 005.72 
082 0 4 |a 005.13/3 
049 |a UAMI 
100 1 |a Goodman, Danny. 
245 1 0 |a JavaScript and DHTML cookbook /  |c Danny Goodman. 
246 3 |a JavaScript and Dynamic HyperText Markup Language cookbook 
250 |a 1st ed. 
260 |a Sebastopol, CA ;  |a Farnham :  |b O'Reilly,  |c 2003. 
300 |a 1 online resource (xvii, 520 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
500 |a "Solutions & examples for web programmers"--Cover 
500 |a Includes index. 
520 |a On numerous online forums for JavaScript and DHTML, the majority of questions begin with "How do I ...?" This new Cookbook provides the answers. After reading thousands of forum threads over the years, author and scripting pioneer Danny Goodman has compiled a list of problems that frequently vex scripters of various experience levels. He has now applied state-of-the-art ECMA and W3C DOM standards and used best practices to create this extensive collection of practical recipes that can bring your web pages to life. The JavaScript & DHTML Cookbook is all about adding value to the content of a web page. The book focuses on practical and sensible applications of scripting, rather than flying images and gratuitous color changes. For every problem Goodman addresses, there's a solution or "recipe"--A focused piece of code that web developers can insert directly into their applications. Yet, rather than just cut-and-paste code, you also get explanations of how and why the code works, so you can learn to adapt the problem-solving techniques to your designs. The recipes range from simple tasks, such as manipulating strings and validating dates in JavaScript, to entire libraries that demonstrate complex tasks, such as cross-browser positioning of HTML elements and sorting tables. This book contains over 150 recipes on the following topics: Working with interactive forms and style sheets Presenting user-friendly page navigation Creating dynamic content Producing visual effects for stationary content Positioning HTML elements Managing browser windows and multiple framesThis book is the ideal companion to O'Reilly's JavaScript: The Definitive Guide and Dynamic HTML: The Definitive Reference. If you own either of these books, the JavaScript & DHTML Cookbook is a must 
542 |f Copyright © O'Reilly Media, Inc.  |g 2003. 
505 0 |a Table of Contents; Preface; About You; About the Recipes; What's in This Book; Browser Platforms; Conventions Used in This Book; Request for Comments; Acknowledgments; Strings; 1.0 Introduction; Creating a String; Regular Expressions; 1.1 Concatenating (Joining) Strings; Problem; Solution; Discussion; See Also; 1.2 Accessing Substrings; Problem; Solution; Discussion; See Also; 1.3 Changing String Case; Problem; Solution; Discussion; See Also; 1.4 Testing Equality of Two Strings; Problem; Solution; Discussion; See Also; 1.5 Testing String Containment Without Regular Expressions; Problem 
505 8 |a SolutionDiscussion; See Also; 1.6 Testing String Containment with RegularExpressions; Problem; Solution; Discussion; See Also; 1.7 Searching and Replacing Substrings; Problem; Solution; Discussion; See Also; 1.8 Using Special and Escaped Characters; Problem; Solution; Discussion; See Also; 1.9 Reading and Writing Strings for Cookies; Problem; Solution; Discussion; See Also; 1.10 Converting Between Unicode Values and String Characters; Problem; Solution; Discussion; See Also; 1.11 Encoding and Decoding URL Strings; Problem; Solution; Discussion; See Also 
505 8 |a 1.12 Encoding and Decoding Base64 StringsProblem; Solution; Discussion; See Also; Numbers and Dates; 2.0 Introduction; JavaScript Numbers; The Math Object; Dates and Times; 2.1 Converting Between Numbers and Strings; Problem; Solution; Discussion; See Also; 2.2 Testing a Number's Validity; Problem; Solution; Discussion; See Also; 2.3 Testing Numeric Equality; Problem; Solution; Discussion; See Also; 2.4 Rounding Floating-Point Numbers; Problem; Solution; Discussion; See Also; 2.5 Formatting Numbers for Text Display; Problem; Solution; Discussion; See Also 
505 8 |a 2.6 Converting Between Decimal and Hexadecimal NumbersProblem; Solution; Discussion; See Also; 2.7 Generating Pseudorandom Numbers; Problem; Solution; Discussion; See Also; 2.8 Calculating Trigonometric Functions; Problem; Solution; Discussion; See Also; 2.9 Creating a Date Object; Problem; Solution; Discussion; See Also; 2.10 Calculating a Previous or Future Date; Problem; Solution; Discussion; See Also; 2.11 Calculating the Number of Days Between Two Dates; Problem; Solution; Discussion; See Also; 2.12 Validating a Date; Problem; Solution; Discussion; See Also; Arrays and Objects 
505 8 |a 3.0 IntroductionJavaScript Arrays; JavaScript Custom Objects; Choosing Between Arrays and Objects; Getting Data into the Page; 3.1 Creating a Simple Array; Problem; Solution; Discussion; See Also; 3.2 Creating a Multidimensional Array; Problem; Solution; Discussion; See Also; 3.3 Converting Between Arrays and Strings; Problem; Solution; Discussion; See Also; 3.4 Doing Something with the Items inanArray; Problem; Solution; Discussion; See Also; 3.5 Sorting a Simple Array; Problem; Solution; Discussion; See Also; 3.6 Combining Arrays; Problem; Solution; Discussion; See Also; 3.7 Dividing Arrays 
546 |a English. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a JavaScript (Computer program language) 
650 0 |a DHTML (Document markup language) 
650 0 |a Internet programming. 
650 6 |a DHTML (Langage de balisage) 
650 6 |a Programmation Internet. 
650 6 |a JavaScript (Langage de programmation) 
650 1 7 |a JavaScript (Computer program language)  |2 bisacsh 
650 7 |a DHTML (Document markup language)  |2 fast 
650 7 |a Internet programming  |2 fast 
650 7 |a JavaScript (Computer program language)  |2 fast 
650 7 |a JavaScript (langage de programmation)  |2 ram 
650 7 |a DHTML (langage de balisage)  |2 ram 
650 7 |a Programmation sur Internet.  |2 ram 
776 0 8 |i Print versoin:  |z 0596004672  |w (OCoLC)51527055 
856 4 0 |u https://learning.oreilly.com/library/view/~/0596004672/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH28633323 
994 |a 92  |b IZTAP