SlideShare a Scribd company logo
Building 3rd Party
Widgets with JavaScript
Jonathan Julian
@jonathanjulian
Tuesday, January 31, 12
They’re Everywhere
• Tweet button
• Facebook Like button
• Google +1 button
Tuesday, January 31, 12
How do they work?
• Website owner pastes JavaScript
code onto their site
• Code runs when page is loaded
• Widget communicates back to the
application, not the hosting site
• If logged-in, user gets features
Tuesday, January 31, 12
What about the Same
Origin Policy?
• JSONP
• Alternatives: use CORS or HTML5
PostMessage
• Send data to the server as query
params in JSONP
Tuesday, January 31, 12
Issues
• You might need to load JS libs
that the host has not loaded
• You want your own style
• Avoid namespace collisions
Tuesday, January 31, 12
Solutions
• Load the JS you need manually
• Load a reset stylesheet along with
your own css
• Keep your code namespaced by
running it in an anonymous
function
Tuesday, January 31, 12
Server-side
• Note that the widget js might
actually be a dynamic action
• You may choose to serve JSON, or
straight HTML, depending on the
widget
Tuesday, January 31, 12
github.com/jjulian/
example_javascript_widget
Tuesday, January 31, 12
Example
• Server: Apache/PHP on 8080
• The Widget: /widget.js
• Style: /widget.css
• JSONP submissions:
/widget_submit.php
• Widget uses jQuery, cleanslate.css, and
json2.js
• github.com/jjulian/example_javascript_widget
Tuesday, January 31, 12
bit.ly/jswidget
Tuesday, January 31, 12
References
• http://alexmarandon.com/
articles/web_widget_jquery/
• http://shortmail.com/widgets/
compose-widget.html
Tuesday, January 31, 12

More Related Content

PPTX
An (Updated) Introduction to Gutenberg
PDF
Build a Web App with JavaScript and jQuery (5:18:17, Los Angeles)
PDF
A Web Widget Platform
PDF
CRM114 - Classification made easy
PDF
Rendering Views in JavaScript - "The New Web Architecture"
PDF
Introduction To Delayed Job
PDF
2024 Trend Updates: What Really Works In SEO & Content Marketing
PDF
Storytelling For The Web: Integrate Storytelling in your Design Process
An (Updated) Introduction to Gutenberg
Build a Web App with JavaScript and jQuery (5:18:17, Los Angeles)
A Web Widget Platform
CRM114 - Classification made easy
Rendering Views in JavaScript - "The New Web Architecture"
Introduction To Delayed Job
2024 Trend Updates: What Really Works In SEO & Content Marketing
Storytelling For The Web: Integrate Storytelling in your Design Process

Recently uploaded (20)

PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
Machine Learning_overview_presentation.pptx
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Programs and apps: productivity, graphics, security and other tools
PPTX
Cloud computing and distributed systems.
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Empathic Computing: Creating Shared Understanding
PDF
Electronic commerce courselecture one. Pdf
PPTX
Spectroscopy.pptx food analysis technology
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
Big Data Technologies - Introduction.pptx
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PPTX
A Presentation on Artificial Intelligence
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Approach and Philosophy of On baking technology
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
A comparative analysis of optical character recognition models for extracting...
Machine Learning_overview_presentation.pptx
NewMind AI Weekly Chronicles - August'25-Week II
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Programs and apps: productivity, graphics, security and other tools
Cloud computing and distributed systems.
Per capita expenditure prediction using model stacking based on satellite ima...
Empathic Computing: Creating Shared Understanding
Electronic commerce courselecture one. Pdf
Spectroscopy.pptx food analysis technology
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
The AUB Centre for AI in Media Proposal.docx
Big Data Technologies - Introduction.pptx
Spectral efficient network and resource selection model in 5G networks
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
A Presentation on Artificial Intelligence
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Approach and Philosophy of On baking technology
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Ad
Ad

Building 3rd party widgets with JavaScript