Top 100 PHP Interview Questions and Answers
1) What is PHP? PHP is a web language based on scripts that allows developers to dynamically create generated web pages. 2) What does the initials of PHP stand for? PHP means PHP: Hypertext...
1) What is PHP? PHP is a web language based on scripts that allows developers to dynamically create generated web pages. 2) What does the initials of PHP stand for? PHP means PHP: Hypertext...
1. What is jQuery? jQuery is not a programming language but a well written JavaScript code. It is a JavaScript code, which do document traversing, event handling, Ajax interactions and Animations. 2. Why jQuery...
1. What is JavaScript? JavaScript is a client-side as well as server side scripting language that can be inserted into HTML pages and is understood by web browsers. JavaScript is also an Object Oriented...
1) What is WordPress? Word press is a best Open Source CMS which allows it to be used free of cost. You can use it on any kind of personal or commercial website without have...
1) Explain what is Bootstrap? Bootstrap is a framework for building the rich web applications with minimal effort. This framework emphasis more on building mobile web applications. 2) Explain why to choose Bootstrap for building the...
1. What do you understand by Bootstrap? Bootstrap, originally named Twitter Blueprint, was developed by Mark Otto and Jacob Thornton at Twitter, is free and open source front end Javascript web framework for designing the...
1. What is CSS ? The full form of CSS is Cascading Style Sheets. It is a styling language which is simple enough for HTML elements. It is popular in web designing, and its...
Whether you’ve studied HTML, HTML5, or other web development languages via college courses, online courses, boot camps, or self-study, there will come a time when you need to get a job and the gateway...
Learning web designing is very easy and it can be fun in many ways. Moreover, web designing can have many opportunities in store. The main challenge for any web designer is learning web designer...
1) Mention what are the main language or platform used for web-design? The main language used for web-designing are HTML: Base template CSS: Styling JavaScript: Functionality PHP: Server side scripts 2) Explain how can...
You want to set your own hours, be your own boss, work from home (or maybe the beach) and have no limit to the money you are making. Sounds like a dream. But how...
Companies spend a significant amount of time and money on advertising and marketing their brand’s products or services. It used to be that when you advertised on offline channels like TV and print, you...
These simple tips for making your WordPress ecommerce site a success. Use them as a checklist for reviewing your current site and then make a list of what you can easily implement. Small improvements like these...
We do a lot of audits of AdWords accounts to give advertisers a “second opinion” on the account and give them recommendations on how to improve things. And having been behind the scenes of...
SEO means Search Engine Optimization. In this we will make your website more search engines (Google, Bing, etc) friendly. When ever somebody search something related to your products/services, then your site should be in...
Today, you are able to access numerous webpages through a Web browser over the Internet. You use Facebook, Twitter, Wikipedia, Google and many other websites often to get information, stay in touch with people...
$(‘#pass’).keyup(function(e) { var strongRegex = new RegExp(“^(?=.{8,})(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*\\W).*$”, “g”); var mediumRegex = new RegExp(“^(?=.{7,})(((?=.*[A-Z])(?=.*[a-z]))|((?=.*[A-Z])(?=.*[0-9]))|((?=.*[a-z])(?=.*[0-9]))).*$”, “g”); var enoughRegex = new RegExp(“(?=.{6,}).*”, “g”); if (false == enoughRegex.test($(this).val())) { $(‘#passstrength’).html(‘More Characters’); } else if (strongRegex.test($(this).val())) { $(‘#passstrength’).className =...
Very easy way to preload images which are needed later (e.g. when a hover is performed) <script type=”text/javascript”> $.preloadImages = function() { for(var i = 0; i<arguments.length; i++) { $(“<img />”).attr(“src”, arguments[i]); } }...
Recently creating a WordPress site and i noticed a little problem, you can add .html in the settings which work fine for POSTS but not pages! I wrote a small plugin that will add...
Let’s say you want to attach a click handler to every link on a page. The function for that click handler turns all the other links a different color var $allLinks = $(“a”); $allLinks.click(function() { $allLinks.not(this).css(“color”,...
. 1. Speedo Popup jQuery Plugin Speedo Popup is a powerful popup / modal plugin. It`s fully RESPONSIVE and is designed to provide an optimal viewing experience. Also has compatibility for HTML5 and CSS3 and...
I have listed down 10 common jQuery mistakes from my personal experience and their fixes that you might be also doing while writing jQuery code. 1. Be courageous to remove jQuery Sometimes things can be...
The Basic syntax for setTimeout function is, 1 setTimeout(function() { 2 // Do something after 2 seconds 3 }, 2000); The setTimeout function takes the times in miliseconds. And the block can contain either yourjQuery code, or...
Before we begin, its important to know “What is jQuery Mobile”? Well, jQuery mobile is a framework created for making platform independent mobile applications. It is built using HTML5, CSS3, and the very popular jQuery...
What are “Pages”? A Page in jQuery Mobile is nothing but a container created within a <div data-role=”page”> that is displayed on the screen. It can contain the header, the page content, and the...
Let’s begin Any page in jQuery mobile can be created as dialog box. All you need to do is to apply data-rel=”dialog” attribute to the to the page anchor link and jQuery mobile will do the...
Q31. How do you check if an element is empty? Ans: There are 2 ways to check if element is empty or not. We can check using “:empty” selector. 1 $(document).ready(function(){ 2 if ($(‘#element’).is(‘:empty’)){ 3...
Below is the list of latest and updated jQuery interview questions and their answers for freshers as well as experienced users. These interview question covers latest version of jQuery which is jQuery 2.0. These interview...
apply CSS call functions on events traverse the documents manipulation purpose and to add effects too.
<html> <head> <script type=”text/javascript” src=”jquery.js”></script> <script type=”text/javascript”> // You can write the code here </script> </head> <body> <a href=”http://www.globalguideline.com/”>Global GuideLine</a> </body> </html>
Ans. * 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...