Web Development with jquery

Size: px
Start display at page:

Download "Web Development with jquery"

Transcription

1 Brochure More information from Web Development with jquery Description: Take full advantage of jquery's newest features for web development In the five years since Wrox's popular Beginning JavaScript and CSS Development with jquery was published, jquery has undergone major revisions and enhancements. All are explored and explained in this new guide, which thoroughly covers new HTML5 elements and functionality, improved methods of event handling, the upgrades to jquery UI, and much more. Each chapter helps you learn to develop dynamic web pages and web applications with jquery's powerful, easy to use features. This book is an essential instructional tool for web developers who know JavaScript and CSS and want to learn more. Web Development with jquery: - Focuses on the most recent features and capabilities of jquery - Reviews and explains the updates to popular features like jquery UI, navigation, tables, interactive capabilities, audio, and video - Includes expanded coverage of events, CSS, AJAX, animation, and drag and drop - Demonstrates how to take advantage of new jquery features that improve performance and speed - Covers a variety of third party jquery plugins that can add more versatility to your web pages Wrox guides are crafted to make learning programming languages and technologies easier than you think. Written by programmers for programmers, they provide a structured, tutorial format that will guide you through all the techniques involved. Contents: INTRODUCTION xix PART I: THE JQUERY API CHAPTER 1: INTRODUCTION TO JQUERY 3 What jquery Can Do for You 5 Who Develops jquery? 7 Obtaining jquery 7 Installing jquery 7 Programming Conventions 10 Markup and CSS Conventions 10 JavaScript Conventions 15 Summary 26 CHAPTER 2: SELECTING AND FILTERING 27 The Origin of the Selectors API 28 Using the Selectors API 29 Filtering a Selection 33 Working Within the Context of a Selection 34

2 Working with an Element s Relatives 45 Slicing a Selection 58 Adding to a Selection 59 Summary 60 CHAPTER 3: EVENTS 63 The Various Event Wrapper Methods 63 Attaching Other Events 68 Attaching Persistent Event Handlers 69 Removing Event Handlers 75 Creating Custom Events 80 Summary 86 CHAPTER 4: MANIPULATING CONTENT AND ATTRIBUTES 89 Setting, Retrieving, and Removing Attributes 89 Setting Multiple Attributes 96 Manipulating Class Names 97 Manipulating HTML and Text Content 102 Getting, Setting, and Removing Content 103 Appending and Prepending Content 108 Inserting Beside Content 111 Inserting Beside Content via a Selection 112 Wrapping Content 117 Replacing Elements 123 Removing Content 126 Cloning Content 130 Summary 133 CHAPTER 5: ITERATION OF ARRAYS AND OBJECTS 135 Enumerating Arrays 135 Enumerating Objects 139 Iterating a Selection 141 Filtering Selections and Arrays 143 Filtering a Selection 143 Filtering a Selection with a Callback Function 146

3 Filtering an Array 147 Mapping a Selection or an Array 151 Mapping a Selection 151 Mapping an Array 153 Array Utility Methods 156 Making an Array 157 Finding a Value Within an Array 158 Merging Two Arrays 160 Summary 162 CHAPTER 6: CSS 165 Working with CSS Properties 165 jquery s Pseudo Classes 167 Obtaining Outer Dimensions 167 Summary 174 CHAPTER 7: AJAX 177 Making a Server Request 178 What s the Difference Between GET and POST? 179 RESTful Requests 180 Formats Used to Transport Data with an AJAX Request 180 Making a GET Request with jquery 181 Loading HTML Snippets from the Server 195 Dynamically Loading JavaScript 200 AJAX Events 205 Using AJAX Event Methods 210 Attaching AJAX Events to Individual Requests 211 Sending a REST Request 213 Summary 220 CHAPTER 8: ANIMATION AND EASING EFFECTS 223 Showing and Hiding Elements 223 Sliding Elements 231 Fading Elements 234

4 Custom Animation 237 Animation Options 241 Summary 242 CHAPTER 9: PLUGINS 243 Writing a Plugin 243 Writing a Simple jquery Plugin 243 Inspecting the Document Object Model 248 Writing a Context Menu jquery Plugin 250 Good Practice for jquery Plugin Development 265 Summary 265 CHAPTER 10: SCROLLBARS 267 Getting the Position of a Scrollbar 267 Scrolling to a Particular Element within a Scrolling 272 Scrolling to the Top 276 Summary 277 CHAPTER 11: HTML5 DRAG AND DROP 279 Implementing Drag and Drop 279 Prerequisite Plugins 286 Event Setup 289 Implementing Drag and Drop File Uploads 294 Adding the File Information Data Object 309 Using a Custom XMLHttpRequest Object 313 Additional Utilities 316 Summary 319 PART II: JQUERY UI CHAPTER 12: DRAGGABLE AND DROPPABLE 323 Making Elements Draggable 324 Delegating Drop Zones for Draggable Elements 331 Summary 337 CHAPTER 13: SORTABLE 339 Making a List Sortable 339 Customizing Sortable 347

