jQuery

Vishwa Mohan
Vishwa MohanSoftware Consultant em Peritus Software
jQuery,[object Object],Writes less, Do More,[object Object],Ch. Vishwa Mohan,[object Object],Freelance Software Consultant &,[object Object],Corporate Trainer,[object Object]
Table of Contents,[object Object],jQuery Introduction,[object Object],jQuery Basics,[object Object],jQuery Core,[object Object],Events,[object Object],Animation,[object Object],AJAX,[object Object],Plugins,[object Object]
jQuery Introduction,[object Object]
Evolution,[object Object]
With AJAX .  .  .,[object Object],JavaScript has become essential to current web page development, but.. ,[object Object],JavaScript is not a good language design.,[object Object],JavaScript has become bloated,[object Object],[object Object]
Browser differencesWriting JavaScript code is tedious, time-consuming and error prone. ,[object Object]
Why you might want to use jQuery,[object Object],jQuery makes writing Javascript much easier. ,[object Object],[object Object]
Apply methods to sets of DOM elements.
Builder model (chain method calls)
Extensible and there are tons of libraries
Handles most of browser differences so you don’t have to Server provides data,[object Object],jQuery on client provides presentation. ,[object Object],Advantages of jQuery over JavaScript are: ,[object Object],[object Object]
Eliminates cross browser problems ,[object Object]
What is DOM ?,[object Object],There are four levels of standardized Document Object Model (DOM):,[object Object],Level 0,[object Object],Level 1,[object Object],Level 2,[object Object],Level 3 ,[object Object],The DOM Level 2 combines both DOM Level 1 and 2. It provides methods to access and manipulate style sheet elements, and provides further access to page elements relating to XML. This Level 2 have six different recommendations: ,[object Object],DOM2 Core,[object Object],DOM2 HTML,[object Object],DOM2 Style/CSS,[object Object],DOM2 Events,[object Object],DOM2 Traversal and Range,[object Object],DOM2 Views,[object Object]
What is jQuery ?,[object Object],jQuery is not a language, it is a well written Java Script code. ,[object Object],Fast and Concise. ,[object Object],Simplifies the interaction between HTML and Java Script. ,[object Object],It’s syntax is same as JavaScript Syntax. ,[object Object],jQuery helps, ,[object Object],Improve the performance of the application. ,[object Object],Develop most browser compatible web page. ,[object Object],Implement UI related critical functionality. ,[object Object],Fast,[object Object],Extensible,[object Object],Microsoft is shipping jQuery with Visual Studio. ,[object Object],jQuery supports intellisense in Visual Studio 2010 and with 2008 SP1. ,[object Object],You can download latest version (1.6.1) of jQuery library at			http://docs.jquery.com/Downloading_jQuery,[object Object]
Why jQuery ?,[object Object],Lightweight : 31KB in size as per v1.6.1 (Minified and Gzipped),[object Object],CSS 1–3 Complaint ,[object Object],Cross Browser support,[object Object],	(IE 6.0, Fire Fox 2, Safari 3.0+, Opera 9.0, Chrome),[object Object],jQuery allows you to elegantly (and efficiently) find and manipulate the HTML elements with minimum code. ,[object Object],jQuery commands can be chained together. ,[object Object],jQuery is “DOM Scripting”,[object Object],Great CommunityPlugins,[object Object],TutorialsTestCoverage,[object Object],Open (free) licenseBooks,[object Object]
Who’s using jQuery?,[object Object]
jQuery Dominating ,[object Object],Google trends comparison of JS Framework in last 12 months. ,[object Object]
How to Embed jQuery in your Page,[object Object],By assigning your jQuery script file to the “src” property of script tag. ,[object Object],<html> ,[object Object],	<head> ,[object Object],		<script src=“path/to/jquery-x.x.js"></script> ,[object Object],		<script> ,[object Object],			$(document).ready(function(){,[object Object],				// Start here,[object Object],			}); ,[object Object],		</script> ,[object Object],	</head> ,[object Object],	<body> … </body> ,[object Object],	</html> ,[object Object],To link jQuery remotely instead of hosting in your server:,[object Object],	<script type="text/javascript“ src="http://ajax.googleapis.com/ajax/libs/   jquery/1.4.0/jquery.min.js?ver=1.4.0"></script>,[object Object],jQuery Code,[object Object]
What jQuery Provides,[object Object],Select DOM elements on a page. ,[object Object],[object Object],Set properties of DOM elements, in groups. ,[object Object],Creates, deletes, shows and hides DOM elements.,[object Object],Defines event behavior on a page ,[object Object],[object Object],Animations,[object Object],AJAX calls. ,[object Object]
jQuery Basics,[object Object]
jQuery Philosophy,[object Object],The below is the illustration of how jQuery works:,[object Object],{,[object Object],Find Some Elements,[object Object],$(“div”).addClass(“xyz”);,[object Object],},[object Object],Do something with them,[object Object],jQuery Object,[object Object]
Basic Example,[object Object],The following is a simple basic jQuery example how it works: ,[object Object],Let us assume we have the following HTML and wants to select all paragraphs:,[object Object],<body> ,[object Object],		<div>,[object Object],		     <p>I m a paragraph 1</p> ,[object Object],		     <p>I m a paragraph 2</p> ,[object Object],	</div>,[object Object],	      <p>I m another paragraph</p> ,[object Object],</body> ,[object Object],[object Object]
Add a class to all the paragraphs : $(“p”).addClass(“redStyle”);,[object Object]
The Ready Function,[object Object],With the help of jQuery ready() function, you can detect the state of readiness of your document to execute java script.,[object Object],The code included inside $(document).ready() will only run once the page is ready for JavaScript code to execute. ,[object Object],$(document).ready(function() {,[object Object],	    		console.log('ready!');,[object Object],			});,[object Object],Inside the ready function the script will be executed when DOM is ready.,[object Object],You can also pass named function instead of anonymous function. ,[object Object],5 different ways to specify the ready function,[object Object],jquery(document).ready(function(){…..};);,[object Object],jquery().ready(function(){….};),[object Object],jquery(function(){ ….};),[object Object],jquery(dofunc);,[object Object],$(dofunc);,[object Object]
jQuery Core,[object Object]
jQuery Selectors,[object Object],jQuery offers a set of tools for matching set of elements in a document.,[object Object],If you wish to use any of the meta-characters ( such as !"#$%&'()*+,./:; <=>? @[^`{|}~ ) as a literal part of a name, you must escape the character with two backslashes: .,[object Object],[object Object],Some of the selector examples:  ,[object Object],[object Object]
$(“#elmtID”); 	//Selecting elements by ID. ID must be unique.
$(“div.myClass”); 	//Selecting elements by class name.
$(‘input[name=myName]’); 	//Selecting elements by attribute.
$(‘input[name$=myName]’); 	//Selecting elements it attribute ends with myName. Choosing the good selector can improve the performance of your selector. ,[object Object],To test whether the specified selection contain elements or not. ,[object Object],if ($('div.foo').length) { ... }  //If no elements it returns 0 and evaluates false. ,[object Object]
jQuery Selectors,[object Object],The jQuery library allows you to select elements in your XHTML by wrapping them in $(“ ”). This $ sign in a jQuery wrapper. ,[object Object],You can also use single quote to wrap the element.,[object Object],[object Object]
$("#myElmtD"); // selects one HTML element with ID "myElement"
$(".myClass"); 	// selects HTML elements with class "myClass"
$("p#myElmtID"); 	// selects HTML paragraph element with ID "myElement"
$("ullia.navigation"); // selects anchors with class "navigation" that are nested in list items. jQuery also support the use of CSS selectors also. 	,[object Object],[object Object]
$("input[type=text]"); // selects inputs that have specified type
$("a:first"); // selects the first anchor on the page
$("p:odd"); // selects all odd numbered paragraphs
$("li:first-child"); // selects each list item that's the first child in its list,[object Object]
$(":button"); 	// Selects any button elements (inputs or buttons)
$(":radio"); 	// Selects radio buttons
$(":checkbox"); 	// Selects checkboxes
$(":checked"); 	// Selects checkboxes or radio buttons that are selected
$(":header"); 	// Selects header elements (h1, h2, h3, etc.)
$(":disabled"); 	// Selects disabled form elements. (Enabled also there)
$(":img"); 		// Select inputs with type=“image”.
$(":file"); 		// Select inputs with type=“file”.
$(":password");		// Select inputs with type=“password”.,[object Object]
$(‘#id’)		id of element.
$(‘p’)		tag name.
$(‘.class’)		CSS class
$(‘p.class’)		<p> elements having the CSS class
$(‘p:first’)	$(‘p:last’)	$(‘p:odd’) $(‘p:even’)
$(‘p:eq(2)’)		gets the 2nd <p> element (1 based)
$(‘p’)[1]		gets the 2nd <p> element (0 based)
$(‘p:nth-child(3))	gets the 3rd <p> element of the parent. n=even, odd too.
$(‘p:nth-child(5n+1)’)	gets the 1st element after every 5th one
$(‘p a’)		<a> elements, descended from a <p>
$(‘p>a’)		<a> elements, direct child of a <p>
$(‘p+a’)		<a> elements, directly following a <p>
$(‘p, a’)		<p> and <a> elements
$(‘li:has(ul)’)	<li> elements that have at least one <ul> descendent
$(‘:not(p)’)		all elements but <p> elements
$(‘p:hidden’)	only <p> elements that are hidden
$(‘p:empty’)	<p> elements that have no child elements
$(‘img’[alt])	<img> elements having an alt attribute,[object Object]
$(‘a’[href$=pdf])	//Select <a> elmt with an href attribute ending with pdf
$(‘a’[href*=ntpcug])	//Select <a> elmt with an href attribute containing ‘ntpcug”. ,[object Object]
jQuery Core Methods,[object Object],Most of the jQuery methods are called on jQuery objects. These are said to be part of the $.fn namespace and are called as jQuery object methods. ,[object Object],There are several other methods that do not act on a selection, these are part of jQuery (i.e., $) namespace and are best thought of as core jQuery methods.  ,[object Object],Methods in the $ namespace (or jQuery namespace) are called as utility methods and do not work with selections. ,[object Object],Some of the utility methods are:,[object Object],[object Object]
$.each()
$.proxy()	    //Returns a function that will always run in the provided scope.
$.inArray()	    //Return a value’s index in an Array.
$.extend()	     //Change the properties of the first object using properties 			     // of subsequent objects. ,[object Object],There are few cases the $.fn namespace and jQuery core name space methods have same name. (Eg: $.each and $.fn.each). ,[object Object]
Traversing Elements ,[object Object],Once you have a jQuery selection, you can find other elements using your selection as a starting point.,[object Object],With the help of jQuery traversal methods you can move around DOM tree. The below are the few traversal methods defined in jQuery: ,[object Object],[object Object]
$('div:visible').parent();
1 de 75

Recomendados

JQuery introduction por
JQuery introductionJQuery introduction
JQuery introductionNexThoughts Technologies
1.6K visualizações26 slides
CSS selectors por
CSS selectorsCSS selectors
CSS selectorsHéla Ben Khalfallah
282 visualizações32 slides
Jquery por
JqueryJquery
JqueryGirish Srivastava
5.2K visualizações57 slides
jQuery por
jQueryjQuery
jQueryMostafa Bayomi
9.5K visualizações77 slides
jQuery por
jQueryjQuery
jQueryDileep Mishra
3.8K visualizações21 slides
jQuery from the very beginning por
jQuery from the very beginningjQuery from the very beginning
jQuery from the very beginningAnis Ahmad
11.8K visualizações73 slides

Mais conteúdo relacionado

Mais procurados

Lab #2: Introduction to Javascript por
Lab #2: Introduction to JavascriptLab #2: Introduction to Javascript
Lab #2: Introduction to JavascriptWalid Ashraf
2.9K visualizações41 slides
Jquery Complete Presentation along with Javascript Basics por
Jquery Complete Presentation along with Javascript BasicsJquery Complete Presentation along with Javascript Basics
Jquery Complete Presentation along with Javascript BasicsEPAM Systems
4.8K visualizações208 slides
Javascript arrays por
Javascript arraysJavascript arrays
Javascript arraysHassan Dar
6.5K visualizações33 slides
Css box-model por
Css box-modelCss box-model
Css box-modelWebtech Learning
3.9K visualizações9 slides
JDBC - JPA - Spring Data por
JDBC - JPA - Spring DataJDBC - JPA - Spring Data
JDBC - JPA - Spring DataArturs Drozdovs
2.7K visualizações11 slides
HTML5: features with examples por
HTML5: features with examplesHTML5: features with examples
HTML5: features with examplesAlfredo Torre
24.8K visualizações100 slides

Mais procurados(20)

Lab #2: Introduction to Javascript por Walid Ashraf
Lab #2: Introduction to JavascriptLab #2: Introduction to Javascript
Lab #2: Introduction to Javascript
Walid Ashraf2.9K visualizações
Jquery Complete Presentation along with Javascript Basics por EPAM Systems
Jquery Complete Presentation along with Javascript BasicsJquery Complete Presentation along with Javascript Basics
Jquery Complete Presentation along with Javascript Basics
EPAM Systems4.8K visualizações
Javascript arrays por Hassan Dar
Javascript arraysJavascript arrays
Javascript arrays
Hassan Dar6.5K visualizações
Css box-model por Webtech Learning
Css box-modelCss box-model
Css box-model
Webtech Learning3.9K visualizações
JDBC - JPA - Spring Data por Arturs Drozdovs
JDBC - JPA - Spring DataJDBC - JPA - Spring Data
JDBC - JPA - Spring Data
Arturs Drozdovs2.7K visualizações
HTML5: features with examples por Alfredo Torre
HTML5: features with examplesHTML5: features with examples
HTML5: features with examples
Alfredo Torre24.8K visualizações
XML DTD and Schema por hamsa nandhini
XML DTD and SchemaXML DTD and Schema
XML DTD and Schema
hamsa nandhini132 visualizações
Bootstrap 5 ppt por Mallikarjuna G D
Bootstrap 5 pptBootstrap 5 ppt
Bootstrap 5 ppt
Mallikarjuna G D3.8K visualizações
XML Schema por yht4ever
XML SchemaXML Schema
XML Schema
yht4ever6K visualizações
Introduction to Javascript por Amit Tyagi
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
Amit Tyagi13.5K visualizações
jQuery por Mohammed Arif
jQueryjQuery
jQuery
Mohammed Arif2.2K visualizações
An Overview of HTML, CSS & Java Script por Fahim Abdullah
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah11.4K visualizações
JavaScript - Chapter 12 - Document Object Model por WebStackAcademy
  JavaScript - Chapter 12 - Document Object Model  JavaScript - Chapter 12 - Document Object Model
JavaScript - Chapter 12 - Document Object Model
WebStackAcademy5.3K visualizações
Javascript event handler por Jesus Obenita Jr.
Javascript event handlerJavascript event handler
Javascript event handler
Jesus Obenita Jr.4.4K visualizações
CSS por Akila Iroshan
CSSCSS
CSS
Akila Iroshan636 visualizações
Introduction to jQuery por manugoel2003
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
manugoel20032.2K visualizações
Introduction to BOOTSTRAP por Jeanie Arnoco
Introduction to BOOTSTRAPIntroduction to BOOTSTRAP
Introduction to BOOTSTRAP
Jeanie Arnoco1.1K visualizações
Object Oriented Programming In JavaScript por Forziatech
Object Oriented Programming In JavaScriptObject Oriented Programming In JavaScript
Object Oriented Programming In JavaScript
Forziatech3.6K visualizações
Event In JavaScript por ShahDhruv21
Event In JavaScriptEvent In JavaScript
Event In JavaScript
ShahDhruv213.2K visualizações
Intro to HTML and CSS basics por Eliran Eliassy
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy2.3K visualizações

Destaque

Plm Open Hours - Ersatzteilkataloge und Produktdokumentation por
Plm Open Hours - Ersatzteilkataloge und ProduktdokumentationPlm Open Hours - Ersatzteilkataloge und Produktdokumentation
Plm Open Hours - Ersatzteilkataloge und ProduktdokumentationIntelliact AG
1.9K visualizações23 slides
Linq to sql por
Linq to sqlLinq to sql
Linq to sqlShivanand Arur
3K visualizações11 slides
Introducing LINQ por
Introducing LINQIntroducing LINQ
Introducing LINQLearnNowOnline
1.9K visualizações287 slides
Linq por
LinqLinq
LinqVishwa Mohan
3.1K visualizações20 slides
Understanding linq por
Understanding linqUnderstanding linq
Understanding linqAnand Kumar Rajana
4.1K visualizações51 slides
Linq por
LinqLinq
LinqInspirate Unaula
2.1K visualizações3 slides

Destaque(12)

Plm Open Hours - Ersatzteilkataloge und Produktdokumentation por Intelliact AG
Plm Open Hours - Ersatzteilkataloge und ProduktdokumentationPlm Open Hours - Ersatzteilkataloge und Produktdokumentation
Plm Open Hours - Ersatzteilkataloge und Produktdokumentation
Intelliact AG1.9K visualizações
Linq to sql por Shivanand Arur
Linq to sqlLinq to sql
Linq to sql
Shivanand Arur3K visualizações
Introducing LINQ por LearnNowOnline
Introducing LINQIntroducing LINQ
Introducing LINQ
LearnNowOnline1.9K visualizações
Linq por Vishwa Mohan
LinqLinq
Linq
Vishwa Mohan3.1K visualizações
Understanding linq por Anand Kumar Rajana
Understanding linqUnderstanding linq
Understanding linq
Anand Kumar Rajana4.1K visualizações
LINQ in C# por Basant Medhat
LINQ in C#LINQ in C#
LINQ in C#
Basant Medhat4.8K visualizações
Linq por samneang
LinqLinq
Linq
samneang5.7K visualizações
OPC Unified Architecture por Vishwa Mohan
OPC Unified ArchitectureOPC Unified Architecture
OPC Unified Architecture
Vishwa Mohan9.3K visualizações
Introduccion a LINQ por Tonymx
Introduccion a LINQIntroduccion a LINQ
Introduccion a LINQ
Tonymx8.8K visualizações
The ROI of Trust in Social Selling por Barbara Giamanco
The ROI of Trust in Social SellingThe ROI of Trust in Social Selling
The ROI of Trust in Social Selling
Barbara Giamanco440.7K visualizações

Similar a jQuery

JQuery por
JQueryJQuery
JQueryJacob Nelson
68 visualizações36 slides
Introduction to JQuery por
Introduction to JQueryIntroduction to JQuery
Introduction to JQueryMuhammad Afzal Qureshi
368 visualizações21 slides
J Query(04 12 2008) Foiaz por
J Query(04 12 2008) FoiazJ Query(04 12 2008) Foiaz
J Query(04 12 2008) Foiaztestingphase
558 visualizações17 slides
JavaScript: Ajax & DOM Manipulation por
JavaScript: Ajax & DOM ManipulationJavaScript: Ajax & DOM Manipulation
JavaScript: Ajax & DOM Manipulationborkweb
8.9K visualizações31 slides
J query por
J queryJ query
J queryRamakrishna kapa
209 visualizações15 slides
J Query por
J QueryJ Query
J Queryravinxg
418 visualizações12 slides

Similar a jQuery(20)

JQuery por Jacob Nelson
JQueryJQuery
JQuery
Jacob Nelson68 visualizações
J Query(04 12 2008) Foiaz por testingphase
J Query(04 12 2008) FoiazJ Query(04 12 2008) Foiaz
J Query(04 12 2008) Foiaz
testingphase558 visualizações
JavaScript: Ajax & DOM Manipulation por borkweb
JavaScript: Ajax & DOM ManipulationJavaScript: Ajax & DOM Manipulation
JavaScript: Ajax & DOM Manipulation
borkweb8.9K visualizações
J Query por ravinxg
J QueryJ Query
J Query
ravinxg418 visualizações
JQuery_and_Ajax.pptx por AditiPawale1
JQuery_and_Ajax.pptxJQuery_and_Ajax.pptx
JQuery_and_Ajax.pptx
AditiPawale14 visualizações
jQuery Fundamentals por Doncho Minkov
jQuery FundamentalsjQuery Fundamentals
jQuery Fundamentals
Doncho Minkov2K visualizações
Intro to jQuery por Alan Hecht
Intro to jQueryIntro to jQuery
Intro to jQuery
Alan Hecht1.1K visualizações
Jquery tutorial-beginners por Isfand yar Khan
Jquery tutorial-beginnersJquery tutorial-beginners
Jquery tutorial-beginners
Isfand yar Khan498 visualizações
Jquery Basics por Umeshwaran V
Jquery BasicsJquery Basics
Jquery Basics
Umeshwaran V573 visualizações
jQuery Tips Tricks Trivia por Cognizant
jQuery Tips Tricks TriviajQuery Tips Tricks Trivia
jQuery Tips Tricks Trivia
Cognizant3.2K visualizações
Introduction to jQuery por Gunjan Kumar
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
Gunjan Kumar2.8K visualizações
J Query Public por pradeepsilamkoti
J Query PublicJ Query Public
J Query Public
pradeepsilamkoti572 visualizações
Jquery fundamentals por Salvatore Fazio
Jquery fundamentalsJquery fundamentals
Jquery fundamentals
Salvatore Fazio884 visualizações
SharePoint Cincy 2012 - jQuery essentials por Mark Rackley
SharePoint Cincy 2012 - jQuery essentialsSharePoint Cincy 2012 - jQuery essentials
SharePoint Cincy 2012 - jQuery essentials
Mark Rackley767 visualizações
Getting Started with jQuery por Laila Buncab
Getting Started with jQueryGetting Started with jQuery
Getting Started with jQuery
Laila Buncab428 visualizações

Mais de Vishwa Mohan

WPF por
WPFWPF
WPFVishwa Mohan
1.7K visualizações19 slides
Wwf por
WwfWwf
WwfVishwa Mohan
1.9K visualizações39 slides
Da package usersguide por
Da package usersguideDa package usersguide
Da package usersguideVishwa Mohan
819 visualizações58 slides
Dareadme por
DareadmeDareadme
DareadmeVishwa Mohan
327 visualizações3 slides
CSharp Presentation por
CSharp PresentationCSharp Presentation
CSharp PresentationVishwa Mohan
12.1K visualizações113 slides
Uml por
UmlUml
UmlVishwa Mohan
2.4K visualizações62 slides

Mais de Vishwa Mohan(13)

WPF por Vishwa Mohan
WPFWPF
WPF
Vishwa Mohan1.7K visualizações
Wwf por Vishwa Mohan
WwfWwf
Wwf
Vishwa Mohan1.9K visualizações
Da package usersguide por Vishwa Mohan
Da package usersguideDa package usersguide
Da package usersguide
Vishwa Mohan819 visualizações
Dareadme por Vishwa Mohan
DareadmeDareadme
Dareadme
Vishwa Mohan327 visualizações
CSharp Presentation por Vishwa Mohan
CSharp PresentationCSharp Presentation
CSharp Presentation
Vishwa Mohan12.1K visualizações
Uml por Vishwa Mohan
UmlUml
Uml
Vishwa Mohan2.4K visualizações
Xml por Vishwa Mohan
XmlXml
Xml
Vishwa Mohan2K visualizações
Real Time Systems &amp; RTOS por Vishwa Mohan
Real Time Systems &amp; RTOSReal Time Systems &amp; RTOS
Real Time Systems &amp; RTOS
Vishwa Mohan9.2K visualizações
Embedded Linux por Vishwa Mohan
Embedded LinuxEmbedded Linux
Embedded Linux
Vishwa Mohan459 visualizações
Introduction To Embedded Systems por Vishwa Mohan
Introduction To Embedded SystemsIntroduction To Embedded Systems
Introduction To Embedded Systems
Vishwa Mohan34.6K visualizações
Microsoft.Net por Vishwa Mohan
Microsoft.NetMicrosoft.Net
Microsoft.Net
Vishwa Mohan1.3K visualizações
Zig Bee por Vishwa Mohan
Zig BeeZig Bee
Zig Bee
Vishwa Mohan9.2K visualizações
WCF por Vishwa Mohan
WCFWCF
WCF
Vishwa Mohan4K visualizações

Último

Boston In The American Revolution por
Boston In The American RevolutionBoston In The American Revolution
Boston In The American RevolutionMary Brown
38 visualizações78 slides
STRATEGIC MANAGEMENT MODULE 1_UNIT1 _UNIT2.pdf por
STRATEGIC MANAGEMENT MODULE 1_UNIT1 _UNIT2.pdfSTRATEGIC MANAGEMENT MODULE 1_UNIT1 _UNIT2.pdf
STRATEGIC MANAGEMENT MODULE 1_UNIT1 _UNIT2.pdfDr Vijay Vishwakarma
144 visualizações68 slides
From social media to generative media (3).pptx por
From social media to generative media (3).pptxFrom social media to generative media (3).pptx
From social media to generative media (3).pptxMark Carrigan
88 visualizações28 slides
MercerJesse3.0.pdf por
MercerJesse3.0.pdfMercerJesse3.0.pdf
MercerJesse3.0.pdfjessemercerail
233 visualizações6 slides
Ask The Expert! Nonprofit Website Tools, Tips, and Technology.pdf por
 Ask The Expert! Nonprofit Website Tools, Tips, and Technology.pdf Ask The Expert! Nonprofit Website Tools, Tips, and Technology.pdf
Ask The Expert! Nonprofit Website Tools, Tips, and Technology.pdfTechSoup
68 visualizações28 slides
Interaction of microorganisms with vascular plants.pptx por
Interaction of microorganisms with vascular plants.pptxInteraction of microorganisms with vascular plants.pptx
Interaction of microorganisms with vascular plants.pptxMicrobiologyMicro
77 visualizações33 slides

Último(20)

Boston In The American Revolution por Mary Brown
Boston In The American RevolutionBoston In The American Revolution
Boston In The American Revolution
Mary Brown38 visualizações
STRATEGIC MANAGEMENT MODULE 1_UNIT1 _UNIT2.pdf por Dr Vijay Vishwakarma
STRATEGIC MANAGEMENT MODULE 1_UNIT1 _UNIT2.pdfSTRATEGIC MANAGEMENT MODULE 1_UNIT1 _UNIT2.pdf
STRATEGIC MANAGEMENT MODULE 1_UNIT1 _UNIT2.pdf
Dr Vijay Vishwakarma144 visualizações
From social media to generative media (3).pptx por Mark Carrigan
From social media to generative media (3).pptxFrom social media to generative media (3).pptx
From social media to generative media (3).pptx
Mark Carrigan88 visualizações
MercerJesse3.0.pdf por jessemercerail
MercerJesse3.0.pdfMercerJesse3.0.pdf
MercerJesse3.0.pdf
jessemercerail233 visualizações
Ask The Expert! Nonprofit Website Tools, Tips, and Technology.pdf por TechSoup
 Ask The Expert! Nonprofit Website Tools, Tips, and Technology.pdf Ask The Expert! Nonprofit Website Tools, Tips, and Technology.pdf
Ask The Expert! Nonprofit Website Tools, Tips, and Technology.pdf
TechSoup 68 visualizações
Interaction of microorganisms with vascular plants.pptx por MicrobiologyMicro
Interaction of microorganisms with vascular plants.pptxInteraction of microorganisms with vascular plants.pptx
Interaction of microorganisms with vascular plants.pptx
MicrobiologyMicro77 visualizações
Presentation_NC_Future now 2006.pdf por Lora
Presentation_NC_Future now 2006.pdfPresentation_NC_Future now 2006.pdf
Presentation_NC_Future now 2006.pdf
Lora 38 visualizações
NodeJS and ExpressJS.pdf por ArthyR3
NodeJS and ExpressJS.pdfNodeJS and ExpressJS.pdf
NodeJS and ExpressJS.pdf
ArthyR360 visualizações
GSoC 2024 .pdf por ShabNaz2
GSoC 2024 .pdfGSoC 2024 .pdf
GSoC 2024 .pdf
ShabNaz250 visualizações
BUSINESS ETHICS MODULE 1 UNIT I_B.pdf por Dr Vijay Vishwakarma
BUSINESS ETHICS MODULE 1 UNIT I_B.pdfBUSINESS ETHICS MODULE 1 UNIT I_B.pdf
BUSINESS ETHICS MODULE 1 UNIT I_B.pdf
Dr Vijay Vishwakarma63 visualizações
Career Building in AI - Technologies, Trends and Opportunities por WebStackAcademy
Career Building in AI - Technologies, Trends and OpportunitiesCareer Building in AI - Technologies, Trends and Opportunities
Career Building in AI - Technologies, Trends and Opportunities
WebStackAcademy56 visualizações
Guess Papers ADC 1, Karachi University por Khalid Aziz
Guess Papers ADC 1, Karachi UniversityGuess Papers ADC 1, Karachi University
Guess Papers ADC 1, Karachi University
Khalid Aziz119 visualizações
The Future of Micro-credentials: Is Small Really Beautiful? por Mark Brown
The Future of Micro-credentials:  Is Small Really Beautiful?The Future of Micro-credentials:  Is Small Really Beautiful?
The Future of Micro-credentials: Is Small Really Beautiful?
Mark Brown131 visualizações
Gross Anatomy of the Liver por obaje godwin sunday
Gross Anatomy of the LiverGross Anatomy of the Liver
Gross Anatomy of the Liver
obaje godwin sunday267 visualizações
Creative Restart 2023: Christophe Wechsler - From the Inside Out: Cultivating... por Taste
Creative Restart 2023: Christophe Wechsler - From the Inside Out: Cultivating...Creative Restart 2023: Christophe Wechsler - From the Inside Out: Cultivating...
Creative Restart 2023: Christophe Wechsler - From the Inside Out: Cultivating...
Taste39 visualizações
Payment Integration using Braintree Connector | MuleSoft Mysore Meetup #37 por MysoreMuleSoftMeetup
Payment Integration using Braintree Connector | MuleSoft Mysore Meetup #37Payment Integration using Braintree Connector | MuleSoft Mysore Meetup #37
Payment Integration using Braintree Connector | MuleSoft Mysore Meetup #37
MysoreMuleSoftMeetup59 visualizações
My Personal Brand Exploration por StephenBradley49
My Personal Brand ExplorationMy Personal Brand Exploration
My Personal Brand Exploration
StephenBradley4936 visualizações
OOPs - JAVA Quick Reference.pdf por ArthyR3
OOPs - JAVA Quick Reference.pdfOOPs - JAVA Quick Reference.pdf
OOPs - JAVA Quick Reference.pdf
ArthyR380 visualizações
Artificial Intelligence and The Sustainable Development Goals (SDGs) Adoption... por BC Chew
Artificial Intelligence and The Sustainable Development Goals (SDGs) Adoption...Artificial Intelligence and The Sustainable Development Goals (SDGs) Adoption...
Artificial Intelligence and The Sustainable Development Goals (SDGs) Adoption...
BC Chew55 visualizações

jQuery