SlideShare a Scribd company logo
A jQuery Primer for SharePoint
Marc D Anderson
Who Is Marc?
• Co-Founder and President of Sympraxis Consulting LLC,
located in the Boston suburb of Newton, MA, USA.
Sympraxis focuses on enabling collaboration throughout the
enterprise using the SharePoint application platform.
• More than 30 years of experience in technology professional services and software
development. Over a wide-ranging career in consulting as well as line manager
positions, Marc has proven himself as a problem solver and leader who can solve
difficult technology problems for organizations across a wide variety of industries
and organization sizes.
• Three-time awardee of the Microsoft MVP award for SharePoint Server (2011,
2012, 2013).
What is jQuery?
is
Getting Started
• Add references to the jQuery library
• References can be in:
– Master page
– Page layout
– Individual aspx pages
• jQuery and other .js files can be stored in:
– Document Library
– _layouts folder
– Retrieved from a CDN
• Use “protocol-less” src and href
Script from CDNs
Referencing jQuery, jQueryUI, and SPServices from CDNs – Revisited
http://sympmarc.com/2013/02/07/referencing-jquery-jqueryui-and-spservices-from-cdns-revisited/
Note the protocol-less
references
HTML Elements
Powered by <a href="http://office365.com">Office365</a>.
Opening tag Closing tag
Attribute Value
<input id="my-cbox" class="foo bar" type="checkbox" checked />
Element Self-closing tag
Id Attribute PropertyValueClass(es)
What is the Document Object Model
(DOM)?
• The DOM starts as the page’s markup (HTML) as
delivered to the browser by the server: View Source
• Styled by the CSS which gives the page its look and feel
• The DOM is acted upon by any script in the page
• View Source is *not* the live DOM
What Can We Do With the DOM?
• Add or remove CSS classes
• Create new or remove existing HTML elements
• Change HTML element attributes
• Bind to events
• And so much more…
The DOM is HTML, which is XML, which is data!
The Basic Idea of jQuery
$(".article").hide();
Select something
Do something!
Remember this from CSS?
jQuery’s Document Ready
$(document).ready(function() {
// do something
});
$(function() {
// do something
});
jQuery(function($) {
// do something
});
jQuery Documentation:
Your Friend
• The jQuery documentation is used to be
arranged to help you
• What you need to know is was arranged
sequentially from top to bottom
jQuery Selectors
• Selectors are the most important
jQuery concept
• Selecting the right DOM object(s)
is half the battle
• Selectors return a jQuery object
containing a collection of DOM
objects: 1 to n matching elements
Selectors for SharePoint
$("div[id$='QuickLaunchNavigationManager']
li:first span.menu-item-text")
Selectors for SharePoint
$("td.ms-list-addnew a:eq(1)")
Useful jQuery Selector Tricks
$("[id='foo']"); // Equal to
$("[id!='foo']"); // Not equal to
$("[id^='foo']"); // Starts with
$("[id$='foo']"); // Ends with
$("[id*='foo']"); // Contains
$("[id~='foo']"); // Contains word
$("[id|='foo']"); // Contains prefix
$("[id]"); // Has attribute
$("[id][class][style]"); // Has all
•.NET Applications like
SharePoint generate some long
and ugly markup and IDs
id="ctl00$ctl41$g_26ee1140_76aa_4ec0_8
8c4_11e7e96480f4$ctl00$ctl02$ctl00$ctl
01$ctl00$ContentTypeChoice"
•These selector tricks really help
jQuery Attributes
• Once you’ve selected the right DOM element, you can
use jQuery to get or set its attributes
• As of jQuery 1.6:
– the .prop() method provides a way to explicitly get/set
property values (checked, selected, or disabled)
– .attr() gets/sets attribute values (class, style, etc.)
Example with SharePoint Attributes: Get
$("select[title='Region']").val();
$("select[title='Region'] option:selected").text();
Example with SharePoint Attributes: Set
$("select[title='Region']").val(5);
$("select[title='Region'] option:selected").text("boo");
Traversing
• Traversing lets you move around the
DOM based on your initial selection
• This is how you get at elements which
are difficult to select directly
• Ancestry matters in XML / HTML
Traversing Down:
Find an Element’s Specific Children
$("div[id$='QuickLaunchNavigationManager'] li:first")
.parent().find("li:eq(3) li:first .menu-item-text");
Traversal Example from SPServices
var possibleValues = $("select[ID$='SelectCandidate'][Title^='" +
opt.multiSelectColumn + " ']");
var selectedValues =
possibleValues.closest("span").find("select[ID$='SelectResult'][Title^='" +
opt.multiSelectColumn + " ']");
SelectCandidate SelectResult
<select
name="ctl00$m$g_e845e690_00da_428f_afbd_fbe804
787763$ctl00$ctl04$ctl07$ctl00$ctl00$ctl04$ctl
00$ctl00$SelectResult" title="City selected
values"
id="ctl00_m_g_e845e690_00da_428f_afbd_fbe80478
7763_ctl00_ctl04_ctl07_ctl00_ctl00_ctl04_ctl00
_ctl00_SelectResult" style="width: 162px;"
onkeydown="GipHandleHScroll(event)"
ondblclick="GipRemoveSelectedItems(ctl00_m_g_e
845e690_00da_428f_afbd_fbe804787763_ctl00_ctl0
4_ctl07_ctl00_ctl00_ctl04_ctl00_ctl00_MultiLoo
kupPicker_m); return false"
onchange="GipSelectResultItems(ctl00_m_g_e845e
690_00da_428f_afbd_fbe804787763_ctl00_ctl04_ct
l07_ctl00_ctl00_ctl04_ctl00_ctl00_MultiLookupP
icker_m);" size="20" multiple="">
<select
name="ctl00$m$g_e845e690_00da_428f_afbd_fbe8
04787763$ctl00$ctl04$ctl07$ctl00$ctl00$ctl04
$ctl00$ctl00$SelectCandidate" title="City
possible values"
id="ctl00_m_g_e845e690_00da_428f_afbd_fbe804
787763_ctl00_ctl04_ctl07_ctl00_ctl00_ctl04_c
tl00_ctl00_SelectCandidate" style="width:
162px;" onkeydown="GipHandleHScroll(event)"
ondblclick="GipAddSelectedItems(ctl00_m_g_e8
45e690_00da_428f_afbd_fbe804787763_ctl00_ctl
04_ctl07_ctl00_ctl00_ctl04_ctl00_ctl00_Multi
LookupPicker_m); return false"
onchange="GipSelectCandidateItems(ctl00_m_g_
e845e690_00da_428f_afbd_fbe804787763_ctl00_c
tl04_ctl07_ctl00_ctl00_ctl04_ctl00_ctl00_Mul
tiLookupPicker_m);" size="350" multiple="">
Manipulation
• Once you’ve gotten the right
element(s), you can:
– Manipulate their attributes
– Set properties
– Change their contents (e.g.,
innerHTML)
Events
• jQuery’s events enable you to work
with all of the standard JavaScript
events, plus create your own
• Used to create behaviors that take
effect when the user interacts with
the page in the browser, and to
further manipulate those behaviors
jQuery Events
$(".article").click(function(){
// do something
});
$(".article").mouseover(function(){
// do something
});
jQuery Events
$("h3.ms-WPTitle").click(function() {
alert("Go directly to the list.");
});
$("h3.ms-WPTitle").hover(function() {
$(this).css("background-color", "fuchsia");
$(this).data("title", $(this).html());
$(this).html("Click to visit");
},function() {
$(this).css("background-color", "white");
$(this).html($(this).data("title"));
});
Effects
• jQuery gives you a set of effects you can
use to change the elements in the page
• Effects can be:
– Visual: Change how the user sees existing
elements with animations
– Manipulative: Change where and how
elements are shown by moving them around
in the DOM
jQuery Effects Examples
$(".article").hide();
$(".article").slideUp();
$(".article").fadeOut("slow");
$(".article").animate({
"font-size": "24px",
"background-color": "red"
}, 5000);
Putting It Together:
Toggling Web Part Visibility
var wpTitles = $("h3.ms-WPTitle");
// Remove the links on the Web Part Titles
wpTitles.find("nobr").unwrap("<a></a>");
// Show the pointer on mouseover
wpTitles.css("cursor", "pointer");
// Add click behavior that toggles the visibility
wpTitles.click(function() {
$(this).closest("table").closest("tr").next().slideToggle();
});
Putting It Together:
Arranging Checkboxes
// Collect all of the choices
$(thisFormField).find("tr").each(function() {
columnOptions.push($(this).html());
});
out = "<TR>";
// Add all of the options to the out string
for(i=0; i < columnOptions.length; i++) {
out += columnOptions[i];
// If we've already got perRow columnOptions in the row,
// close off the row
if((i+1) % opt.perRow === 0) {
out += "</TR><TR>";
}
}
out += "</TR>";
// Remove the existing rows...
$(thisFormField).find("tr").remove();
// ...and append the out string
$(thisFormField).find("table").append(out);
jQueryUI Takes Effects Further
$(".article").tabs();
$("input").autocomplete();
$("#infoBox").dialog();
$("table.sortable").sortable();
…and many more
jQuery Plugins Abound!
• If you want to do something sophisticated,
look for an existing plugin
• Due diligence – some of the plugins aren’t
written very well
• Beware of “plugin sprawl”
More Useful Tools
• JSLint
– http://jslint.com/
– Checks your script against accepted standards
– “Warning: JSLint will hurt your feelings.”
• JSHint
– http://jshint.com/
– Like JSLint, but a little more forgiving
– More jQuery aware
• JavaScript Compressorator
– http://compressorrater.thruhere.net/
– Minifies script files using multiple methods
QUESTIONS?
Contact Information
eMail marc.anderson@sympraxisconsulting.com
Blog http://sympmarc.com
SPServices http://spservices.codeplex.com
SPXSLT http://spxslt.codeplex.com
Books http://sympmarc.com/books
The Middle Tier Manifesto http://bit.ly/middletier