5 Saving the State of Sorted Lists 354 Summary 359 CHAPTER 14: SELECTABLE 361 Introducing the Selectable Plugin 361 Summary 372 CHAPTER 15: ACCORDION 373 Building an Accordion UI 373 Changing the Default Pane 376 Changing the Accordion Event 379 Setting the Header Elements 380 Summary 382 CHAPTER 16: DATEPICKER 383 Implementing a Datepicker 383 Custom Styling the Datepicker 385 Setting the Range of Allowed Dates 392 Localizing the Datepicker 395 Setting the Date Format 395 Localizing Datepicker Text 395 Changing the Starting Weekday 397 Summary 398 CHAPTER 17: DIALOG 399 Implementing a Dialog 399 Styling a Dialog 401 Making a Modal Dialog 407 Auto Opening the Dialog 409 Controlling Dynamic Interaction 411 Animating the Dialog 412 Working with Dialog Events 413 Summary 414 CHAPTER 18: TABS 417 Implementing Tabs 417

6 Styling the Tabbed User Interface 420 Loading Remote Content via AJAX 425 Animating Tab Transitions 428 Summary 429 PART III: POPULAR THIRD PARTY JQUERY PLUGINS CHAPTER 19: TABLESORTER 433 Sorting a Table 433 Summary 441 CHAPTER 20: CREATING AN INTERACTIVE SLIDESHOW 443 Creating a Slideshow 443 Summary 457 CHAPTER 21: WORKING WITH HTML5 AUDIO AND VIDEO 459 Downloading the MediaElement Plugin 459 Configuring the MediaElement Plugin 459 Creating an HTML Structure That Enables Fallback Video/Audio Plugins for Older Browsers 461 Implementing h.264 Video Content 462 Customizing Player Controls 463 Controlling When the Download of Media Begins 463 Summary 464 CHAPTER 22: CREATING A SIMPLE WYSIWYG EDITOR 467 Making an Element Editable with the contenteditable Attribute 467 Creating Buttons to Apply Bold, Italic, Underline, Font, and Font Size 469 Creating a Selection 473 Storing a Selection 478 Restoring a Selection 479 Summary 480 PART IV: APPENDICES APPENDIX A: EXERCISE ANSWERS 483 APPENDIX B: JQUERY SELECTORS 493 APPENDIX C: SELECTING, TRAVERSING, AND FILTERING 501 APPENDIX D: EVENTS 509 APPENDIX E: MANIPULATING CONTENT, ATTRIBUTES, AND CUSTOM DATA 523

7 APPENDIX F: MORE CONTENT MANIPULATION 527 APPENDIX G: AJAX METHODS 533 APPENDIX H: CSS 543 APPENDIX I: UTILITIES 547 APPENDIX J: DRAGGABLE AND DROPPABLE 551 APPENDIX K: SORTABLE 561 APPENDIX L: SELECTABLE 569 APPENDIX M: ANIMATION AND EASING EFFECTS 573 APPENDIX N: ACCORDION 585 APPENDIX O: DATEPICKER 589 APPENDIX P: DIALOG 599 APPENDIX Q: TABS 605 APPENDIX R: RESIZABLE 611 APPENDIX S: SLIDER 615 APPENDIX T: TABLESORTER 619 APPENDIX U: MEDIAELEMENT 623 INDEX 627 Ordering: Order Online - Order by Fax - using the form below Order by Post - print the order form below and send to Research and Markets, Guinness Centre, Taylors Lane, Dublin 8, Ireland.

8 Page 1 of 2 Fax Order Form To place an order via fax simply print this form, fill in the information below and fax the completed form to (from USA) or (from Rest of World). If you have any questions please visit Order Information Please verify that the product information is correct. Product Name: Web Address: Office Code: Web Development with jquery SC Product Format Please select the product format and quantity you require: Hard Copy (Paper back): Quantity USD 93 + USD 28 Shipping/Handling * Shipping/Handling is only charged once per order. * The price quoted above is only valid for 30 days. Please submit your order within that time frame to avail of this price as all prices are subject to change. Contact Information Please enter all the information below in BLOCK CAPITALS Title: Mr Mrs Dr Miss Ms Prof First Name: Last Name: Address: * Job Title: Organisation: Address: City: Postal / Zip Code: Country: Phone Number: Fax Number: * Please refrain from using free accounts when ordering (e.g. Yahoo, Hotmail, AOL)

9 Page 2 of 2 Payment Information Please indicate the payment method you would like to use by selecting the appropriate box. Pay by credit card: You will receive an with a link to a secure webpage to enter your credit card details. Pay by check: Please post the check, accompanied by this form, to: Research and Markets, Guinness Center, Taylors Lane, Dublin 8, Ireland. Pay by wire transfer: Please transfer funds to: Account number Sort code Swift code IBAN number Bank Address ULSBIE2D IE78ULSB Ulster Bank, Main Street, Blackrock, Co. Dublin, Ireland. If you have a Marketing Code please enter it below: Marketing Code: Please note that by ordering from Research and Markets you are agreeing to our Terms and Conditions at Please fax this form to: (646) or (646) From USA or From Rest of World

Creating Web Pages with HTML Simplified. 3rd Edition

