There is a significant difference between using jQuery extend() with passing one argument and doing it with two or more arguments. Basically, jQuery.extend() merge the contents of two or more objects into the first object. $.extend() is used to extend any object with additional functions but $.fn.extend() is used to extend the $.fn object, which […]
Search: “ai”
We found 4,603 results for your search.
PHP, Hypertext Preprocessor is a Open Source Language which is trend in the 20th century for creating and developing fast and dynamic web pages. This is also Server Side Scripting Language with a powerful tool for creating dynamic web pages. Lets see the difference between PHP version 4 and 5. Here is the difference between […]
The jQuery clone() Method creates a deep run time copy of set of matched DOM Elements to another location in the DOM elements and select the clones. This is very useful for run time copies of the elements to another location in the DOM elements. Syntax: $(selector).clone(true|false) true: specifies the event handlers which should be […]
jQuery get() Method
jQuery get() method sends an HTTP GET request to a page load data from the server back. If any request with jQuery.get() method returns an error code then it will fail without notification unless the script has also called the global .ajaxError() method. In other side, as of jQuery 1.5, the .error() method of the […]
Force Touch or 3D Touch technology looks like promising from a user interface (UI) with user experience (UX) perspective. It is the fact that Apple is not the first technology company to implement the Force Touch technology but the key selling points for the iPhones is Force Touch or 3D Touch which Apple now brands […]
preventDefault() prevents the default event from occuring, stopPropagation() prevents the event from bubbling up and return false does the both. Example of preventDefault() and return false: $(‘a’).click(function() { return false; }); $(‘a’).click(function(e) { e.preventDefault(); }); So finally, return false from within a jQuery event handler is effectively same as calling both e.preventDefault and e.stopPropagation on […]
The :visible selector check if an elements are hidden in jQuery by selecting each and every elements in a DOM that is currently visible or not. But visible elements are elements which are not: – set to display:none – width and height set to 0 – form elements with type=”hidden” – parent is set as […]
Facebook sometimes does this really neat thing where to show image preview of a link to in a status update. Its usually the website’s logo. Basically, Facebook grabs it’s thumbnails from the original website page. However, sometimes you may get an option which photo you will choose to show it in a post but sometimes […]
Curriculum vitae or CV (also called “vitas”) and resume both have similar purposes that provides key information about your skills, education, experiences and personal qualities which shows you as a ideal candidate. Curriculum vitae sometimes called a CV or vita which tends to be used more for scientific & teaching positions than a resume. So […]
Trying to select data from a MySQL table, but getting the error messages: mysql_fetch_array() expects parameter 1 to be resource, boolean given? – This may happen for various reasons like both the mysql_* and the mysqli extension will return false from their query functions. – Using a die() you can get a little to much. […]
