-
- 1. What Is J-query?
JQuery
is a light weight JavaScript library which provides fast and easy way of HTML DOM traversing and manipulation, its event handling, its client side animations, etc. One of the greatest features of jQuery is that jQuery supports an efficient way to implement AJAX applications because of its light weight nature and make normalize and efficient web programs.
- 1. What Is J-query?
-
- 2. How To Use Jquery?
jQuery
can be easily used with other libraries so it should work out of the box with simple and complex JavaScript and Ajax.
- 2. How To Use Jquery?
PHP Interview Questions
-
- 3. What Distinguishes Php From Something Like Client Side Java Script?
Java script applied on client side while in php code executed on server reviews side.
- 3. What Distinguishes Php From Something Like Client Side Java Script?
-
- 4. In Php How Can You Jump In To And Out Of “php Mode”?
The Php code is enclosed in special Start < ? and end ? > tags that allow ingredients you to jump in to and out of “php mode”.
- 4. In Php How Can You Jump In To And Out Of “php Mode”?
PHP Tutorial
-
- 5. How To Use Jquery Library In Our Asp.net Project?
Download the latest jQuery library from jQuery.com and include the reference to the jQuery library file in our ASPX page.
- 5. How To Use Jquery Library In Our Asp.net Project?
Zend Interview Questions
-
- 6. What Is Jquery Connect?
It is a jquery plugin which enables us to connect a function to another function. It is like assigning a handler for another function. This situation happens when you are using any javascript plugins and you want to execute some function when ever some function is executed from the plugin. This we can solve using jquery connect function.
- 6. What Is Jquery Connect?
-
- 7. How To Use Jquery.connect?
- download jquery.connect.js file.
- include this file in your html file.
- and use $.connect function to connect a function to another function.
- 7. How To Use Jquery.connect?
Zend Tutorial
PHP+MySQL Interview Questions
-
- 8. Different Ways Of Using $.connect Function In Jquery?
The syntax of connect function is
$.connect(sourceObj/*object*/, sourceFunc/*string*/, callObj/*object*/, callFunc/*string or Func*/)- sourceObj(optional) is the object of the source function to which we want to connect.
- sourceFunc is the function name to which we want to connect.
- callObj(optional) is the object which we want to use for the handler function.
- callFunc is the function that we want to execute when sourceFunc is executed.
Here sourceObj, callObj are optional for the global functions.
suppose if your sourceFunc is global function then no need to pass the sourceObj or you can use null or self.
suppose if your callObj is global function then no need to pass the callObj or you can use null or self.
- 8. Different Ways Of Using $.connect Function In Jquery?
-
- 9. Explain The Concepts Of “$ Function” In Jquery With An Example?
The type of a function is “function”.
There are a lot of anonymous functions is jquery.$(document).ready(function() {}); $("a").click(function() {}); $.ajax({ url: "someurl.php", success: function() {} });
- 9. Explain The Concepts Of “$ Function” In Jquery With An Example?
Sybase Interview Questions
-
- 10. Why Is Jquery Better Than Javascript?
- jQuery is great library for developing ajax based application.
- It helps the programmers to keep code simple and concise and reusable.
- jQuery library simplifies the process of traversal of HTML DOM tree.
- jQuery can also handle events, perform animation, and add the Ajax support in web applications.
- 10. Why Is Jquery Better Than Javascript?
Magento Tutorial
-
- 11. Explain How Jquery Works?
AP6AM
- 11. Explain How Jquery Works?
Dbase Interview Questions
-
- 12. When Can You Use Jquery?
- jQuery can be used to for developing ajax based applications.
- It can be used to keep the code simple, concise and reusable.
- It simplifies the process of traversal of HTML DOM tree.
- It can also handle events, perform animation, and add the ajax support in web applications.
- 12. When Can You Use Jquery?
t;br”> PHP Interview Questions
-
- 13. What Is A Jquery ?
It’s very simple but most valuable Question on jQuery means jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, animating, event handling, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. jQuery is build library for javascript no need to write your own functions or script jQuery all ready done for you.
- 13. What Is A Jquery ?
WordPress Tutorial
-
- 14. Change The Url For A Hyperlink Using Jquery?
There are three way to change the URL for a Hyperlink using jQuery.- $(“a”).attr(“href”, “https://interviewquestions.ap6am.com/”);
- $(“a[href=’https://interviewquestions.ap6am.com/’]”) .attr(‘href’, ‘https://interviewquestions.ap6am.com/’);
- $(“a[href^=’https://interviewquestions.ap6am.com/’]”).each(function(){ this.href = this.href.replace(/^http: / / beta.ap6am.com/, “https://interviewquestions.ap6am.com/”); });
- 14. Change The Url For A Hyperlink Using Jquery?
-
- 15. Check Or Uncheck All Checkboxes Using Jquery?
There are different methods to check and uncheck the check boxes.
suppose that you have checkboxes like that
using attr() function. $(‘#checkall’).click(function(){ $(“input[@name='Items']:checked”).attr(‘checked’,true); }); $(‘#uncheckall’).click(function(){ $(“input[@name='Items']:checked”).attr(‘checked’,false);});
using attr() and removeAttr()funstions $(‘#checkall’).click(function(){ $(“input[@name='Items']:checked”).attr(‘checked’,true); }) $(‘#uncheckall’).click(function(){ $(“input[@name='Items']:checked”).removeAttr(‘checked’);})
- 15. Check Or Uncheck All Checkboxes Using Jquery?
Magento Interview Questions
-
- 16. Fetch The Values Of Selected Checkbox Array Using Jquery?
Suppose that below is checkbox array
and we want the get the value of selected checkbox using jquery.
then simple use below code.
var selItems = new Array();
$(input[@name=’Items[]‘]:checked”).each(function() {selItems .push($(this).val());});
Here selItems will take all selected value of checkbox.
- 16. Fetch The Values Of Selected Checkbox Array Using Jquery?
t;br”> CakePHP Tutorial
-
- 17. How We Can Apply Css In Multiple Selectors In Jquery?
Here to take effect is example to demonstrate
$(“div,span,p.myClass”).css(“border”,”1px solid green”);
the border will be apply in all div,span ,p.myClass class element.
- 17. How We Can Apply Css In Multiple Selectors In Jquery?
PHP5 Interview Questions
-
- 18. How We Can Modify The Css Class In Jquery?
Using css method we can modify class using jquery
example:$(“.CssClass1.CssClass2″).css(“border”,”1px solid green”);
CssClass1,CssClass2 will be modify to border 1px solid green.
- 18. How We Can Modify The Css Class In Jquery?
t;br”> Zend Interview Questions
-
- 19. How Can We Apply Css In Div Using Jquery?
using css() method we can apply css in div element.
example:
$(“div”).css(“border”,”1px solid green”);
- 19. How Can We Apply Css In Div Using Jquery?
CodeIgniter Tutorial
-
- 20. Get The Value Of Selected Option In Jquery?
want to get the value of selected option, then use
$("select#sel").val();
or text of selected box, then use
$("#seloption:selected").text();
- 20. Get The Value Of Selected Option In Jquery?
t;br”> WordPress Interview Questions
-
- 21. Check/uncheck An Input In Jquery?
Using two function, we can perform the operation.// Check #x $(“#checkboxid”).attr(“checked”, “checked”); // Uncheck #x $(“#checkboxid”).removeAttr(“checked”);
- 21. Check/uncheck An Input In Jquery?
-
- 22. Disable/enable An Element In Jquery?
// Disable #x $(“#x”).attr(“disabled”,”disabled”); // Enable #x $(“#x”).removeAttr(“disabled”);
- 22. Disable/enable An Element In Jquery?
t;br”> Firebase Tutorial
-
- 23. What Are The Advantages Of Jquery?
The advantages of using jQuery are:- JavaScript enhancement without the overhead of learning new syntax.
- Ability to keep the code simple, clear, readable and reusable.
- Eradication of the requirement of writing repetitious and complex loops and DOM scripting library calls.
- 23. What Are The Advantages Of Jquery?
-
- 24. Explain The Features Of Jquery?
Features of jQuery are :- Effects and animations
- Ajax
- Extensibility
- DOM element selections functions
- Events
- CSS manipulation
- Utilities – such as browser version and the each function.
- JavaScript Plugins
- DOM traversal and modification.
- 24. Explain The Features Of Jquery?
t;br”> PHP+MySQL Interview Questions
-
- 25. How Can We Apply Css In Odd Childs Of Parent Node Using Jquery Library?
$(”tr:odd”).css(”background-color”, “#bbbbff”);
- 25. How Can We Apply Css In Odd Childs Of Parent Node Using Jquery Library?
PHP7 Tutorial
-
- 26. How Can We Apply Css In Even Childs Of Parent Node Using Jquery Library?
$(”tr:even”).css(”background-color”, “#bbbbff”);
- 26. How Can We Apply Css In Even Childs Of Parent Node Using Jquery Library?
t;br”> CodeIgniter Interview Questions
-
- 27. How Can We Apply Css In Last Child Of Parent Using Jquery Library?
$(”tr:last”).css({backgroundColor: ‘yellow’, fontWeight: ‘bolder’});
- 27. How Can We Apply Css In Last Child Of Parent Using Jquery Library?
Sybase Interview Questions
-
- 28. What Does A Special Set Of Tags Do In Php?
The tags displayed output directly to the web browser.
- 28. What Does A Special Set Of Tags Do In Php?
-
- 29. How Can We Calculate The Similarity Between Two Strings?
Using similar_text() get similarity between two strings.
Return Values
Returns the number of matching chars in both strings.
example
$first =’php3′; $first =’php4′; echo
retail price
similar_text
( $first, $second ) //3 ?>
- 29. How Can We Calculate The Similarity Between Two Strings?
Firebase Interview Questions
-
- 30. Return Ascii Value Of Character In Php?
using ord() method we can get ASCII value of character in php.
- 30. Return Ascii Value Of Character In Php?
-
- 31. How Can I Execute A Php Script Using Command Line?
Just run the PHP CLI (Command Line Interface) program and provide the PHP script file name as the command line argument. For example, “php myScript.php”, assuming “php” is the command to invoke the CLI program. Be aware that if your PHP script was written for the Web CGI interface, it may not execute properly in command line environment.
- 31. How Can I Execute A Php Script Using Command Line?
-
- 32. What Difference Between Require() And Require_once()?
Require()
The Require() is used to include a file, It create fatal error if file not found and terminate script.
require_once()
The require_once() to require() except PHP will check if the file has already been included, and if so, tricor online not include (require) it again.
- 32. What Difference Between Require() And Require_once()?
SQLite Interview Questions
-
- 33. What Does Dollar Sign ($) Means In Jquery?
Dollar Sign is nothing but it’s an alias for JQuery. Take a look at below jQuery code$(document).ready(function(){ });
Over here $ sign can be replaced with “jQuery ” keyword.
jQuery(document).ready(function(){ });
- 33. What Does Dollar Sign ($) Means In Jquery?
Dbase Interview Questions
-
- 34. Mac, Windows Or Linux? Why Do You Love This Platform While Using Jquery?
I switched to Mac hardware around a year ago and I’m totally in love with it. All components work together nicely, and so far, I never had to return my Mac book Pro to the Apple Store because of an issue. However, I’m still using Windows through Parallels because OSX, while visually nice and stable, has fundamental usability flaws.
One of these flaws is the Finder. I recently worked on the jQuery UI Selectables in the labs version, and once again saw that the Finder had great flaws when it comes down to selection. For instance, if you select multiple items and click on one of them, the multiple selection isn’t cleared. Also, my tools that I love for windows simply don’t have an alternative yet .
- 34. Mac, Windows Or Linux? Why Do You Love This Platform While Using Jquery?
-
- 35. How Is Body Onload() Function Is Different From Document.ready() Function Used In Jquery?
Document.ready() function is different from body onload() function because off 2 reasons.- We can have more than one document.ready() function in a page where we can have only one onload function.
- Document.ready() function is called as soon as DOM is loaded where body.onload() function is called when everything gets loaded on the page that includes DOM, images and all associated resources of the page.
- 35. How Is Body Onload() Function Is Different From Document.ready() Function Used In Jquery?
-
- 36. What Is Jquery Ui?
JQuery UI is a library which is built on top of JQuery library. JQuery UI comes with cool widgets, effects and interaction mechanism.
- 36. What Is Jquery Ui?
Magento Interview Questions
-
- 37. Name Some Of The Methods Of Jquery Used To Provide Effects?
Some of the common methods are :- Show()
- Hide()
- Toggle()
- FadeIn()
- FadeOut().
- 37. Name Some Of The Methods Of Jquery Used To Provide Effects?
-
- 38. What Are The Different Type Of Selectors In Jquery?
There are 3 types of selectors in Jquery- CSS Selector
- XPath Selector
- Custom Selector.
- 38. What Are The Different Type Of Selectors In Jquery?
-
- 39. How Can You Select All Elements In A Page Using Jquery?
To select all elements in a page, we can use all selectors, for that we need to use *(asterisk symbol).
- 39. How Can You Select All Elements In A Page Using Jquery?
-
- 40. Which Version Of Jquery File Should Be Used?
In most of the recent releases so far, the core functionality of jQuery remains same however some more cool and better features are added. Ideally you should use the latest jQuery files available. By doing this you ensure that your earlier functionality will still work and you can use new features available as part of the new release.
- 40. Which Version Of Jquery File Should Be Used?
PHP5 Interview Questions
-
- 41. What Are Selectors In Jquery Mean ?
Generally in HTML, if we need to work with any control on a web page we need to find the control. For that we use document.getElementByID or document.getElementByName. But in jquery we do it using Selectors.
Using this selectors we can select all the controls as well using a symbol (* )
A sample code snippet can be of this form
- 41. What Are Selectors In Jquery Mean ?
-
- 42. Do We Need To Add The Jquery File Both At The Master Page And Content Page As Well?
No, if the Jquery file has been added to the master page then we can access the content page directly without adding any reference to it.
This can be done using this simple example
- 42. Do We Need To Add The Jquery File Both At The Master Page And Content Page As Well?
WordPress Interview Questions
-
- 43. What Is The Advantage Of Using The Minified Version Of Jquery Rather Than Using The Conventional One?
- The advantage of using a minified version of JQuery file is Efficiency of the web page increases.
- The normal version jQuery-x.x.x.js has a file size of 178KB but the minified version jQuery.x.x.x-min.js has 76.7 KB.
- The reduction in size makes the page to load more faster than you use a conventional jQuery file with 178KB.
- 43. What Is The Advantage Of Using The Minified Version Of Jquery Rather Than Using The Conventional One?
-
- 44. What Is Cdn And How Jquery Is Related To It?
CDN
– It stands for Content Distribution Network or Content Delivery Network.
Generally, a group of systems at various places connected to transfer data files between them to increase its bandwidth while accessing data. The typical architecture is designed in such a way that a client access a file copy from its nearest client rather than accessing it from a centralized server.
So we can load this jQuery file from that CDN so that the efficiency of all the clients working under that network will be increased.
Example :
We can load jQuery from Google libraries API
src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js">
- 44. What Is Cdn And How Jquery Is Related To It?
-
- 45. Can We Select A Element Having A Specific Class In Jquery ?
Yes, we can select an element with a specific class, we use the class selector.The class name must contain the prefix as “.” (dot).
- 45. Can We Select A Element Having A Specific Class In Jquery ?
-
- 46. What Are Features Of Jquery Or What Can Be Done Using Jquery?
Features of Jquery:
- One can easily provide effects and can do animations.
- Applying / Changing CSS.
- Cool plugins.
- Ajax support
- DOM selection events
- Event Handling.
- 46. What Are Features Of Jquery Or What Can Be Done Using Jquery?
-
- 47. What Are The Advantages Of Jquery ?
There are many advantages with JQuery. Some of them are :- It is more like a JavaScript enhancement so there is no overhead in learning a new syntax.
- It has the ability to keep the code simple, readable, clear and reusable.
- It would eradicate the requirement for writing complex loops and DOM scripting library calls.
- 47. What Are The Advantages Of Jquery ?
-
- 48. Why Jquery?
jQuery is very compact and well written JavaScript code that increases the productivity of the developer by enabling them to achieve critical UI functionality by writing very less amount of code.
It helps to
- Improve the performance of the application
- Develop most browser compatible web page
- Implement UI related critical functionality without writing hundreds of lines of codes
- Fast
- Extensible – jQuery can be extended to implement customized behavior.
Other advantages of jQuery are
- No need to learn fresh new syntax’s to use jQuery, knowing simple JavaScript syntax is enough.
- Simple and Cleaner code, no need to write several lines of codes to achieve complex functionality.
- 48. Why Jquery?
-
- 49. What Is The Use Of Delegate() Method In Jquery?
The delegate() method can be used in two ways.
1) If you have a parent element, and you want to attach an event to each one of its child elements, this delegate() method is used.
Ex:Un-ordered
2) When an element is not available on the current page, this method is used.
.live() method is also used for the same purpose but, delegate() method is a bit faster.
- 49. What Is The Use Of Delegate() Method In Jquery?
-
- 50. What Is The Name Of Jquery Method Used For An Asynchronous Http Request?
jQuery.ajax().
- 50. What Is The Name Of Jquery Method Used For An Asynchronous Http Request?