Creating Web Pages with HTML Simplified. 3rd Edition Brochure More information from http://www.researchandmarkets.com/reports/2248215/ Creating Web Pages with HTML Simplified. 3rd Edition Description: Are you new to computers? Does new technology make you

More information

World Enterprise, Broadband, Mobile Video Transcoders Market

World Enterprise, Broadband, Mobile Video Transcoders Market Brochure More information from http://www.researchandmarkets.com/reports/1061156/ World Enterprise, Broadband, Mobile Video Transcoders Market Description: Encoding is defined as the process of turning

More information

Strategic Analysis of the Impact of Big Data on the European and North American Automotive Industry

Strategic Analysis of the Impact of Big Data on the European and North American Automotive Industry Brochure More information from http://www.researchandmarkets.com/reports/2764190/ Strategic Analysis of the Impact of Big Data on the European and North American Automotive Industry Description: The aim

More information

U.S. Call Center Software Markets

U.S. Call Center Software Markets Brochure More information from http://www.researchandmarkets.com/reports/358405/ U.S. Call Center Software Markets Description: All types of call center software are continuing to rapidly gain popularity,

More information

Global Big Data Analytics Market for Test and Measurement

Global Big Data Analytics Market for Test and Measurement Brochure More information from http://www.researchandmarkets.com/reports/3420825/ Global Big Data Analytics Market for Test and Measurement Description: Big Data analytics for test and measurement (T&M)

More information

Brochure More information from http://www.researchandmarkets.com/reports/2212908/

Brochure More information from http://www.researchandmarkets.com/reports/2212908/ Brochure More information from http://www.researchandmarkets.com/reports/2212908/ Multimedia-based Instructional Design. Computer-based Training, Webbased Training, Distance Broadcast Training, Performance-based

More information

Analysis of the Global Enterprise Firewall Market

Analysis of the Global Enterprise Firewall Market Brochure More information from http://www.researchandmarkets.com/reports/2238954/ Analysis of the Global Enterprise Firewall Market Description: Next-generation Technologies Protect Businesses from Advanced

More information

Web Design. A Complete Introduction

Web Design. A Complete Introduction Brochure More information from http://www.researchandmarkets.com/reports/2242374/ Web Design. A Complete Introduction Description: Simply the best introduction to all aspects of the design and development

More information

World Wireless Protocol Analyzers and Network Monitoring Systems

World Wireless Protocol Analyzers and Network Monitoring Systems Brochure More information from http://www.researchandmarkets.com/reports/1443662/ World Wireless Protocol Analyzers and Network Monitoring Systems Description: This research service provides the key research

More information

Strategic Global Sourcing Best Practices

Strategic Global Sourcing Best Practices Brochure More information from http://www.researchandmarkets.com/reports/1819924/ Strategic Global Sourcing Best Practices Description: The latest best practice guidance on all aspects of global strategic

More information

Excel 2013 Power Programming with VBA. Mr. Spreadsheet's Bookshelf

Excel 2013 Power Programming with VBA. Mr. Spreadsheet's Bookshelf Brochure More information from http://www.researchandmarkets.com/reports/2330366/ Excel 2013 Power Programming with VBA. Mr. Spreadsheet's Bookshelf Description: Learn to extend Excel 2013 with VBA programming

More information

Individual Life Insurance in Indonesia to 2019: Market Databook

Individual Life Insurance in Indonesia to 2019: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/3508587/ Individual Life Insurance in Indonesia to 2019: Market Databook Description: The "Individual Life Insurance in Indonesia

More information

BP p.l.c. (BP) Company Profile- Business Overview, Strategies, SWOT and Financial Analysis

BP p.l.c. (BP) Company Profile- Business Overview, Strategies, SWOT and Financial Analysis Brochure More information from http://www.researchandmarkets.com/reports/1504211/ BP p.l.c. (BP) Company Profile- Business Overview, Strategies, SWOT and Financial Analysis Description: BP p.l.c. (BP)

More information

"Personal Accident and Health Insurance Claims and Expenses in Morocco to 2018: Market Databook"

Personal Accident and Health Insurance Claims and Expenses in Morocco to 2018: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/3064340/ Personal Accident and Health Insurance Claims and Expenses in Morocco to 2018: Market Databook Description: "Personal Accident

More information

2015 U.S. Technical and Trade Schools Industry - Industry Report

2015 U.S. Technical and Trade Schools Industry - Industry Report Brochure More information from http://www.researchandmarkets.com/reports/3277101/ 2015 U.S. Technical and Trade Schools Industry - Industry Report Description: The 2015 U.S. Technical and Trade Schools

More information

Next Generation Enterprise Mobility Management Market Insight

Next Generation Enterprise Mobility Management Market Insight Brochure More information from http://www.researchandmarkets.com/reports/2858620/ Next Generation Enterprise Mobility Management Market Insight Description: Mobile Device Management (MDM) solutions are

More information

Forms 1099 & W-9 Update - Current Year IRS Information Reporting Form Guidelines - Recorded Webinar