More Related Content

PPTX
Content by query web part
PPTX
The SharePoint & jQuery Guide
PPTX
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
PPTX
SharePoint Performance
PPTX
Introduction to using jQuery with SharePoint
PPTX
SharePoint & jQuery Guide - SPSTC 5/18/2013
PPTX
The SharePoint & jQuery Guide - Updated 1/14/14
PPTX
SPTechCon - Share point and jquery essentials
Content by query web part
The SharePoint & jQuery Guide
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
SharePoint Performance
Introduction to using jQuery with SharePoint
SharePoint & jQuery Guide - SPSTC 5/18/2013
The SharePoint & jQuery Guide - Updated 1/14/14
SPTechCon - Share point and jquery essentials

What's hot (20)

PPTX
Transform SharePoint default list forms with HTML, CSS and JavaScript
PPTX
SPTechCon DevDays - SharePoint & jQuery
PPTX
SharePoint & jQuery Guide - SPSNashville 2014
PPTX
2/15/2012 - Wrapping Your Head Around the SharePoint Beast
PPTX
SPSNH 2014 - The SharePoint & jQueryGuide
PPTX
TulsaTechFest - Maximize SharePoint UX with free jQuery libraries
PPTX
SPSDenver - SharePoint & jQuery - What I wish I would have known
PPTX
SPTechCon Boston 2015 - Utilizing jQuery in SharePoint
PPTX
SPTechCon Dev Days - Third Party jQuery Libraries
PPTX
SharePoint Saturday St. Louis - SharePoint & jQuery
PPTX
Transform SharePoint List Forms with HTML and CSS
PPTX
SharePoint and the User Interface with JavaScript
PPTX
SPTechCon Boston 2015 - Overcoming SharePoint Limitations
PPTX
Introduction to StratusForms #SayNoToInfoPath
PPTX
Intro to SharePoint Web Services
PPTX
(Updated) SharePoint & jQuery Guide
PPTX
Using jQuery to Maximize Form Usability
PPTX
SPTechCon 2014 How to develop and debug client side code in SharePoint
PPTX
A Power User's Intro to jQuery Awesomeness in SharePoint
PPTX
Content query web part – get it all in one place and style it!
Transform SharePoint default list forms with HTML, CSS and JavaScript
SPTechCon DevDays - SharePoint & jQuery
SharePoint & jQuery Guide - SPSNashville 2014
2/15/2012 - Wrapping Your Head Around the SharePoint Beast
SPSNH 2014 - The SharePoint & jQueryGuide
TulsaTechFest - Maximize SharePoint UX with free jQuery libraries
SPSDenver - SharePoint & jQuery - What I wish I would have known
SPTechCon Boston 2015 - Utilizing jQuery in SharePoint
SPTechCon Dev Days - Third Party jQuery Libraries
SharePoint Saturday St. Louis - SharePoint & jQuery
Transform SharePoint List Forms with HTML and CSS
SharePoint and the User Interface with JavaScript
SPTechCon Boston 2015 - Overcoming SharePoint Limitations
Introduction to StratusForms #SayNoToInfoPath
Intro to SharePoint Web Services
(Updated) SharePoint & jQuery Guide
Using jQuery to Maximize Form Usability
SPTechCon 2014 How to develop and debug client side code in SharePoint
A Power User's Intro to jQuery Awesomeness in SharePoint
Content query web part – get it all in one place and style it!
Ad

