SlideShare uma empresa Scribd logo
1 de 55
www.edureka.co/masters-program/machine-learning-engineer-training
jQuery
Interview Questions
jQuery
Interview Questions
WhatisjQuery?
Question 1
jQuery
Interview Questions
WhatisjQuery?
Question 1
jQuery is an efficient & fast JavaScript Library
created by John Resig in 2006. The motto of
jQuery is write less, do more, which is very apt
because it’s functionality revolves around
simplifying each and every line of code.
jQuery
Interview Questions
Whatarethefeatures of
jQuery?
Question 2
Simplifies JavaScript
Event Handling
Lightweight
Animations
AJAX Support
Question 3
Whataretheadvantages
ofjQuery?
jQuery
Interview Questions
01
02
03
04
05
No overhead in learning a New Syntax as
it is similar to JavaScript
Keeps the code simple, readable, clear
and usable
Cross-browser support
No complex loops and DOM scripting
library calls
Even detection and handling
Question 4
WhatareSelectorsin
jQuery?
jQuery
Interview Questions
• The basic operation in jQuery is selecting an element in
DOM. This is done with the help of $() construct with a
string parameter containing any CSS selector expression.
• $(document).ready() indicates that code in it needs to be
executed once the DOM got loaded.
• We can rewrite $(document).ready() as jQuery
(document).ready(), since $ is an alias for jQuery.
MySQL DBA Certification Training www.edureka.co/mysql-dba
Question 5
Howmanytypesof
Selectorsaretherein
jQuery?
jQuery
Interview Questions
Selectors jQuery Syntax Description
Tag Name $(‘div’) All div tags in the document
ID $(‘#TextId’)
Selects element with ID as
TextId
Class $(‘.myclass’)
Selects elements with class
as myclass
Question 6
WhatisjQuery.noConflict?
jQuery
Interview Questions
jQuery no-conflict is an option given by jQuery to overcome the
conflicts between the different js frameworks or libraries. When
we use jQuery no-conflict mode, we are replacing the $ to a new
variable and assigning to jQuery some other JavaScript libraries.
Also use the $ as a function or variable name what jQuery has.
Question 7
Whatarethevarious ajax
functionsavailablein
jQuery?
jQuery
Interview Questions
Ajax allows the user to exchange data with a server and update
parts of a page without reloading the entire page. Some of the
functions of ajax are as follows:
• $.ajax(): This is considered to be the lowest level and basic of
functions. It is used to send requests.
• $.ajaxSetup(): This function is used to define and set the
options for various ajax calls.
• $.getJSON(): this is a special type of shorthand function
which is used to accept the url to which the requests are sent.
Question 8
Whatarethemethods
usedtoprovideeffects?
jQuery
Interview Questions
jQuery provides many amazing effects, The effect may be hiding,
showing, toggling, fadeout, fadein, fadeto etc. We can use other
methods such as:
• animate( params, [duration, easing, callback] )
• fadeIn( speed, [callback] )
• fadeOut( speed, [callback] )
• fadeTo( speed, opacity, callback )
• stop( [clearQueue, gotoEnd ])
Question 9
Explain.empty()vs
.remove()vs.detach()in
jQuery
jQuery
Interview Questions
• .empty() – This method is used to remove all the child elements
from matched elements.
• .remove() – This method is used to remove all the matched
elements.
• .detach() – This method is same as remove but doesn’t remove
jQuery data.
Syntax - $(selector).empty();
Syntax - $(selector).remove();
Syntax - $(selector).detach();
Question 10
Whatarethedifferences
betweenJavaScriptand
jQuery?
jQuery
Interview Questions
JavaScript jQuery
A dynamic programming language that is weakly
typed
A concise and fast JavaScript library
A scripting language for controlling the document
content and interface interaction
jQuery is a framework that makes Ajax interaction,
event handling and animating faster and simpler
Too many code lines or lines of code Fewer lines of code
Do not need to add any additional plugins as all
browsers support JavaScript
You may have to include jQuery library URL in the
header of the page
developers have to write code manually so browser
related errors are likely to occur
Developers can remain worried free as no error due
to browser compatibility will occur
You may need to write your own script and it can be
a time-consuming process
You only have to write existing jQuery scripts so it
saves your time
Developers write their own code to handle multi-
browser compatibility in JavaScript
Need not to worry about multi-browser
compatibility issues
Question 11
Explainwidth()vs
css(‘width’)injQuery
jQuery
Interview Questions
In jQuery, there is two way to change the width of
an element. One way is using .css(‘width’) and
other way is using .width().
$(‘#mydiv’).css(‘width’, ‘300px’);
$(‘#mydiv’).width(100);
Question 12
Explainbind()vslive()vs
delegate()methodsin
jQuery
jQuery
Interview Questions
$(document).ready(function(){
$(“#myTable”).find(“tr”).live(“click”,function(){
alert($(this).text());
});
});
The bind() method will not attach events to those elements which are
added after DOM is loaded while live() and delegate() methods attach
events to the future elements also.
$(document).ready(function(){
$(“#dvContainer”)children(“table”).delegate(“tr”,”click”,function(){
alert($(this).text());
});
});
Question 13
Whatistheuseofparam()
methodinjQuery?
jQuery
Interview Questions
Syntax - $.param(object | array, boolValue)
The param() method is used to represent an array or an object
in serialize manner. While making an ajax request we can use
these serialize values in the query strings of URL.
Question 14
Whatisthedifference
between$(this)andthisin
jQuery?
jQuery
Interview Questions
this and $(this) references the same element but the
difference is that “this” is used in traditional way but
when “this” is used with $() then it becomes a jQuery
object on which we can use the functions of jQuery.
$(document).ready(function(){
$(‘#clickme’). click(function(){
alert($(this).text());
Alert(this.innerText);
});
});
Question 15
Howtocreate,readand
deletecookiesinjQuery?
jQuery
Interview Questions
To deal with cookies in jQuery you have to use the Dough cookie
plugin. Dough is easy to use and have powerful features.
Create Cookie –
$.dough(“cookie_name”, “cookie_value”);
Read Cookie –
$.dough(“cookie_name”);
delete Cookie –
$.dough(“cookie_name”, “remove”);
Question 16
WhatisjQueryconnect
andhowtouse it?
jQuery
Interview Questions
➢ A ‘ jQuery connect’ is a plugin used to
connect or bind a function with
another function. It is used to execute
function from any other function or
plugin is executed.
➢ Connect can be used by downloading
jQuery connect file from jQuery.com and
then include that file in the HTML file.
Use $.connect function to connect a
function to another function.
Question 17
Whatisthedifference
betweenjQuery.size() and
jQuery.length?
jQuery
Interview Questions
jQuery .size() method returns number of element in
the object. But it is not preferred to use the size()
method as jQuery provide .length property. The
.length property is preferred because it does not
have the overhead of a function call.
Question 18
Howtopreventtheevents
fromstopping towork
afteranajaxrequest?
jQuery
Interview Questions There are two methods to handle this problem:
Use of event delegation –
It uses event bubbling to capture the events on
elements which are present anywhere in the domain
object model.
Event rebinding usage –
When this method is used it requires the user to call
the bind method and the added new elements.
$('#mydiv').click(function(e){
if( $(e.target).is('a’) )
fn.call(e.target,e);
});
$(‘#mydiv’).load(‘my.html’)
$('a').click(fn);
$('#mydiv').load('my.html',function(){
$('#mydiv a').click(fn);
});
Question 19
Explainwhatthefollowing
codewilldo:
jQuery
Interview Questions
$( "div#first, div.first, ol#items > [name$='first']" )
This code performs a query to retrieve any <div> element with
the id first, plus all <div> elements with the class first, plusall
elements which are children of the <ol id="items"> element and
whose name attribute ends with the string "first". This is an
example of using multiple selectors at once. The function will
return a jQuery object containing the results of the query.
Question 20
Whatisthe
differencebetween
$(window).load and
$(document).ready
functioninjQuery?
jQuery
Interview Questions
• $(window).load is an event that fires when the DOM and all the
content (everything) on the page is fully loaded. This event is
fired after the ready event.
• In most cases, the script can be executed as soon as the DOM is
fully loaded, so ready() is usually the best place to write your
JavaScript code. But there could be some scenario where you
might need to write scripts in the load() function. For example,
to get the actual width and height of an image.
Question 21
WhatisaCDNand
whatarethe
advantagesofit?
jQuery
Interview Questions
CDN stands for Content Delivery Network or Content Distribution
Network. It is a large distributed system of servers deployed in
multiple data centers across the internet. It provides the files from
servers at a higher bandwidth that leads to faster loading time.
These are several companies that provide free public CDNs:
•Google
•Microsoft
•Yahoo
Question 21
WhatisaCDNand
whatarethe
advantagesofit?
Machine Learning Engineer Masters Program
jQuery
Interview Questions
Advantages of using CDN:
• It reduces the load from the server.
• It saves bandwidth. jQuery framework is loaded faster from
these CDN.
• If a user regularly visits a site which is using jQuery framework
from any of these CDN, it will be cached.
Question 22
HowtouseajQuery
libraryinyour
project?
jQuery
Interview Questions
You can use a jQuery library in the ASP.Net project from
downloading the latest jQuery library from jQuery.com and
include the references to the jQuery library file in your
HTML/PHP/JSP/Aspx page.
For Example -
<script src="_scripts/jQuery-
1.2.6.js" type="text/javascript"></script>
<script language="javascript">
$(document).ready(function() {
alert('test');
});
</script>
Question 23
Whatistheuse of
serialize()methodin
jQuery?
jQuery
Interview Questions
The jQuery serialize() method is used to create a text string
in standard URL-encoded notation. It serializes the form
values so that its serialized values can be used in the URL
query string while making an AJAX request.
Syntax -
$(document).ready(function(){
$("button").click(function(){
$("div").text($("form").serialize());
});
});
Question 24
Whatistheuse of
val()methodin
jQuery?
jQuery
Interview Questions
The jQuery val() method is used:
• To get the current value of the first element in the set of
matched elements.
• To set the value of every matched element.
Syntax -
$("button").click(function(){
$("input:text").val(“edureka");
});
Question 25
WhatisjQueryUI?
jQuery
Interview Questions
jQuery UI is a set of user interface
interactions, effects, widgets, and themes
built on top of the jQuery JavaScript Library.
jQuery UI works well for highly interactive
web applications with many controls or for a
simple page with a date picker control.
Question 26
Whatarethe
differentwaysto
includejQueryina
page?
jQuery
Interview Questions
04
03
02
01
05
Local copy inside script tag
Remote copy of jQuery.com
Remote copy of Ajax API
Local copy of script manager control
Embedded script using client script object
Question 27
Whatarethefour
parametersusedfor
jQueryAjaxmethod?
jQuery
Interview Questions
01
02
03
04
URL – Need to specify the URL to send the request
Type – Specifies type of request (GET or POST)
Data – Specifies data to be sent to Server
Cache – Whether the browser should cache requested page
Question 28
Whatistheuse of
html()methodin
jQuery?
jQuery
Interview Questions
The jQuery html() method is used to change the entire
content of the selected elements. It replaces the selected
element content with new contents.
Syntax -
$(document).ready(function(){
$("button").click(function(){
$("p").html("Hello <b>edureka.co</b>"); });
});
Question 29
Whatistheuse of
css()methodin
jQuery?
jQuery
Interview Questions
The jQuery CSS() method is used to get or set style
properties or values for selected elements. It facilitates you
to get one or more style properties. The jQuery CSS()
provides two ways:
Return a CSS Property
$(document).ready(function(){
$("button").click(function(){
alert("Background color = " + $("p").css("background-color"));
});
});
Question 29
Whatistheuse of
css()methodin
jQuery?
jQuery
Interview Questions
The jQuery CSS() method is used to get or set style
properties or values for selected elements. It facilitates you
to get one or more style properties. The jQuery CSS()
provides two ways:
Set a CSS Property
$(document).ready(function(){
$("button").click(function(){
$("p").css("background-color", "violet");
});
});
Question 30
WhatisjQuery
Datepicker?
jQuery
Interview Questions
➢ The jQuery UI Datepicker is a highly
configurable plugin that adds datepicker
functionality to your pages.
➢ By default, the datepicker calendar opens in a
small overlay when the associated text field
gains focus.
Example -
<head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
</head>
Question 31
DefineslideToggle()
method
jQuery
Interview Questions
The slide methods do the up and down
element. To implement slide up and down on
element jQuery here are the three methods:
01
02
03
slideDown()
slideUp()
slideToggle()
Question 31
DefineslideToggle()
method
jQuery
Interview Questions
slideDown() Method01
<script type="text/javascript">
$(document).ready(function() {
$("#btnSlideDown").click(function() {
$("#login_wrapper").slideDown();
return false; });
});
</script>
Question 31
DefineslideToggle()
method
jQuery
Interview Questions
slideUp() Method02
<script type="text/javascript">
$(document).ready(function() {
$("#btnSlideUp").click(function() {
$("#login_wrapper").slideUp();
return false; });
});
</script>
Question 31
DefineslideToggle()
method
jQuery
Interview Questions
slideToggle() Method03
<script type="text/javascript">
$(document).ready(function() {
$("#btnSlideToggle").click(function() {
$("#login_wrapper").slideToggle();
return false; });
});
</script>
Question 32
Whatisslice()
methodinjQuery?
jQuery
Interview Questions
Syntax –
slice( start, end[Optional] )
Slice() method selects a subset of the matched
elements by giving a range of indices. In other
words, it gives the set of DOM elements on the
basis of it's parameter
Question 33
Whatisqueue()in
jQuery?
jQuery
Interview Questions
Syntax –
delay( duration [, queueName ] )
Delay comes under the custom effect category in
jQuery. Its sole use is to delay the execution of
subsequent items in the execution
queue. queueName is a name of the queue in
which the delay time is to be inserted. By default
it is a "fx" queue.
Question 34
Howcanweuse
ArraywithjQuery?
jQuery
Interview Questions
Syntax –
var names = [“Name1”,”Name2”])
Example-
var namearray = [];
namearray.push(“Name1”) //Index 0
namearray.push(“Name2”) //Index 1
namearray.push(“Name3”) //Index 2
Question 35
WhatarejQuery
plugins?
jQuery
Interview Questions
Plugins are a piece of code. In jQuery plugins it is a code written in a
standard JavaScript file. These JavaScript files provide useful jQuery
methods that can be used along with jQuery library methods.
Question 36
Whatisthe
differencebetween
MapandGrep
function?
jQuery
Interview Questions
In $.map() you need to loop over each element in an array and modify its
value whilst the $. Grep() method returns the filtered array using some
filter condition from an existing array.
Basic Structure of MAP –
$.map ( array, callback(elementOfArray, indexInArray) )
Question 37
Whatdoesthe‘$’
meaninjQuery?How
canjQuerybeusedin
conjunction with
anotherJSlibrary
thatuses$for
naming?
jQuery
Interview Questions
$ has no special meaning in JavaScript. It is free to be used in object
naming. In jQuery, it is simply used as an alias for the jQuery object
and jQuery() function.
jQuery provides the jQuery.noConflict()method for just this reason.
Calling this method makes it necessary to use the underlying
name jQuery instead in subsequent references to jQuery and its
functions.
Question 38
Giventhefollowing
HTMLCode:
<divid="expander"></div>
andthefollowing CSS:
div#expander{
width:100px;
height:100px;
background-color: blue;
}
jQuery
Interview Questions
Write code in jQuery to animate the #expander div,
expanding it from 100 x 100 pixels to 200 x 200 pixels
over the course of three seconds.
Solution –
$( "#expander" ).animate(
{
width: "200px",
height: "200px",
},
3000 );
Question 39
Whatismethod
chaininginjQuery?
jQuery
Interview Questions
Without Chaining:
$( "button#play-movie" ).on( "click", playMovie );
$( "button#play-movie" ).css( "background-color",
"orange" );
$( "button#play-movie" ).show();
Method chaining is a feature in jQuery that allows several
methods to be executed on a jQuery selection in sequence
in a single code statement.
With Chaining:
$( "button#play-movie" ).on( "click", playMovie )
.css( "background-color", "orange" )
.show();
Question 40
Whatisthedifference
betweenjQuery.get()
andjQuery.ajax()?
jQuery
Interview Questions
➢jQuery.ajax() is the all-encompassing Ajax request method
provided by jQuery. It allows for the creation of highly-customized
Ajax requests, with options for how long to wait for a response,
how to handle a failure, whether the request is blocking
(synchronous) or non-blocking (asynchronous), what format to
request for the response, and many more options.
➢jQuery.get() is a shortcut method that uses jQuery.ajax() under
the hood, to create an Ajax request that is typical for simple
retrieval of information. Other pre-built Ajax requests are
provided by jQuery, such as jQuery.post(), jQuery.getScript(),
and jQuery.getJSON().
Question 41
Whatistheuse of
jQuery.each()function?
jQuery
Interview Questions The jQuery.each() function is a general function that will loop
through a collection. Array-like objects with a length property are
iterated by their index position and value. Other objects are
iterated on their key-value properties.
jQuery.each(collection, callback(indexInArray, valueOfE
lement))
< script type = "text/javascript" >
$(document).ready(function() {
var arr = [“JavaScript”, “jQuery”, “Java”,
“Python”];
$.each(arr, function(index, value) {
alert('Position is : ' + index + ' And Value is : ' + v
alue);
});
});
< /script>
Question 42
Whatisthedifference
between‘prop’and
‘attr’?
jQuery
Interview Questions
jQuery.attr()
Gets the value of an attribute for the first element in the
set of matched elements.
jQuery. prop ()
Gets the value of a property for the first element in the set
of matched elements.
For Example -
<input id="txtBox" value="Jquery" type="text" readonly="readonly" />
Question 43
Explainwhatthe
followingcodedoes:
jQuery
Interview Questions
$( "div" ).css( "width", "300px" ).add( "p" ).css( "background-color", "blue" );
This code uses method chaining to accomplish a couple
of things. First, it selects all the <div> elements and
changes their CSS width to 300px. Then, it adds all
the <p> elements to the current selection, so it can
finally change the CSS background color for both
the <div> and <p> elements to blue.
Question 44
Differentiatebetween
.jsand.min.js
jQuery
Interview Questions
jQuery library has two different versions - Development and
Production. The other name for the deployment version is
minified version.
Considering the functionality, both the files are similar to each
other. Being smaller in size, the .min.js gets loaded quickly
saving the bandwidth.
Question 45
Whatarethefeatures
ofjQueryusedinweb
applications?
jQuery
Interview Questions
MySQL DBA Certification Training www.edureka.co/mysql-dba
Top 45 jQuery Interview Questions and Answers | Edureka

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Web AR
Web ARWeb AR
Web AR
 
Презентация к вебинару по CMS WordPress
Презентация к вебинару по CMS WordPressПрезентация к вебинару по CMS WordPress
Презентация к вебинару по CMS WordPress
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web development
 
Ілон Рів Маск
Ілон Рів МаскІлон Рів Маск
Ілон Рів Маск
 
Amazon SEO basics
Amazon SEO basicsAmazon SEO basics
Amazon SEO basics
 
html
htmlhtml
html
 
Search engine
Search engineSearch engine
Search engine
 
Java script
Java scriptJava script
Java script
 
Dom
Dom Dom
Dom
 
Ict html
Ict htmlIct html
Ict html
 
Java script arrays
Java script arraysJava script arrays
Java script arrays
 
React js for beginners
React js for beginnersReact js for beginners
React js for beginners
 
11 клас Урок 3 теорія
11 клас Урок 3 теорія11 клас Урок 3 теорія
11 клас Урок 3 теорія
 
An introduction to Google Analytics
An introduction to Google AnalyticsAn introduction to Google Analytics
An introduction to Google Analytics
 
Basic Html Tags Tutorial For Kids
Basic Html Tags Tutorial For KidsBasic Html Tags Tutorial For Kids
Basic Html Tags Tutorial For Kids
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JS
 
Ruby on Rails Presentation
Ruby on Rails PresentationRuby on Rails Presentation
Ruby on Rails Presentation
 
React workshop
React workshopReact workshop
React workshop
 
Integrating React.js Into a PHP Application
Integrating React.js Into a PHP ApplicationIntegrating React.js Into a PHP Application
Integrating React.js Into a PHP Application
 

Semelhante a Top 45 jQuery Interview Questions and Answers | Edureka

Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQueryAnil Kumar
 
Difference between java script and jquery
Difference between java script and jqueryDifference between java script and jquery
Difference between java script and jqueryUmar Ali
 
J query presentation
J query presentationJ query presentation
J query presentationakanksha17
 
J query presentation
J query presentationJ query presentation
J query presentationsawarkar17
 
jQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesjQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesMark Roden
 
JavaScript front end performance optimizations
JavaScript front end performance optimizationsJavaScript front end performance optimizations
JavaScript front end performance optimizationsChris Love
 
jQuery From the Ground Up
jQuery From the Ground UpjQuery From the Ground Up
jQuery From the Ground UpKevin Griffin
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to JqueryGurpreet singh
 
jQuery - Chapter 1 - Introduction
 jQuery - Chapter 1 - Introduction jQuery - Chapter 1 - Introduction
jQuery - Chapter 1 - IntroductionWebStackAcademy
 
Moving to the Client - JavaFX and HTML5
Moving to the Client - JavaFX and HTML5Moving to the Client - JavaFX and HTML5
Moving to the Client - JavaFX and HTML5Stephen Chin
 
Jquery
Jquery Jquery
Jquery eginni
 
jQuery: The World's Most Popular JavaScript Library Comes to XPages
jQuery: The World's Most Popular JavaScript Library Comes to XPagesjQuery: The World's Most Popular JavaScript Library Comes to XPages
jQuery: The World's Most Popular JavaScript Library Comes to XPagesTeamstudio
 
J Query The Write Less Do More Javascript Library
J Query   The Write Less Do More Javascript LibraryJ Query   The Write Less Do More Javascript Library
J Query The Write Less Do More Javascript Libraryrsnarayanan
 

Semelhante a Top 45 jQuery Interview Questions and Answers | Edureka (20)

Jquery
JqueryJquery
Jquery
 
Jquery beltranhomewrok
Jquery beltranhomewrokJquery beltranhomewrok
Jquery beltranhomewrok
 
Jquery beltranhomewrok
Jquery beltranhomewrokJquery beltranhomewrok
Jquery beltranhomewrok
 
Starting with jQuery
Starting with jQueryStarting with jQuery
Starting with jQuery
 
J query resh
J query reshJ query resh
J query resh
 
Difference between java script and jquery
Difference between java script and jqueryDifference between java script and jquery
Difference between java script and jquery
 
J query presentation
J query presentationJ query presentation
J query presentation
 
J query presentation
J query presentationJ query presentation
J query presentation
 
jQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPagesjQuery - the world's most popular java script library comes to XPages
jQuery - the world's most popular java script library comes to XPages
 
JavaScript front end performance optimizations
JavaScript front end performance optimizationsJavaScript front end performance optimizations
JavaScript front end performance optimizations
 
Jquery
JqueryJquery
Jquery
 
Jqueryppt (1)
Jqueryppt (1)Jqueryppt (1)
Jqueryppt (1)
 
jQuery From the Ground Up
jQuery From the Ground UpjQuery From the Ground Up
jQuery From the Ground Up
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to Jquery
 
jQuery - Chapter 1 - Introduction
 jQuery - Chapter 1 - Introduction jQuery - Chapter 1 - Introduction
jQuery - Chapter 1 - Introduction
 
Introduction to jQuery
Introduction to jQueryIntroduction to jQuery
Introduction to jQuery
 
Moving to the Client - JavaFX and HTML5
Moving to the Client - JavaFX and HTML5Moving to the Client - JavaFX and HTML5
Moving to the Client - JavaFX and HTML5
 
Jquery
Jquery Jquery
Jquery
 
jQuery: The World's Most Popular JavaScript Library Comes to XPages
jQuery: The World's Most Popular JavaScript Library Comes to XPagesjQuery: The World's Most Popular JavaScript Library Comes to XPages
jQuery: The World's Most Popular JavaScript Library Comes to XPages
 
J Query The Write Less Do More Javascript Library
J Query   The Write Less Do More Javascript LibraryJ Query   The Write Less Do More Javascript Library
J Query The Write Less Do More Javascript Library
 

Mais de Edureka!

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaEdureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaEdureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaEdureka!
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaEdureka!
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaEdureka!
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaEdureka!
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaEdureka!
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaEdureka!
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaEdureka!
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaEdureka!
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | EdurekaEdureka!
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEdureka!
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEdureka!
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaEdureka!
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaEdureka!
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaEdureka!
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaEdureka!
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaEdureka!
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | EdurekaEdureka!
 

Mais de Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 

Último

presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 

Último (20)

Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 

Top 45 jQuery Interview Questions and Answers | Edureka