Forms 1099 & W-9 Update - Current Year IRS Information Reporting Form Guidelines - Recorded Webinar Brochure More information from http://www.researchandmarkets.com/reports/3493089/ Forms 1099 & W-9 Update - Current Year IRS Information Reporting Form Guidelines - Recorded Webinar Description: Because

More information

Non-life Insurance IT Solutions Europe 2014-2015

Non-life Insurance IT Solutions Europe 2014-2015 Brochure More information from http://www.researchandmarkets.com/reports/2687950/ Non-life Insurance IT Solutions Europe 2014-2015 Description: Non-life Insurance IT Solutions Europe 2014-2015 - Current

More information

Life Insurance Distribution Channels in Croatia to 2019: Market Databook

Life Insurance Distribution Channels in Croatia to 2019: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/3500216/ Life Insurance Distribution Channels in Croatia to 2019: Market Databook Description: The "Life Insurance Distribution

More information

Analysis of the Global Vulnerability Management Market

Analysis of the Global Vulnerability Management Market Brochure More information from http://www.researchandmarkets.com/reports/2734454/ Analysis of the Global Vulnerability Management Market Description: This research service provides insight into the vulnerability

More information

'Personal Accident and Health Insurance Premiums and Claims in Australia to 2018: Market Brief' contains

'Personal Accident and Health Insurance Premiums and Claims in Australia to 2018: Market Brief' contains Brochure More information from http://www.researchandmarkets.com/reports/3064493/ Personal Accident and Health Insurance Premiums and Claims in Australia to : Market Brief Description: 'Personal Accident

More information

Project Scheduling and Management for Construction. 4th Edition. RSMeans

Project Scheduling and Management for Construction. 4th Edition. RSMeans Brochure More information from http://www.researchandmarkets.com/reports/2488468/ Project Scheduling and Management for Construction. 4th Edition. RSMeans Description: First published in 1988 by RS Means,

More information

Public Cloud Computing Market for SMBs in India - Affordable Connectivity and Virtualization Technologies to Drive Adoption of Public Cloud

Public Cloud Computing Market for SMBs in India - Affordable Connectivity and Virtualization Technologies to Drive Adoption of Public Cloud Brochure More information from http://www.researchandmarkets.com/reports/2643414/ Public Cloud Computing Market for SMBs in India - Affordable Connectivity and Virtualization Technologies to Drive Adoption

More information

Personal Accident and Health Insurance Investments in Russia to 2018: Market Databook

Personal Accident and Health Insurance Investments in Russia to 2018: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/3035895/ Personal Accident and Health Insurance Investments in Russia to : Market Databook Description: "Personal Accident and Health

More information

Effective Software Project Management

Effective Software Project Management Brochure More information from http://www.researchandmarkets.com/reports/2246933/ Effective Software Project Management Description: Why another book on software project management? For some time, the

More information

ZOHO Company Profile, focussing on CRM Activities

ZOHO Company Profile, focussing on CRM Activities Brochure More information from http://www.researchandmarkets.com/reports/2816079/ ZOHO Company Profile, focussing on CRM Activities Description: Zoho Company Report, Focussing on CRM Activities gives detailed

More information

Personal Accident and Health Insurance Claims and Expenses in Belarus to 2016: Market Databook

Personal Accident and Health Insurance Claims and Expenses in Belarus to 2016: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/2500010/ Personal Accident and Health Insurance Claims and Expenses in Belarus to 2016: Market Databook Description: Synopsis Timetric

More information

'Personal Accident and Health Insurance Premiums and Claims in Kenya to 2018: Market Brief' contains

'Personal Accident and Health Insurance Premiums and Claims in Kenya to 2018: Market Brief' contains Brochure More information from http://www.researchandmarkets.com/reports/3087330/ Personal Accident and Health Insurance Premiums and Claims in Kenya to 2018: Market Brief Description: 'Personal Accident

More information

Jindal Steel & Power Ltd (JSPL) Company Profile- Business Overview, Key Strategies, Operations and SWOT

Jindal Steel & Power Ltd (JSPL) Company Profile- Business Overview, Key Strategies, Operations and SWOT Brochure More information from http://www.researchandmarkets.com/reports/1504372/ Jindal Steel & Power Ltd (JSPL) Company Profile- Business Overview, Key Strategies, Operations and SWOT Analysis Description:

More information

Global Multiple Sclerosis Epidemiology and Patient Flow Analysis - 2015

Global Multiple Sclerosis Epidemiology and Patient Flow Analysis - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3070277/ Global Multiple Sclerosis Epidemiology and Patient Flow Analysis - 2015 Description: The author announced the results of

More information

Global Opioid Dependence Drugs Market Highlights - 2015

Global Opioid Dependence Drugs Market Highlights - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3293542/ Global Opioid Dependence Drugs Market Highlights - 2015 Description: The latest research Global Opioid Dependence Drugs

More information

Global Multiple Myeloma Epidemiology and Patient Flow Analysis - 2015

Global Multiple Myeloma Epidemiology and Patient Flow Analysis - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3070278/ Global Multiple Myeloma Epidemiology and Patient Flow Analysis - 2015 Description: The author announced the results of

More information

Individual Life Insurance in Russia to 2016: Market Databook

