Hi guys, Shraing Code Snippet for Calling a function before leaving page. It may be required for variety of purposes. you can use it to track statistics for user's leaving from a website page to record that page for bounce pages statistics from where user is leaving website mostly. this is just a simple example you can use it for variety of way.
you can share in comments for...
Showing posts with label jquery. Show all posts
Showing posts with label jquery. Show all posts
Sunday, 26 March 2017
Saturday, 27 August 2016
Javascript Event Propagation vs Event PreventDefault
Event Propagation vs Event PreventDefault
Event Propagation
Event Propagation Stops the Event from bubbling or making the event Chain .
Example : - A Click Event on a <td> tag will also fire click event on it's parent <tr> and this event chain also continues to parent <table> tag of that <tr> this makes a event chain in order...
Thursday, 11 August 2016
Angularjs Vs Jquery
Answer Angularjs Vs Jquery On Quora Angularjs Vs Jquery
jQuery will be used for things like higher level APIs, updating DOM elements, adding classes and wrapping XHR calls up nicely. Angular 1.x actually uses jQuery lite (jQLite) inside itself, or can use the full jQuery...
Difference between on and bind in jQuery
The .bind() method registers the event and event handler directly to the DOM element.This method is still very handy when wiring-up event handlers, but there are various performance concerns as are listed below.
Internally .bind() maps to .on() as per current version of Jquery .bind may be removed from future versions at any time. There is no reason to keep using .bind and every...
Thursday, 12 May 2016
Create News Feed In PHP
Code To Create A Simple News Feed In PHP
Use Ajax & Jquery To Fetch & Populate News Feed . Make Ajax Call From Page Control Will go to specified PHP page through ajax call then fetch data in that PHP page and send data to callback to Ajax Call
See A simple Example below :-
HTML PAGE CODE
<html>
<head>
//Required CSS / JSS Files
</head>
<body>
<div...
Saturday, 30 April 2016
Parse Json file In Jquery Ajax
See Running Demo Here -Demo For Parsing Json File In Jquery
Json File Data
[
{
"alignment1": "TM"
},
{
"alignment2": "TLBR"
},
{
"alignment3": "BL"
},
{
"ruleTimer":...
Subscribe to:
Posts (Atom)
Followers
Popular Posts
-
Sqlite Database is the best way of providing portability...
-
Necessity is the advent of everything today while doing...
-
Quick Sort is a Sorting Algorithm based on Divide And...