Viewers also liked (8)

PDF
Using Web Services and the Data View Web Part to combine lists from multiple ...
PPTX
SharePoint Tech Fest Houston 2015 - Creating a Great User Experience in Share...
PPTX
SharePoint and jQuery Essentials
PPTX
Oslo SP User Group - Content Types - Love Them or Lose It
PPTX
SharePoint Evolutions 2015 - Moving from SOAP to REST
PPTX
Unity Connect Haarlem 2016 - The Lay of the Land of Client-Side Development c...
PDF
Learning jQuery in 30 minutes
PDF
jQuery Essentials
Using Web Services and the Data View Web Part to combine lists from multiple ...
SharePoint Tech Fest Houston 2015 - Creating a Great User Experience in Share...
SharePoint and jQuery Essentials
Oslo SP User Group - Content Types - Love Them or Lose It
SharePoint Evolutions 2015 - Moving from SOAP to REST
Unity Connect Haarlem 2016 - The Lay of the Land of Client-Side Development c...
Learning jQuery in 30 minutes
jQuery Essentials
Ad

Similar to SEF2013 - A jQuery Primer for SharePoint (20)

PPTX
SPSTC - SharePoint & jQuery Essentials
PPTX
SharePoint Cincy 2012 - jQuery essentials
PPTX
Jquery fundamentals
PDF
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
PDF
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
PDF
Introduction to jQuery
PPTX
Jquery Complete Presentation along with Javascript Basics
PDF
Django introduction @ UGent
PDF
jQuery Rescue Adventure
PPTX
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
PPT
J query presentation
PPT
J query presentation
PPT
J query module1
PDF
jQuery for beginners
PDF
bcgr3-jquery
PDF
bcgr3-jquery
PPTX
How to increase Performance of Web Application using JQuery
PPTX
jQuery besic
PPTX
jQuery Presentasion
SPSTC - SharePoint & jQuery Essentials
SharePoint Cincy 2012 - jQuery essentials
Jquery fundamentals
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
Introduction to jQuery
Jquery Complete Presentation along with Javascript Basics
Django introduction @ UGent
jQuery Rescue Adventure
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
J query presentation
J query presentation
J query module1
jQuery for beginners
bcgr3-jquery
bcgr3-jquery
How to increase Performance of Web Application using JQuery
jQuery besic
jQuery Presentasion