Individual Life Insurance in Russia to 2016: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/2202852/ Individual Life Insurance in Russia to 2016: Market Databook Description: Synopsis Timetric s 'Individual Life Insurance

More information

Global Haemophilia Epidemiology and Patient Flow Analysis - 2015

Global Haemophilia Epidemiology and Patient Flow Analysis - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3070298/ Global Haemophilia Epidemiology and Patient Flow Analysis - 2015 Description: The author announced the results of its Haemophilia

More information

Personal Accident and Health Insurance Claims and Expenses in South Africa to 2017: Market Databook

Personal Accident and Health Insurance Claims and Expenses in South Africa to 2017: Market Databook Brochure More information from http://www.researchandmarkets.com/reports/2654413/ Personal Accident and Health Insurance Claims and Expenses in South Africa to 2017: Market Databook Description: Synopsis

More information

Non-Life Insurance Premiums and Claims in Georgia to 2017: Market Brief

Non-Life Insurance Premiums and Claims in Georgia to 2017: Market Brief Brochure More information from http://www.researchandmarkets.com/reports/2697018/ Non-Life Insurance Premiums and Claims in Georgia to 2017: Market Brief Description: Synopsis 'Non-Life Insurance Premiums

More information

Non-Life Insurance Premiums and Claims in Brazil to 2018: Market Brief

Non-Life Insurance Premiums and Claims in Brazil to 2018: Market Brief Brochure More information from http://www.researchandmarkets.com/reports/3022663/ Non-Life Insurance Premiums and Claims in Brazil to 2018: Market Brief Description: 'Non-Life Insurance Premiums and Claims

More information

Ulcerative colitis Pipeline Highlights - 2015

Ulcerative colitis Pipeline Highlights - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3031128/ Ulcerative colitis Pipeline Highlights - 2015 Description: The latest report Ulcerative colitis Pipeline Highlights 2015

More information

Europe Rheumatoid Arthritis Market Highlights - 2015

Europe Rheumatoid Arthritis Market Highlights - 2015 Brochure More information from http://www.researchandmarkets.com/reports/3447138/ Europe Rheumatoid Arthritis Market Highlights - 2015 Description: The latest research, 'Europe Rheumatoid Arthritis Market

More information

IP VPN Market Forecast in India to 2016

IP VPN Market Forecast in India to 2016 Brochure More information from http://www.researchandmarkets.com/reports/1772777/ IP VPN Market Forecast in India to 2016 Description: This databook analyzes and provides forecasts for the Internet Protocol-enabled

More information

Global Physical Security Information Management Market Assessment

Global Physical Security Information Management Market Assessment Brochure More information from http://www.researchandmarkets.com/reports/2776367/ Global Physical Security Information Management Market Assessment Description: The physical security information management

More information

Strategic Analysis of Fleet Vehicle Leasing Market in Ireland

Strategic Analysis of Fleet Vehicle Leasing Market in Ireland Brochure More information from http://www.researchandmarkets.com/reports/3629286/ Strategic Analysis of Fleet Vehicle Leasing Market in Ireland Description: The objective of this study is to provide a

More information

Insights into Big Data and Analytics in Brazil

Insights into Big Data and Analytics in Brazil Brochure More information from http://www.researchandmarkets.com/reports/2733708/ Insights into Big Data and Analytics in Brazil Description: Big Data has yet to take hold in Brazil, but some verticals

More information

SharePoint 2010 Business Intelligence 24-Hour Trainer

SharePoint 2010 Business Intelligence 24-Hour Trainer Brochure More information from http://www.researchandmarkets.com/reports/2247216/ SharePoint 2010 Business Intelligence 24-Hour Trainer Description: Learn to build and deliver SharePoint BI applications

More information

Western European Storage Area Network (SAN) Market

Western European Storage Area Network (SAN) Market Brochure More information from http://www.researchandmarkets.com/reports/365481/ Western European Storage Area Network (SAN) Market Description: The Internet, electronic commerce, data warehousing, enterprise

More information

The Fundamentals of Organizational Behavior. What Managers Need to Know

The Fundamentals of Organizational Behavior. What Managers Need to Know Brochure More information from http://www.researchandmarkets.com/reports/2213258/ The Fundamentals of Organizational Behavior. What Managers Need to Know Description: This primer offers MBA and other advanced

More information

The Practical Guide to Project Management Documentation

The Practical Guide to Project Management Documentation Brochure More information from http://www.researchandmarkets.com/reports/2217583/ The Practical Guide to Project Management Documentation Description: Project Management The one stop resource for project

More information

2013 U.S. Telephone Answering Service Industry-Industry & Market Report

2013 U.S. Telephone Answering Service Industry-Industry & Market Report Brochure More information from http://www.researchandmarkets.com/reports/2524214/ 2013 U.S. Telephone Answering Service Industry-Industry & Market Report Description: The U.S. Telephone Answering Service

More information

Microsoft Dynamics CRM 2011 Administration Bible

Microsoft Dynamics CRM 2011 Administration Bible Brochure More information from http://www.researchandmarkets.com/reports/1543890/ Microsoft Dynamics CRM 2011 Administration Bible Description: An in-depth, expert guide to Microsoft Dynamics CRM 2011

