SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

The Apollo and GraphQL Stack
The Apollo and GraphQL StackThe Apollo and GraphQL Stack
The Apollo and GraphQL Stack
Sashko Stubailo
 

Was ist angesagt? (20)

Extending Java EE with CDI and JBoss Forge
Extending Java EE with CDI and JBoss ForgeExtending Java EE with CDI and JBoss Forge
Extending Java EE with CDI and JBoss Forge
 
Ch09 整合資料庫
Ch09 整合資料庫 Ch09 整合資料庫
Ch09 整合資料庫
 
twMVC#18 | 專案分層架構
twMVC#18 | 專案分層架構twMVC#18 | 專案分層架構
twMVC#18 | 專案分層架構
 
Introduction to GraphQL
Introduction to GraphQLIntroduction to GraphQL
Introduction to GraphQL
 
Performance Testing using LoadRunner - Kamran Khan [chromeis.com]
Performance Testing using LoadRunner - Kamran Khan [chromeis.com]Performance Testing using LoadRunner - Kamran Khan [chromeis.com]
Performance Testing using LoadRunner - Kamran Khan [chromeis.com]
 
Introduction to GraphQL
Introduction to GraphQLIntroduction to GraphQL
Introduction to GraphQL
 
55 New Features in Java SE 8
55 New Features in Java SE 855 New Features in Java SE 8
55 New Features in Java SE 8
 
Raffi Krikorian, Twitter Timelines at Scale
Raffi Krikorian, Twitter Timelines at ScaleRaffi Krikorian, Twitter Timelines at Scale
Raffi Krikorian, Twitter Timelines at Scale
 
Rapport tp2 j2ee
Rapport tp2 j2eeRapport tp2 j2ee
Rapport tp2 j2ee
 
Clean code slide
Clean code slideClean code slide
Clean code slide
 
Polygot Java EE on the GraalVM
Polygot Java EE on the GraalVMPolygot Java EE on the GraalVM
Polygot Java EE on the GraalVM
 
Bytecode Manipulation with a Java Agent and Byte Buddy
Bytecode Manipulation with a Java Agent and Byte BuddyBytecode Manipulation with a Java Agent and Byte Buddy
Bytecode Manipulation with a Java Agent and Byte Buddy
 
QA. Load Testing
QA. Load TestingQA. Load Testing
QA. Load Testing
 
REST Enabling Your Oracle Database
REST Enabling Your Oracle DatabaseREST Enabling Your Oracle Database
REST Enabling Your Oracle Database
 
스프링5 웹플럭스와 테스트 전략
스프링5 웹플럭스와 테스트 전략스프링5 웹플럭스와 테스트 전략
스프링5 웹플럭스와 테스트 전략
 
Intrinsic Methods in HotSpot VM
Intrinsic Methods in HotSpot VMIntrinsic Methods in HotSpot VM
Intrinsic Methods in HotSpot VM
 
Introduction to Apache solr
Introduction to Apache solrIntroduction to Apache solr
Introduction to Apache solr
 
The Apollo and GraphQL Stack
The Apollo and GraphQL StackThe Apollo and GraphQL Stack
The Apollo and GraphQL Stack
 
Meetup React Sanca - 29/11/18 - React Testing
Meetup React Sanca - 29/11/18 - React TestingMeetup React Sanca - 29/11/18 - React Testing
Meetup React Sanca - 29/11/18 - React Testing
 
React & GraphQL
React & GraphQLReact & GraphQL
React & GraphQL
 

Ähnlich wie Top 45 jQuery Interview Questions and Answers | Edureka

J query presentation
J query presentationJ query presentation
J query presentation
akanksha17
 
J query presentation
J query presentationJ query presentation
J query presentation
sawarkar17
 
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
Mark Roden
 
jQuery From the Ground Up
jQuery From the Ground UpjQuery From the Ground Up
jQuery From the Ground Up
Kevin Griffin
 
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
rsnarayanan
 

Ähnlich wie 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
 

Mehr von Edureka!

Mehr von 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
 

Kürzlich hochgeladen

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Kürzlich hochgeladen (20)

Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

Top 45 jQuery Interview Questions and Answers | Edureka