More from Marc D Anderson (20)

PPTX
SPC2019 - Managing Content Types in the Modern World
PPTX
ECS2019 - Managing Content Types in the Modern World
PPTX
Rencontre Groupe d'usagers SharePoint Montreal - The Next Great Migration - C...
PPTX
RISPUG - Top Form - Using PowerApps to Replace List Forms
PPTX
SPCNA 2018 - Top Form - Using PowerApps to Replace List Forms
PPTX
SPCNA 2018 - The Next Great Migration - Classic to Modern
PPTX
SPS New York City 2017 - The Lay of the Land of Client-Side Development circa...
PPTX
ECS Zagreb 2017 - Content Types - Love Them or Lose It
PPTX
SPS Monaco 2017 - The Lay of the Land of Client-Side Development circa 2017
PPTX
Lions Tigers Teams - SPTechCon Austin 2017
PPTX
SPTechCon Boston 2016 - Creating a Great User Experience in SharePoint
PPTX
SPTechCon Boston 2016 - Content Types - Love Them or Lose It
PPTX
SPC Adriatics 2016 - Creating a Great User Experience in SharePoint
PPTX
SPC Adriatics 2016 - Alternative Approaches to Solution Development in Office...
PPTX
SharePointFest Konferenz 2016 - Creating a Great User Experience in SharePoint
PPTX
SharePointFest Konferenz 2016 - Alternative Approaches to Solution Developmen...
PPTX
SPTechCon Austin 2016 - Content Types-Love Them or Lose It
PPTX
SPTechCon Austin 2016 - Creating a Great User Experience in SharePoint
PPTX
SharePoint Tech Fest Houston 2015 - Moving from SOAP to REST
PPTX
SharePoint Saturday CT 2015 - Content Types: Love Them or Lose It
SPC2019 - Managing Content Types in the Modern World
ECS2019 - Managing Content Types in the Modern World
Rencontre Groupe d'usagers SharePoint Montreal - The Next Great Migration - C...
RISPUG - Top Form - Using PowerApps to Replace List Forms
SPCNA 2018 - Top Form - Using PowerApps to Replace List Forms
SPCNA 2018 - The Next Great Migration - Classic to Modern
SPS New York City 2017 - The Lay of the Land of Client-Side Development circa...
ECS Zagreb 2017 - Content Types - Love Them or Lose It
SPS Monaco 2017 - The Lay of the Land of Client-Side Development circa 2017
Lions Tigers Teams - SPTechCon Austin 2017
SPTechCon Boston 2016 - Creating a Great User Experience in SharePoint
SPTechCon Boston 2016 - Content Types - Love Them or Lose It
SPC Adriatics 2016 - Creating a Great User Experience in SharePoint
SPC Adriatics 2016 - Alternative Approaches to Solution Development in Office...
SharePointFest Konferenz 2016 - Creating a Great User Experience in SharePoint
SharePointFest Konferenz 2016 - Alternative Approaches to Solution Developmen...
SPTechCon Austin 2016 - Content Types-Love Them or Lose It
SPTechCon Austin 2016 - Creating a Great User Experience in SharePoint
SharePoint Tech Fest Houston 2015 - Moving from SOAP to REST
SharePoint Saturday CT 2015 - Content Types: Love Them or Lose It