More information

U.S. Database Management System Software by Vertical Market

U.S. Database Management System Software by Vertical Market Brochure More information from http://www.researchandmarkets.com/reports/365475/ U.S. Database Management System Software by Vertical Market Description: Driven by the inherent need for businesses of all

More information

Analysis of the North American Automotive Wire and Cable Materials Market: Price-performance Index of Materials Will be Key in Driving Growth

Analysis of the North American Automotive Wire and Cable Materials Market: Price-performance Index of Materials Will be Key in Driving Growth Brochure More information from http://www.researchandmarkets.com/reports/2569033/ Analysis of the North American Automotive Wire and Cable Materials Market: Price-performance Index of Materials Will be

More information

Estonia: Clay Tiles And Roofing - Market Report. Analysis And Forecast To 2020

Estonia: Clay Tiles And Roofing - Market Report. Analysis And Forecast To 2020 Brochure More information from http://www.researchandmarkets.com/reports/3115162/ Estonia: Clay Tiles And Roofing - Market Report. Analysis And Forecast To 2020 Description: The report provides an in-depth

More information

North American Video Conferencing Hosted and Managed Services Market: Growing Amidst a Long-term Transition and Economic Turbulence

North American Video Conferencing Hosted and Managed Services Market: Growing Amidst a Long-term Transition and Economic Turbulence Brochure More information from http://www.researchandmarkets.com/reports/2498908/ North American Video Conferencing Hosted and Managed Services Market: Growing Amidst a Long-term Transition and Economic

More information

Essentials of Working Capital Management. Essentials Series

Essentials of Working Capital Management. Essentials Series Brochure More information from http://www.researchandmarkets.com/reports/1596855/ Essentials of Working Capital Management. Essentials Series Description: A comprehensive primer for executives and managers

More information

Professional Alfresco. Practical Solutions for Enterprise Content Management

Professional Alfresco. Practical Solutions for Enterprise Content Management Brochure More information from http://www.researchandmarkets.com/reports/2251636/ Professional Alfresco. Practical Solutions for Enterprise Content Management Description: A timely and authoritative guide,

More information

Chicago Bridge & Iron Company N.V. - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

Chicago Bridge & Iron Company N.V. - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2824799/ Chicago Bridge & Iron Company N.V. - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description:

More information

General Dynamics Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

General Dynamics Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2824634/ General Dynamics Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description:

More information

Brochure More information from http://www.researchandmarkets.com/reports/3709479/

Brochure More information from http://www.researchandmarkets.com/reports/3709479/ Brochure More information from http://www.researchandmarkets.com/reports/3709479/ CCJ - Cameco Corp Company Profile - Business Strategies, Outlook Statement, Business Description, Products and Services,

More information

Global Big Data Analytics Market

Global Big Data Analytics Market Brochure More information from http://www.researchandmarkets.com/reports/2872293/ Global Big Data Analytics Market Description: This report classifies all analytics solutions into 2 broad segments, namely

More information

Saudi Cable Company Company Profile - Business Description, Strategies and SWOT Analysis

Saudi Cable Company Company Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2662464/ Saudi Cable Company Company Profile - Business Description, Strategies and SWOT Analysis Description: Saudi Cable Company

More information

Teach Yourself VISUALLY PowerPoint 2013. Teach Yourself VISUALLY (Tech)

Teach Yourself VISUALLY PowerPoint 2013. Teach Yourself VISUALLY (Tech) Brochure More information from http://www.researchandmarkets.com/reports/2330335/ Teach Yourself VISUALLY PowerPoint 2013. Teach Yourself VISUALLY (Tech) Description: Are you a visual learner? Do you prefer

More information

ACO Hardware in the United States

ACO Hardware in the United States Brochure More information from http://www.researchandmarkets.com/reports/2992427/ ACO Hardware in the United States Description: The report consist of a main PDF file of about 450 pages, about 9500 web

More information

Genesis Oil & Gas Consultants Ltd Company Profile - Business Description, Strategies and SWOT Analysis

Genesis Oil & Gas Consultants Ltd Company Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2661709/ Genesis Oil & Gas Consultants Ltd Company Profile - Business Description, Strategies and SWOT Analysis Description: Genesis

More information

Predictive Analytics for Human Resources. Wiley and SAS Business Series

Predictive Analytics for Human Resources. Wiley and SAS Business Series Brochure More information from http://www.researchandmarkets.com/reports/2766283/ Predictive Analytics for Human Resources. Wiley and SAS Business Series Description: Create and run a human resource analytics

More information

Premiere Global Services, Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis

Premiere Global Services, Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis Brochure More information from http://www.researchandmarkets.com/reports/2661443/ Premiere Global Services, Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis Description:

More information

Enbridge Energy Management, L.L.C. Company Profile - Business Description, Strategies and SWOT Analysis

Enbridge Energy Management, L.L.C. Company Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2662173/ Enbridge Energy Management, L.L.C. Company Profile - Business Description, Strategies and SWOT Analysis Description: Enbridge

More information

The Laboratory Quality Assurance System. A Manual of Quality Procedures and Forms. 3rd Edition

