Category: JavaScript

how to insert an element inside parent element as last element or first element

how to insert an element inside parent element as last element or first element


//below code will insert childClass element at the end as last element of parentClass element $(".parentClass").append($(".childClass").html()); //below code will insert childClass element at the top as first element of parentClass element $(".parentClass").prepend($(".childClass").html());

Different Types of jQuery Document Ready Examples

Different Types of jQuery Document Ready Examples


These are the different types of Document Ready functions typically used in jQuery. If you want to run, execute any event in JavaScript you must put as soon as document gets ready. you should call it inside $(document).ready() function other wise event may not execute properly. Following Code included inside $(document).ready() will only run only … Continue reading Different Types of jQuery Document Ready Examples

Javascript Interview Questions and answers for fresher and experienced

Javascript Interview Questions and answers for fresher and experienced


Question: What are JavaScript types? Following are the JavaScript types: 1.Number 2.String 3.Boolean 4.Object 5.Null 6.Function 7.Undefined Question: Is JavaScript a case-sensitive language? Yes! JavaScript is a case-sensitive language. This means that language keywords, variables, function names, and any other identifiers must always be typed with a consistent capitalization of letters. Question: How can you … Continue reading Javascript Interview Questions and answers for fresher and experienced

HOW TO SET UP PAYPAL INTEGRATION WITH PHP & MYSQL

HOW TO SET UP PAYPAL INTEGRATION WITH PHP & MYSQL


Updates: 10th August 2011 The payments.php code (Line 60-64) has been slightly amended to fix the IPN Invalid Response. If you are not receiving the correct response from Paypal ensure that you are using the main test account (Verified Business Account) from your Paypal Sandbox account. Also ensure that you are testing the Paypal IPN Script on … Continue reading HOW TO SET UP PAYPAL INTEGRATION WITH PHP & MYSQL