Recently uploaded (20)

PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
Big Data Technologies - Introduction.pptx
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
cuic standard and advanced reporting.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
KodekX | Application Modernization Development
PDF
Machine learning based COVID-19 study performance prediction
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Approach and Philosophy of On baking technology
Unlocking AI with Model Context Protocol (MCP)
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
sap open course for s4hana steps from ECC to s4
Per capita expenditure prediction using model stacking based on satellite ima...
MYSQL Presentation for SQL database connectivity
Reach Out and Touch Someone: Haptics and Empathic Computing
Big Data Technologies - Introduction.pptx
Understanding_Digital_Forensics_Presentation.pptx
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Network Security Unit 5.pdf for BCA BBA.
cuic standard and advanced reporting.pdf
Empathic Computing: Creating Shared Understanding
KodekX | Application Modernization Development
Machine learning based COVID-19 study performance prediction
Chapter 3 Spatial Domain Image Processing.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Review of recent advances in non-invasive hemoglobin estimation
Approach and Philosophy of On baking technology

SEF2013 - A jQuery Primer for SharePoint

  • 1. A jQuery Primer for SharePoint Marc D Anderson
  • 2. Who Is Marc? • Co-Founder and President of Sympraxis Consulting LLC, located in the Boston suburb of Newton, MA, USA. Sympraxis focuses on enabling collaboration throughout the enterprise using the SharePoint application platform. • More than 30 years of experience in technology professional services and software development. Over a wide-ranging career in consulting as well as line manager positions, Marc has proven himself as a problem solver and leader who can solve difficult technology problems for organizations across a wide variety of industries and organization sizes. • Three-time awardee of the Microsoft MVP award for SharePoint Server (2011, 2012, 2013).
  • 4. Getting Started • Add references to the jQuery library • References can be in: – Master page – Page layout – Individual aspx pages • jQuery and other .js files can be stored in: – Document Library – _layouts folder – Retrieved from a CDN • Use “protocol-less” src and href
  • 5. Script from CDNs Referencing jQuery, jQueryUI, and SPServices from CDNs – Revisited http://sympmarc.com/2013/02/07/referencing-jquery-jqueryui-and-spservices-from-cdns-revisited/ Note the protocol-less references
  • 6. HTML Elements Powered by <a href="http://office365.com">Office365</a>. Opening tag Closing tag Attribute Value <input id="my-cbox" class="foo bar" type="checkbox" checked /> Element Self-closing tag Id Attribute PropertyValueClass(es)
  • 7. What is the Document Object Model (DOM)? • The DOM starts as the page’s markup (HTML) as delivered to the browser by the server: View Source • Styled by the CSS which gives the page its look and feel • The DOM is acted upon by any script in the page • View Source is *not* the live DOM
  • 8. What Can We Do With the DOM? • Add or remove CSS classes • Create new or remove existing HTML elements • Change HTML element attributes • Bind to events • And so much more… The DOM is HTML, which is XML, which is data!
  • 9. The Basic Idea of jQuery $(".article").hide(); Select something Do something! Remember this from CSS?
  • 10. jQuery’s Document Ready $(document).ready(function() { // do something }); $(function() { // do something }); jQuery(function($) { // do something });
  • 11. jQuery Documentation: Your Friend • The jQuery documentation is used to be arranged to help you • What you need to know is was arranged sequentially from top to bottom
  • 12. jQuery Selectors • Selectors are the most important jQuery concept • Selecting the right DOM object(s) is half the battle • Selectors return a jQuery object containing a collection of DOM objects: 1 to n matching elements
  • 15. Useful jQuery Selector Tricks $("[id='foo']"); // Equal to $("[id!='foo']"); // Not equal to $("[id^='foo']"); // Starts with $("[id$='foo']"); // Ends with $("[id*='foo']"); // Contains $("[id~='foo']"); // Contains word $("[id|='foo']"); // Contains prefix $("[id]"); // Has attribute $("[id][class][style]"); // Has all •.NET Applications like SharePoint generate some long and ugly markup and IDs id="ctl00$ctl41$g_26ee1140_76aa_4ec0_8 8c4_11e7e96480f4$ctl00$ctl02$ctl00$ctl 01$ctl00$ContentTypeChoice" •These selector tricks really help
  • 16. jQuery Attributes • Once you’ve selected the right DOM element, you can use jQuery to get or set its attributes • As of jQuery 1.6: – the .prop() method provides a way to explicitly get/set property values (checked, selected, or disabled) – .attr() gets/sets attribute values (class, style, etc.)
  • 17. Example with SharePoint Attributes: Get $("select[title='Region']").val(); $("select[title='Region'] option:selected").text();
  • 18. Example with SharePoint Attributes: Set $("select[title='Region']").val(5); $("select[title='Region'] option:selected").text("boo");
  • 19. Traversing • Traversing lets you move around the DOM based on your initial selection • This is how you get at elements which are difficult to select directly • Ancestry matters in XML / HTML
  • 20. Traversing Down: Find an Element’s Specific Children $("div[id$='QuickLaunchNavigationManager'] li:first") .parent().find("li:eq(3) li:first .menu-item-text");
  • 21. Traversal Example from SPServices var possibleValues = $("select[ID$='SelectCandidate'][Title^='" + opt.multiSelectColumn + " ']"); var selectedValues = possibleValues.closest("span").find("select[ID$='SelectResult'][Title^='" + opt.multiSelectColumn + " ']"); SelectCandidate SelectResult <select name="ctl00$m$g_e845e690_00da_428f_afbd_fbe804 787763$ctl00$ctl04$ctl07$ctl00$ctl00$ctl04$ctl 00$ctl00$SelectResult" title="City selected values" id="ctl00_m_g_e845e690_00da_428f_afbd_fbe80478 7763_ctl00_ctl04_ctl07_ctl00_ctl00_ctl04_ctl00 _ctl00_SelectResult" style="width: 162px;" onkeydown="GipHandleHScroll(event)" ondblclick="GipRemoveSelectedItems(ctl00_m_g_e 845e690_00da_428f_afbd_fbe804787763_ctl00_ctl0 4_ctl07_ctl00_ctl00_ctl04_ctl00_ctl00_MultiLoo kupPicker_m); return false" onchange="GipSelectResultItems(ctl00_m_g_e845e 690_00da_428f_afbd_fbe804787763_ctl00_ctl04_ct l07_ctl00_ctl00_ctl04_ctl00_ctl00_MultiLookupP icker_m);" size="20" multiple=""> <select name="ctl00$m$g_e845e690_00da_428f_afbd_fbe8 04787763$ctl00$ctl04$ctl07$ctl00$ctl00$ctl04 $ctl00$ctl00$SelectCandidate" title="City possible values" id="ctl00_m_g_e845e690_00da_428f_afbd_fbe804 787763_ctl00_ctl04_ctl07_ctl00_ctl00_ctl04_c tl00_ctl00_SelectCandidate" style="width: 162px;" onkeydown="GipHandleHScroll(event)" ondblclick="GipAddSelectedItems(ctl00_m_g_e8 45e690_00da_428f_afbd_fbe804787763_ctl00_ctl 04_ctl07_ctl00_ctl00_ctl04_ctl00_ctl00_Multi LookupPicker_m); return false" onchange="GipSelectCandidateItems(ctl00_m_g_ e845e690_00da_428f_afbd_fbe804787763_ctl00_c tl04_ctl07_ctl00_ctl00_ctl04_ctl00_ctl00_Mul tiLookupPicker_m);" size="350" multiple="">
  • 22. Manipulation • Once you’ve gotten the right element(s), you can: – Manipulate their attributes – Set properties – Change their contents (e.g., innerHTML)
  • 23. Events • jQuery’s events enable you to work with all of the standard JavaScript events, plus create your own • Used to create behaviors that take effect when the user interacts with the page in the browser, and to further manipulate those behaviors
  • 24. jQuery Events $(".article").click(function(){ // do something }); $(".article").mouseover(function(){ // do something });
  • 25. jQuery Events $("h3.ms-WPTitle").click(function() { alert("Go directly to the list."); }); $("h3.ms-WPTitle").hover(function() { $(this).css("background-color", "fuchsia"); $(this).data("title", $(this).html()); $(this).html("Click to visit"); },function() { $(this).css("background-color", "white"); $(this).html($(this).data("title")); });
  • 26. Effects • jQuery gives you a set of effects you can use to change the elements in the page • Effects can be: – Visual: Change how the user sees existing elements with animations – Manipulative: Change where and how elements are shown by moving them around in the DOM
  • 28. Putting It Together: Toggling Web Part Visibility var wpTitles = $("h3.ms-WPTitle"); // Remove the links on the Web Part Titles wpTitles.find("nobr").unwrap("<a></a>"); // Show the pointer on mouseover wpTitles.css("cursor", "pointer"); // Add click behavior that toggles the visibility wpTitles.click(function() { $(this).closest("table").closest("tr").next().slideToggle(); });
  • 29. Putting It Together: Arranging Checkboxes // Collect all of the choices $(thisFormField).find("tr").each(function() { columnOptions.push($(this).html()); }); out = "<TR>"; // Add all of the options to the out string for(i=0; i < columnOptions.length; i++) { out += columnOptions[i]; // If we've already got perRow columnOptions in the row, // close off the row if((i+1) % opt.perRow === 0) { out += "</TR><TR>"; } } out += "</TR>"; // Remove the existing rows... $(thisFormField).find("tr").remove(); // ...and append the out string $(thisFormField).find("table").append(out);
  • 30. jQueryUI Takes Effects Further $(".article").tabs(); $("input").autocomplete(); $("#infoBox").dialog(); $("table.sortable").sortable(); …and many more
  • 31. jQuery Plugins Abound! • If you want to do something sophisticated, look for an existing plugin • Due diligence – some of the plugins aren’t written very well • Beware of “plugin sprawl”
  • 32. More Useful Tools • JSLint – http://jslint.com/ – Checks your script against accepted standards – “Warning: JSLint will hurt your feelings.” • JSHint – http://jshint.com/ – Like JSLint, but a little more forgiving – More jQuery aware • JavaScript Compressorator – http://compressorrater.thruhere.net/ – Minifies script files using multiple methods
  • 34. Contact Information eMail marc.anderson@sympraxisconsulting.com Blog http://sympmarc.com SPServices http://spservices.codeplex.com SPXSLT http://spxslt.codeplex.com Books http://sympmarc.com/books The Middle Tier Manifesto http://bit.ly/middletier