The Laboratory Quality Assurance System. A Manual of Quality Procedures and Forms. 3rd Edition Brochure More information from http://www.researchandmarkets.com/reports/2174575/ The Laboratory Quality Assurance System. A Manual of Quality Procedures and Forms. 3rd Edition Description: Both the 17025:1999

More information

Analysis of the Brazilian Data Center Power Supplies Market

Analysis of the Brazilian Data Center Power Supplies Market Brochure More information from http://www.researchandmarkets.com/reports/2681385/ Analysis of the Brazilian Data Center Power Supplies Market Description: IT Infrastructure Outsourcing Services Compel

More information

Risk and Financial Management in Construction

Risk and Financial Management in Construction Brochure More information from http://www.researchandmarkets.com/reports/687060/ Risk and Financial Management in Construction Description: In today s climate the need for a closer understanding of the

More information

VASCO Data Security International, Inc Company Profile - Business Description, Strategies, SWOT and Financial Analysis

VASCO Data Security International, Inc Company Profile - Business Description, Strategies, SWOT and Financial Analysis Brochure More information from http://www.researchandmarkets.com/reports/2661539/ VASCO Data Security International, Inc Company Profile - Business Description, Strategies, SWOT and Financial Analysis

More information

Corinthian Colleges Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis

Corinthian Colleges Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis Brochure More information from http://www.researchandmarkets.com/reports/2658553/ Corinthian Colleges Inc. Company Profile - Business Description, Strategies, SWOT and Financial Analysis Description: Corinthian

More information

General Cable Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

General Cable Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2823974/ General Cable Corporation - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description: Company

More information

Cable TV Services: Worldwide Video and High-Speed Data Subscribers

Cable TV Services: Worldwide Video and High-Speed Data Subscribers Brochure More information from http://www.researchandmarkets.com/reports/578017/ Cable TV Services: Worldwide Video and High-Speed Data Subscribers Description: In addition to basic video services, cable

More information

Miclyn Express Offshore Limited Company Profile - Business Description, Strategies and SWOT Analysis

Miclyn Express Offshore Limited Company Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2658223/ Miclyn Express Offshore Limited Company Profile - Business Description, Strategies and SWOT Analysis Description: Miclyn

More information

Enterprise VoIP - Future Potential of the Indian Market for Managed VoIP Solutions

Enterprise VoIP - Future Potential of the Indian Market for Managed VoIP Solutions Brochure More information from http://www.researchandmarkets.com/reports/2966201/ Enterprise VoIP - Future Potential of the Indian Market for Managed VoIP Solutions Description: The study provides comprehensive

More information

London Stock Exchange Group PLC Company Profile - Business Description, Strategies, SWOT and Financial Analysis

London Stock Exchange Group PLC Company Profile - Business Description, Strategies, SWOT and Financial Analysis Brochure More information from http://www.researchandmarkets.com/reports/2659707/ London Stock Exchange Group PLC Company Profile - Business Description, Strategies, SWOT and Financial Analysis Description:

More information

Mangalore Electricity Supply Company LimitedCompany Profile - Business Description, Strategies and SWOT Analysis

Mangalore Electricity Supply Company LimitedCompany Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2657434/ Mangalore Electricity Supply Company LimitedCompany Profile - Business Description, Strategies and SWOT Analysis Description:

More information

U.S. Mobile Device Management (MDM) Market 2012: Solving the Many Challenges in Enterprise Mobility

U.S. Mobile Device Management (MDM) Market 2012: Solving the Many Challenges in Enterprise Mobility Brochure More information from http://www.researchandmarkets.com/reports/2258613/ U.S. Mobile Device Management (MDM) Market 2012: Solving the Many Challenges in Enterprise Mobility Description: Mobile

More information

Epidemiology Foundations. The Science of Public Health. Public Health/Epidemiology and Biostatistics

Epidemiology Foundations. The Science of Public Health. Public Health/Epidemiology and Biostatistics Brochure More information from http://www.researchandmarkets.com/reports/2241448/ Epidemiology Foundations. The Science of Public Health. Public Health/Epidemiology and Biostatistics Description: Written

More information

Port of Melbourne CorporationCompany Profile - Business Description, Strategies and SWOT Analysis

Port of Melbourne CorporationCompany Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2657547/ Port of Melbourne CorporationCompany Profile - Business Description, Strategies and SWOT Analysis Description: Port of

More information

Toys and Games in Hungary

Toys and Games in Hungary Brochure More information from http://www.researchandmarkets.com/reports/359387/ Description: The report offers a comprehensive guide to the size and shape of the market at a national level. It provides

More information

Cloud Infrastructure Testing and Cloud-based Application Performance Monitoring Market

Cloud Infrastructure Testing and Cloud-based Application Performance Monitoring Market Brochure More information from http://www.researchandmarkets.com/reports/2858629/ Cloud Infrastructure Testing and Cloud-based Application Performance Monitoring Market Description: With the significant

More information

North America Insurance Market Outlook to 2015 - US Insurance Market Headstarting the Lost Momentum

North America Insurance Market Outlook to 2015 - US Insurance Market Headstarting the Lost Momentum Brochure More information from http://www.researchandmarkets.com/reports/1545614/ North America Insurance Market Outlook to 2015 - US Insurance Market Headstarting the Lost Momentum Description: The Report

More information

Onboarding. How to Get Your New Employees Up to Speed in Half the Time

Onboarding. How to Get Your New Employees Up to Speed in Half the Time Brochure More information from http://www.researchandmarkets.com/reports/1093499/ Onboarding. How to Get Your New Employees Up to Speed in Half the Time Description: A guide to getting new employees recruited,

More information

Trends and Opportunities in the UAE Life Insurance Industry to 2016: Market Profile

Trends and Opportunities in the UAE Life Insurance Industry to 2016: Market Profile Brochure More information from http://www.researchandmarkets.com/reports/2403273/ Trends and Opportunities in the UAE Life Insurance Industry to 2016: Market Profile Description: Synopsis The report provides

More information

EMR - Emerson Electric CoCompany Profile - Business Description, Strategies and SWOT Analysis

EMR - Emerson Electric CoCompany Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2662168/ EMR - Emerson Electric CoCompany Profile - Business Description, Strategies and SWOT Analysis Description: EMR - Emerson

More information

Beginning Mobile Application Development in the Cloud

Beginning Mobile Application Development in the Cloud Brochure More information from http://www.researchandmarkets.com/reports/2050480/ Beginning Mobile Application Development in the Cloud Description: Learn how to build apps for mobile devices on Cloud

More information

North American Premises Wiring System Markets

North American Premises Wiring System Markets Brochure More information from http://www.researchandmarkets.com/reports/358348/ North American Premises Wiring System Markets Description: The North American premises wiring markets are primed for significant

More information

Cloud Infrastructure as a Service Market Update 2015

Cloud Infrastructure as a Service Market Update 2015 Brochure More information from http://www.researchandmarkets.com/reports/3143043/ Cloud Infrastructure as a Service Market Update 2015 Description: This study analyzes the current IaaS market, and forecasts

More information

Business Intelligence. Data Mining and Optimization for Decision Making

Business Intelligence. Data Mining and Optimization for Decision Making Brochure More information from http://www.researchandmarkets.com/reports/2325743/ Business Intelligence. Data Mining and Optimization for Decision Making Description: Business intelligence is a broad category

More information

Northeast Utilities: Corporate Analysis

Northeast Utilities: Corporate Analysis Brochure More information from http://www.researchandmarkets.com/reports/656767/ Northeast Utilities: Corporate Analysis Description: This company profile is a premium company information product offering

More information

Varma Mutual Pension Insurance Company - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

Varma Mutual Pension Insurance Company - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2824365/ Varma Mutual Pension Insurance Company - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description:

More information

Riemser Arzneimittel AG - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

Riemser Arzneimittel AG - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2346897/ Riemser Arzneimittel AG - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description: Company

More information

Website Design and Development. 100 Questions to Ask Before Building a Website

Website Design and Development. 100 Questions to Ask Before Building a Website Brochure More information from http://www.researchandmarkets.com/reports/2250695/ Website Design and Development. 100 Questions to Ask Before Building a Website Description: A helpful book-and-video package

More information

Impact of Cybersecurity Innovations in Key Sectors (Technical Insights)

Impact of Cybersecurity Innovations in Key Sectors (Technical Insights) Brochure More information from http://www.researchandmarkets.com/reports/2986815/ Impact of Cybersecurity Innovations in Key Sectors (Technical Insights) Description: The growing number of cyber attacks

More information

2015 U.S. Life Insurance Carriers Industry-Industry & Market Report

2015 U.S. Life Insurance Carriers Industry-Industry & Market Report Brochure More information from http://www.researchandmarkets.com/reports/3070875/ 2015 U.S. Life Insurance Carriers Industry-Industry & Market Report Description: The 2015 U.S. Life Insurance Carriers

More information

Groupe Caisse d'epargne - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

Groupe Caisse d'epargne - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2823722/ Groupe Caisse d'epargne - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description: Company

More information

A Project Manager's Book of Forms. A Companion to the PMBOK Guide. 2nd Edition

A Project Manager's Book of Forms. A Companion to the PMBOK Guide. 2nd Edition Brochure More information from http://www.researchandmarkets.com/reports/2326795/ A Project Manager's Book of Forms. A Companion to the PMBOK Guide. 2nd Edition Description: A compendium of ready made

More information

Compagnie Ivoirienne d'electricite Company Profile - Business Description, Strategies and SWOT Analysis

Compagnie Ivoirienne d'electricite Company Profile - Business Description, Strategies and SWOT Analysis Brochure More information from http://www.researchandmarkets.com/reports/2663021/ Compagnie Ivoirienne d'electricite Company Profile - Business Description, Strategies and SWOT Analysis Description: Compagnie

More information

Grupo PRISA - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report

Grupo PRISA - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Brochure More information from http://www.researchandmarkets.com/reports/2823953/ Grupo PRISA - Mergers & Acquisitions (M&A), Partnerships & Alliances and Investment Report Description: Company Mergers

More information