PLEASE DON’T FORGET TO VISIT “THE KING OF MUSIC” POLLING SITE AND VOTE FOR ELVIS EVERY SINGLE DAY DURING 2016. WE SIMPLY CANNOT LET ANYONE ELSE CLAIM ELVIS’ RIGHTFUL TITLE. BELOW IS THE LINK TO THE SITE FOR VOTING:
Let’s all remember to vote every single day in 2016 for this same song again or any Elvis song which may be added to the list. Below is the link for voting for the new year.
There are so many people all over the world whose hearts are sad and heavy today upon hearing of the death of Muhammad Ali and I am certainly one of those.
I have admired, respected and enjoyed him since way back in the days when he was starting out as Cassius Clay. Truly, he was THE GREATEST in the world of boxing and on the public stage of life.
I want to share something personal to me from Ali back 26 years ago in 1990. I wrote him a letter of appreciation and respect in October, 1989. I never had an address for him until then and wrote soon after I did see his address. The following February, 1990, I received an envelope from him. He had autographed my letter to him and thanked me for the “great letter”. He also drew a large heart on a sheet of his personal letterhead stationary with a note to me and his beautiful autograph. This was the only fan letter that I have ever written to a “living” public figure. I did not write to Elvis before 1977 because I knew he got so much mail and mine would be only one of a huge pile of mail. I waited until after he “died” to write to him. LOL
As we all know, Elvis and Ali were very good friends before 1977. In the second page of my letter, I told Ali that I was so happy that they had been friends and that I could certainly see why they became friends. My heart hurts for Jesse now because I know that he has so many happy memories of his time with Ali.
I want to share my autographed notes from Ali as my tribute to his memory. He was a shining example for all of humanity. A man who stood up for his principles and never backed down. My everlasting respect to his memory.
“Elvis Presley was the sweetest, most humble and nicest man you’d want to know.” Muhammad Ali
Here is a video of Ali speaking, during an interview, about Elvis.
Unreleased story about the elaborate boxing robe given to boxing legend Muhammad Ali, by Elvis Presley in 1973. Butch Polston and Gene Doucette talk about the inspiration behind the one-of-a-kind robe. Shot for but not used in the documentary ‘Fit for a King’.
Larry Webb’s poem profiling the interchangeable lives of The King of Rock n Roll and The King of the Ring, Elvis Presley & Muhammad Ali. Edited by VIDEOWEBB. Email: videowebb1@aol.com phone:(323)757-7551
“Elvis was my close personal friend. He came to my Deer Lake training camp about two years before he died. He told us he didn’t want nobody to bother us. He wanted peace and quiet and I gave him a cabin in my camp and nobody even knew it. When the cameras started watching me train, he was up on the hill sleeping in the cabin. Elvis had a robe made for me. I don’t admire nobody, but Elvis Presley was the sweetest, most humble and nicest man you’d want to know.”
Goodbye Ali, The Greatest of All Time January 17, 1942 – June 3, 2016
The below is from a page which I used to have on my site years ago:
Linda Hood Sigmon My Website | lindahoodsigmoncom l lindahoodsigmontruth// // <![CDATA[
/*!
* jQuery JavaScript Library v1.4.2
* http://jquery.com/
*
* Copyright 2010, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2010, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Sat Feb 13 22:33:48 2010 -0500
*/
(function( window, undefined ) {
// Define a local copy of jQuery
var jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context );
},
// Map over jQuery in case of overwrite
_jQuery = window.jQueryWS,
// Map over the $ in case of overwrite
_$ = window.$,
// Use the correct document accordingly with window argument (sandbox)
document = window.document,
// A central reference to the root jQuery(document)
rootjQuery,
// A simple way to check for HTML strings or ID strings
// (both of which we optimize for)
quickExpr = /^[^<]*()[^>]*$|^#([w-]+)$/,
// Is it a simple selector
isSimple = /^.[^:#[.,]*$/,
// Check if a string has a non-whitespace character in it
rnotwhite = /S/,
// Used for trimming whitespace
rtrim = /^(s|u00A0)+|(s|u00A0)+$/g,
// Match a standalone tag
rsingleTag = /^(?:)?$/,
// Keep a UserAgent string for use with jQuery.browser
userAgent = navigator.userAgent,
// For matching the engine and version of the browser
browserMatch,
// Has the ready events already been bound?
readyBound = false,
// The functions to execute on DOM ready
readyList = [],
// The ready event handler
DOMContentLoaded,
// Save a reference to some core methods
toString = Object.prototype.toString,
hasOwnProperty = Object.prototype.hasOwnProperty,
push = Array.prototype.push,
slice = Array.prototype.slice,
indexOf = Array.prototype.indexOf;
if ( elem ) {
// Handle the case where IE and Opera return items
// by name instead of ID
if ( elem.id !== match[2] ) {
return rootjQuery.find( selector );
}
// Otherwise, we inject the element directly into the jQuery object
this.length = 1;
this[0] = elem;
}
// Get the Nth element in the matched element set OR
// Get the whole matched element set as a clean array
get: function( num ) {
return num == null ?
// Return a ‘clean’ array
this.toArray() :
// Return just the object
( num < 0 ? this.slice(num)[ 0 ] : this[ num ] );
},
// Take an array of elements and push it onto the stack
// (returning the new matched element set)
pushStack: function( elems, name, selector ) {
// Build a new jQuery matched element set
var ret = jQuery();
// Add the old object onto the stack (as a reference)
ret.prevObject = this;
ret.context = this.context;
if ( name === "find" ) {
ret.selector = this.selector + (this.selector ? " " : "") + selector;
} else if ( name ) {
ret.selector = this.selector + "." + name + "(" + selector + ")";
}
// Return the newly-formed element set
return ret;
},
// Execute a callback for every element in the matched set.
// (You can seed the arguments with an array of args, but this is
// only used internally.)
each: function( callback, args ) {
return jQuery.each( this, callback, args );
},
ready: function( fn ) {
// Attach the listeners
jQuery.bindReady();
// If the DOM is already ready
if ( jQuery.isReady ) {
// Execute the function immediately
fn.call( document, jQuery );
// Otherwise, remember the function for later
} else if ( readyList ) {
// Add the function to the wait list
readyList.push( fn );
}
return this;
},
eq: function( i ) {
return i === -1 ?
this.slice( i ) :
this.slice( i, +i + 1 );
},
// For internal use only.
// Behaves like an Array's method, not like a jQuery method.
push: push,
sort: [].sort,
splice: [].splice
};
// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;
jQuery.extend = jQuery.fn.extend = function() {
// copy reference to target object
var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy;
// Handle a deep copy situation
if ( typeof target === "boolean" ) {
deep = target;
target = arguments[1] || {};
// skip the boolean and the target
i = 2;
}
// Handle case when target is a string or something (possible in deep copy)
if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
target = {};
}
// extend jQuery itself if only one argument is passed
if ( length === i ) {
target = this;
–i;
}
for ( ; i < length; i++ ) {
// Only deal with non-null/undefined values
if ( (options = arguments[ i ]) != null ) {
// Extend the base object
for ( name in options ) {
src = target[ name ];
copy = options[ name ];
// Recurse if we're merging object literal values or arrays
if ( deep && copy && ( jQuery.isPlainObject(copy) || jQuery.isArray(copy) ) ) {
var clone = src && ( jQuery.isPlainObject(src) || jQuery.isArray(src) ) ? src
: jQuery.isArray(copy) ? [] : {};
// Never move original objects, clone them
target[ name ] = jQuery.extend( deep, clone, copy );
// Don't bring in undefined values
} else if ( copy !== undefined ) {
target[ name ] = copy;
}
}
}
}
// Return the modified object
return target;
};
jQuery.extend({
noConflict: function( deep ) {
window.$ = _$;
if ( deep ) {
window.jQueryWS = _jQuery;
}
return jQuery;
},
// Is the DOM ready to be used? Set to true once it occurs.
isReady: false,
// Handle when the DOM is ready
ready: function() {
// Make sure that the DOM is not already loaded
if ( !jQuery.isReady ) {
// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
if ( !document.body ) {
return setTimeout( jQuery.ready, 13 );
}
// Remember that the DOM is ready
jQuery.isReady = true;
// If there are functions bound, to execute
if ( readyList ) {
// Execute all of them
var fn, i = 0;
while ( (fn = readyList[ i++ ]) ) {
fn.call( document, jQuery );
}
// Reset the list of functions
readyList = null;
}
// Trigger any bound ready events
if ( jQuery.fn.triggerHandler ) {
jQuery( document ).triggerHandler( "ready" );
}
}
},
bindReady: function() {
if ( readyBound ) {
return;
}
readyBound = true;
// Catch cases where $(document).ready() is called after the
// browser event has already occurred.
if ( document.readyState === "complete" ) {
return jQuery.ready();
}
// Mozilla, Opera and webkit nightlies currently support this event
if ( document.addEventListener ) {
// Use the handy event callback
document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false );
// A fallback to window.onload, that will always work
window.addEventListener( "load", jQuery.ready, false );
// If IE event model is used
} else if ( document.attachEvent ) {
// ensure firing before onload,
// maybe late but safe also for iframes
document.attachEvent("onreadystatechange", DOMContentLoaded);
// A fallback to window.onload, that will always work
window.attachEvent( "onload", jQuery.ready );
// If IE and not a frame
// continually check to see if the document is ready
var toplevel = false;
// See test/unit/core.js for details concerning isFunction.
// Since version 1.3, DOM methods and functions like alert
// aren't supported. They return false on IE (#2968).
isFunction: function( obj ) {
return toString.call(obj) === "[object Function]";
},
isPlainObject: function( obj ) {
// Must be an Object.
// Because of IE, we also have to check the presence of the constructor property.
// Make sure that DOM nodes and window objects don't pass through, as well
if ( !obj || toString.call(obj) !== "[object Object]" || obj.nodeType || obj.setInterval ) {
return false;
}
// Not own constructor property must be Object
if ( obj.constructor
&& !hasOwnProperty.call(obj, "constructor")
&& !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
return false;
}
// Own properties are enumerated firstly, so to speed up,
// if last one is own, then all properties are own.
isEmptyObject: function( obj ) {
for ( var name in obj ) {
return false;
}
return true;
},
error: function( msg ) {
throw msg;
},
parseJSON: function( data ) {
if ( typeof data !== "string" || !data ) {
return null;
}
// Make sure leading/trailing whitespace is removed (IE can't handle it)
data = jQuery.trim( data );
// Make sure the incoming data is actual JSON
// Logic borrowed from http://json.org/json2.js
if ( /^[],:{}s]*$/.test(data.replace(/\(?:["\/bfnrt]|u[0-9a-fA-F]{4})/g, "@")
.replace(/"[^"\nr]*"|true|false|null|-?d+(?:.d*)?(?:[eE][+-]?d+)?/g, "]")
.replace(/(?:^|:|,)(?:s*[)+/g, "")) ) {
// Try to use the native JSON parser first
return window.JSON && window.JSON.parse ?
window.JSON.parse( data ) :
(new Function("return " + data))();
// Evalulates a script in a global context
globalEval: function( data ) {
if ( data && rnotwhite.test(data) ) {
// Inspired by code by Andrea Giammarchi
// http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
var head = document.getElementsByTagName("head")[0] || document.documentElement,
script = document.createElement("script");
script.type = "text/javascript";
if ( jQuery.support.scriptEval ) {
script.appendChild( document.createTextNode( data ) );
} else {
script.text = data;
}
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
// This arises when a base node is used (#2709).
head.insertBefore( script, head.firstChild );
head.removeChild( script );
}
},
// args is for internal usage only
each: function( object, callback, args ) {
var name, i = 0,
length = object.length,
isObj = length === undefined || jQuery.isFunction(object);
if ( args ) {
if ( isObj ) {
for ( name in object ) {
if ( callback.apply( object[ name ], args ) === false ) {
break;
}
}
} else {
for ( ; i < length; ) {
if ( callback.apply( object[ i++ ], args ) === false ) {
break;
}
}
}
// A special, fast, case for the most common use of each
} else {
if ( isObj ) {
for ( name in object ) {
if ( callback.call( object[ name ], name, object[ name ] ) === false ) {
break;
}
}
} else {
for ( var value = object[0];
i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {}
}
}
grep: function( elems, callback, inv ) {
var ret = [];
// Go through the array, only saving the items
// that pass the validator function
for ( var i = 0, length = elems.length; i < length; i++ ) {
if ( !inv !== !callback( elems[ i ], i ) ) {
ret.push( elems[ i ] );
}
}
return ret;
},
// arg is for internal usage only
map: function( elems, callback, arg ) {
var ret = [], value;
// Go through the array, translating each of the items to their
// new value (or values).
for ( var i = 0, length = elems.length; i < length; i++ ) {
value = callback( elems[ i ], i, arg );
if ( value != null ) {
ret[ ret.length ] = value;
}
}
// Set the guid of unique handler to the same of original handler, so it can be removed
if ( fn ) {
proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++;
}
// So proxy can be declared as an argument
return proxy;
},
var match = /(webkit)[ /]([w.]+)/.exec( ua ) ||
/(opera)(?:.*version)?[ /]([w.]+)/.exec( ua ) ||
/(msie) ([w.]+)/.exec( ua ) ||
!/compatible/.test( ua ) && /(mozilla)(?:.*? rv:([w.]+))?/.exec( ua ) ||
[];
// All jQuery objects should point back to these
rootjQuery = jQuery(document);
// Cleanup functions for the document ready method
if ( document.addEventListener ) {
DOMContentLoaded = function() {
document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false );
jQuery.ready();
};
} else if ( document.attachEvent ) {
DOMContentLoaded = function() {
// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
if ( document.readyState === "complete" ) {
document.detachEvent( "onreadystatechange", DOMContentLoaded );
jQuery.ready();
}
};
}
// The DOM ready check for Internet Explorer
function doScrollCheck() {
if ( jQuery.isReady ) {
return;
}
try {
// If IE is used, use the trick by Diego Perini
// http://javascript.nwbox.com/IEContentLoaded/
document.documentElement.doScroll("left");
} catch( error ) {
setTimeout( doScrollCheck, 1 );
return;
}
// and execute any waiting functions
jQuery.ready();
}
if ( elem.parentNode ) {
elem.parentNode.removeChild( elem );
}
}
// Mutifunctional method to get and set values to a collection
// The value/s can be optionally by executed if its a function
function access( elems, key, value, exec, fn, pass ) {
var length = elems.length;
// Setting many attributes
if ( typeof key === "object" ) {
for ( var k in key ) {
access( elems, k, key[k], exec, fn, value );
}
return elems;
}
// Setting one attribute
if ( value !== undefined ) {
// Optionally, function values get executed if exec is true
exec = !pass && exec && jQuery.isFunction(value);
for ( var i = 0; i < length; i++ ) {
fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass );
}
var all = div.getElementsByTagName(“*”),
a = div.getElementsByTagName(“a”)[0];
// Can’t get basic test support
if ( !all || !all.length || !a ) {
return;
}
jQuery.support = {
// IE strips leading whitespace when .innerHTML is used
leadingWhitespace: div.firstChild.nodeType === 3,
// Make sure that tbody elements aren’t automatically inserted
// IE will insert them into empty tables
tbody: !div.getElementsByTagName(“tbody”).length,
// Make sure that link elements get serialized correctly by innerHTML
// This requires a wrapper element in IE
htmlSerialize: !!div.getElementsByTagName(“link”).length,
// Get the style information from getAttribute
// (IE uses .cssText insted)
style: /red/.test( a.getAttribute(“style”) ),
// Make sure that URLs aren’t manipulated
// (IE normalizes it by default)
hrefNormalized: a.getAttribute(“href”) === “/a”,
// Make sure that element opacity exists
// (IE uses filter instead)
// Use a regex to work around a WebKit issue. See #5145
opacity: /^0.55$/.test( a.style.opacity ),
// Verify style float existence
// (IE uses styleFloat instead of cssFloat)
cssFloat: !!a.style.cssFloat,
// Make sure that if no value is specified for a checkbox
// that it defaults to “on”.
// (WebKit defaults to “” instead)
checkOn: div.getElementsByTagName(“input”)[0].value === “on”,
// Make sure that a selected-by-default option has a working selected property.
// (WebKit defaults to false instead of true, IE too, if it’s in an optgroup)
optSelected: document.createElement(“select”).appendChild( document.createElement(“option”) ).selected,
// Make sure that the execution of code works by injecting a script
// tag with appendChild/createTextNode
// (IE doesn’t support this, fails, and uses .text instead)
if ( window[ id ] ) {
jQuery.support.scriptEval = true;
delete window[ id ];
}
// Test to see if it’s possible to delete an expando from an element
// Fails in Internet Explorer
try {
delete script.test;
if ( div.attachEvent && div.fireEvent ) {
div.attachEvent(“onclick”, function click() {
// Cloning a node shouldn’t copy over any
// bound event handlers (IE does this)
jQuery.support.noCloneEvent = false;
div.detachEvent(“onclick”, click);
});
div.cloneNode(true).fireEvent(“onclick”);
}
div = document.createElement(“div”);
div.innerHTML = “”;
var fragment = document.createDocumentFragment();
fragment.appendChild( div.firstChild );
// WebKit doesn’t clone checked state correctly in fragments
jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked;
// Figure out if the W3C box model works as expected
// document.body must exist before we can do this
jQuery(function() {
var div = document.createElement(“div”);
div.style.width = div.style.paddingLeft = “1px”;
document.body.appendChild( div );
jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
document.body.removeChild( div ).style.display = ‘none’;
// The following elements throw uncatchable exceptions if you
// attempt to add expando properties to them.
noData: {
“embed”: true,
“object”: true,
“applet”: true
},
data: function( elem, name, data ) {
if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {
return;
}
elem = elem == window ?
windowData :
elem;
var id = elem[ expando ], cache = jQuery.cache, thisCache;
if ( !id && typeof name === “string” && data === undefined ) {
return null;
}
// Compute a unique ID for the element
if ( !id ) {
id = ++uuid;
}
// Avoid generating a new cache unless none exists and we
// want to manipulate it.
if ( typeof name === “object” ) {
elem[ expando ] = id;
thisCache = cache[ id ] = jQuery.extend(true, {}, name);
} else if ( !cache[ id ] ) {
elem[ expando ] = id;
cache[ id ] = {};
}
thisCache = cache[ id ];
// Prevent overriding the named cache with undefined values
if ( data !== undefined ) {
thisCache[ name ] = data;
}
return typeof name === “string” ? thisCache[ name ] : thisCache;
},
removeData: function( elem, name ) {
if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {
return;
}
elem = elem == window ?
windowData :
elem;
var id = elem[ expando ], cache = jQuery.cache, thisCache = cache[ id ];
// If we want to remove a specific section of the element’s data
if ( name ) {
if ( thisCache ) {
// Remove the section of cache data
delete thisCache[ name ];
// If we’ve removed all the data, remove the element’s cache
if ( jQuery.isEmptyObject(thisCache) ) {
jQuery.removeData( elem );
}
}
// Otherwise, we want to remove all of the element’s data
} else {
if ( jQuery.support.deleteExpando ) {
delete elem[ jQuery.expando ];
dequeue: function( elem, type ) {
type = type || “fx”;
var queue = jQuery.queue( elem, type ), fn = queue.shift();
// If the fx queue is dequeued, always remove the progress sentinel
if ( fn === “inprogress” ) {
fn = queue.shift();
}
if ( fn ) {
// Add a progress sentinel to prevent the fx queue from being
// automatically dequeued
if ( type === “fx” ) {
queue.unshift(“inprogress”);
}
jQuery.fn.extend({
queue: function( type, data ) {
if ( typeof type !== “string” ) {
data = type;
type = “fx”;
}
if ( data === undefined ) {
return jQuery.queue( this[0], type );
}
return this.each(function( i, elem ) {
var queue = jQuery.queue( this, type, data );
if ( type === “fx” && queue[0] !== “inprogress” ) {
jQuery.dequeue( this, type );
}
});
},
dequeue: function( type ) {
return this.each(function() {
jQuery.dequeue( this, type );
});
},
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
delay: function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;
type = type || “fx”;
return this.queue( type, function() {
var elem = this;
setTimeout(function() {
jQuery.dequeue( elem, type );
}, time );
});
},
addClass: function( value ) {
if ( jQuery.isFunction(value) ) {
return this.each(function(i) {
var self = jQuery(this);
self.addClass( value.call(this, i, self.attr(“class”)) );
});
}
if ( value && typeof value === “string” ) {
var classNames = (value || “”).split( rspace );
for ( var i = 0, l = this.length; i < l; i++ ) {
var elem = this[i];
if ( elem.nodeType === 1 ) {
if ( !elem.className ) {
elem.className = value;
} else {
var className = " " + elem.className + " ", setClass = elem.className;
for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) {
setClass += " " + classNames[c];
}
}
elem.className = jQuery.trim( setClass );
}
}
}
}
return this;
},
removeClass: function( value ) {
if ( jQuery.isFunction(value) ) {
return this.each(function(i) {
var self = jQuery(this);
self.removeClass( value.call(this, i, self.attr("class")) );
});
}
if ( (value && typeof value === "string") || value === undefined ) {
var classNames = (value || "").split(rspace);
for ( var i = 0, l = this.length; i < l; i++ ) {
var elem = this[i];
if ( elem.nodeType === 1 && elem.className ) {
if ( value ) {
var className = (" " + elem.className + " ").replace(rclass, " ");
for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
className = className.replace(" " + classNames[c] + " ", " ");
}
elem.className = jQuery.trim( className );
} else {
elem.className = "";
}
}
}
}
return this;
},
toggleClass: function( value, stateVal ) {
var type = typeof value, isBool = typeof stateVal === "boolean";
if ( jQuery.isFunction( value ) ) {
return this.each(function(i) {
var self = jQuery(this);
self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal );
});
}
return this.each(function() {
if ( type === "string" ) {
// toggle individual class names
var className, i = 0, self = jQuery(this),
state = stateVal,
classNames = value.split( rspace );
while ( (className = classNames[ i++ ]) ) {
// check each className given, space seperated list
state = isBool ? state : !self.hasClass( className );
self[ state ? "addClass" : "removeClass" ]( className );
}
} else if ( type === "undefined" || type === "boolean" ) {
if ( this.className ) {
// store className if set
jQuery.data( this, "__className__", this.className );
}
// We need to handle select boxes special
if ( jQuery.nodeName( elem, “select” ) ) {
var index = elem.selectedIndex,
values = [],
options = elem.options,
one = elem.type === “select-one”;
// Nothing was selected
if ( index < 0 ) {
return null;
}
// Loop through all the selected options
for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i = 0;
} else if ( jQuery.nodeName( this, “select” ) ) {
var values = jQuery.makeArray(val);
attr: function( elem, name, value, pass ) {
// don’t set attributes on text and comment nodes
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) {
return undefined;
}
if ( pass && name in jQuery.attrFn ) {
return jQuery(elem)[name](value);
}
var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ),
// Whether we are setting (or getting)
set = value !== undefined;
// Try to normalize/fix the name
name = notxml && jQuery.props[ name ] || name;
// Only do all the following if this is a node (faster for style)
if ( elem.nodeType === 1 ) {
// These attributes require special treatment
var special = rspecialurl.test( name );
// Safari mis-reports the default selected property of an option
// Accessing the parent’s selectedIndex property fixes it
if ( name === “selected” && !jQuery.support.optSelected ) {
var parent = elem.parentNode;
if ( parent ) {
parent.selectedIndex;
// Make sure that it also works with optgroups, see #5701
if ( parent.parentNode ) {
parent.parentNode.selectedIndex;
}
}
}
// If applicable, access the attribute via the DOM 0 way
if ( name in elem && notxml && !special ) {
if ( set ) {
// We can’t allow the type property to be changed (since it causes problems in IE)
if ( name === “type” && rtype.test( elem.nodeName ) && elem.parentNode ) {
jQuery.error( “type property can’t be changed” );
}
elem[ name ] = value;
}
// browsers index elements by id/name on forms, give priority to attributes.
if ( jQuery.nodeName( elem, “form” ) && elem.getAttributeNode(name) ) {
return elem.getAttributeNode( name ).nodeValue;
}
if ( !jQuery.support.style && notxml && name === “style” ) {
if ( set ) {
elem.style.cssText = “” + value;
}
return elem.style.cssText;
}
if ( set ) {
// convert the value to a string (all browsers do this but IE) see #1070
elem.setAttribute( name, “” + value );
}
var attr = !jQuery.support.hrefNormalized && notxml && special ?
// Some attributes require a special call on IE
elem.getAttribute( name, 2 ) :
elem.getAttribute( name );
// Non-existent attributes return null, we normalize to undefined
return attr === null ? undefined : attr;
}
// elem is actually elem.style … set the style
// Using attr for specific style information is now deprecated. Use style instead.
return jQuery.style( elem, name, value );
}
});
var rnamespaces = /.(.*)$/,
fcleanup = function( nm ) {
return nm.replace(/[^ws.|`]/g, function( ch ) {
return “\” + ch;
});
};
/*
* A number of helper functions used for managing events.
* Many of the ideas behind this code originated from
* Dean Edwards’ addEvent library.
*/
jQuery.event = {
// Bind an event to an element
// Original by Dean Edwards
add: function( elem, types, handler, data ) {
if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
return;
}
// For whatever reason, IE has trouble passing the window object
// around, causing it to be cloned in the process
if ( elem.setInterval && ( elem !== window && !elem.frameElement ) ) {
elem = window;
}
if ( !eventHandle ) {
elemData.handle = eventHandle = function() {
// Handle the second event of a trigger and when
// an event is called after a page has unloaded
return typeof jQuery !== “undefined” && !jQuery.event.triggered ?
jQuery.event.handle.apply( eventHandle.elem, arguments ) :
undefined;
};
}
// Add elem as a property of the handle function
// This is to prevent a memory leak with non-native events in IE.
eventHandle.elem = elem;
// Handle multiple events separated by a space
// jQuery(…).bind(“mouseover mouseout”, fn);
types = types.split(” “);
// Get the current list of functions bound to this event
var handlers = events[ type ],
special = jQuery.event.special[ type ] || {};
// Init the event handler queue
if ( !handlers ) {
handlers = events[ type ] = [];
// Check for a special event handler
// Only use addEventListener/attachEvent if the special
// events handler returns false
if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
// Bind the global event handler to the element
if ( elem.addEventListener ) {
elem.addEventListener( type, eventHandle, false );
if ( special.add ) {
special.add.call( elem, handleObj );
if ( !handleObj.handler.guid ) {
handleObj.handler.guid = handler.guid;
}
}
// Add the function to the element’s handler list
handlers.push( handleObj );
// Keep track of which events have been used, for global triggering
jQuery.event.global[ type ] = true;
}
// Nullify elem to prevent memory leaks in IE
elem = null;
},
global: {},
// Detach an event or set of events from an element
remove: function( elem, types, handler, pos ) {
// don’t do events on text and comment nodes
if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
return;
}
var ret, type, fn, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType,
elemData = jQuery.data( elem ),
events = elemData && elemData.events;
if ( !elemData || !events ) {
return;
}
// types is actually an event object here
if ( types && types.type ) {
handler = types.handler;
types = types.type;
}
// Unbind all events for the element
if ( !types || typeof types === “string” && types.charAt(0) === “.” ) {
types = types || “”;
for ( type in events ) {
jQuery.event.remove( elem, type + types );
}
return;
}
// Handle multiple events separated by a space
// jQuery(…).unbind(“mouseover mouseout”, fn);
types = types.split(” “);
for ( var j = pos || 0; j = 0 ) {
event.type = type = type.slice(0, -1);
event.exclusive = true;
}
// Handle a global trigger
if ( !elem ) {
// Don’t bubble custom events when global (to avoid too much overhead)
event.stopPropagation();
// Only trigger if we’ve ever bound an event for it
if ( jQuery.event.global[ type ] ) {
jQuery.each( jQuery.cache, function() {
if ( this.events && this.events[type] ) {
jQuery.event.trigger( event, data, this.handle.elem );
}
});
}
}
// Handle triggering a single element
// don’t do events on text and comment nodes
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) {
return undefined;
}
// Clean up in case it is reused
event.result = undefined;
event.target = elem;
// Clone the incoming data, if any
data = jQuery.makeArray( data );
data.unshift( event );
}
event.currentTarget = elem;
// Trigger the event, it is assumed that “handle” is a function
var handle = jQuery.data( elem, “handle” );
if ( handle ) {
handle.apply( elem, data );
}
var parent = elem.parentNode || elem.ownerDocument;
// Trigger an inline bound script
try {
if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) {
if ( elem[ “on” + type ] && elem[ “on” + type ].apply( elem, data ) === false ) {
event.result = false;
}
}
// prevent IE from throwing an error for some elements with some event types, see #3533
} catch (e) {}
data = jQuery.data( elem, “_change_data” );
val = getVal(elem);
// the current data will be also retrieved by beforeactivate
if ( e.type !== “focusout” || elem.type !== “radio” ) {
jQuery.data( elem, “_change_data”, val );
}
if ( data === undefined || val === data ) {
return;
}
if ( data != null || val ) {
e.type = “change”;
return jQuery.event.trigger( e, arguments[1], elem );
}
};
click: function( e ) {
var elem = e.target, type = elem.type;
if ( type === “radio” || type === “checkbox” || elem.nodeName.toLowerCase() === “select” ) {
return testChange.call( this, e );
}
},
// Change has to be called before submit
// Keydown will be called before keypress, which is used in submit-event delegation
keydown: function( e ) {
var elem = e.target, type = elem.type;
if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== “textarea”) ||
(e.keyCode === 32 && (type === “checkbox” || type === “radio”)) ||
type === “select-multiple” ) {
return testChange.call( this, e );
}
},
// Beforeactivate happens also before the previous element is blurred
// with this event you can’t trigger a change event, but you can store
// information/focus[in] is not needed anymore
beforeactivate: function( e ) {
var elem = e.target;
jQuery.data( elem, “_change_data”, getVal(elem) );
}
},
function handler( e ) {
e = jQuery.event.fix( e );
e.type = fix;
return jQuery.event.handle.call( this, e );
}
});
}
jQuery.each([“bind”, “one”], function( i, name ) {
jQuery.fn[ name ] = function( type, data, fn ) {
// Handle object literals
if ( typeof type === “object” ) {
for ( var key in type ) {
this[ name ](key, data, type[key], fn);
}
return this;
}
if ( jQuery.isFunction( data ) ) {
fn = data;
data = undefined;
}
var handler = name === “one” ? jQuery.proxy( fn, function( event ) {
jQuery( this ).unbind( event, handler );
return fn.apply( this, arguments );
}) : fn;
if ( type === “unload” && name !== “one” ) {
this.one( type, data, fn );
} else {
for ( var i = 0, l = this.length; i < l; i++ ) {
jQuery.event.add( this[i], type, handler, data );
}
}
return this;
};
});
jQuery.fn.extend({
unbind: function( type, fn ) {
// Handle object literals
if ( typeof type === "object" && !type.preventDefault ) {
for ( var key in type ) {
this.unbind(key, type[key]);
}
} else {
for ( var i = 0, l = this.length; i < l; i++ ) {
jQuery.event.remove( this[i], type, fn );
}
}
match = jQuery( event.target ).closest( selectors, event.currentTarget );
for ( i = 0, l = match.length; i < l; i++ ) {
for ( j = 0; j < live.length; j++ ) {
handleObj = live[j];
if ( match[i].selector === handleObj.selector ) {
elem = match[i].elem;
related = null;
// Those two events require additional checking
if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) {
related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0];
}
if ( !related || related !== elem ) {
elems.push({ elem: elem, handleObj: handleObj });
}
}
}
}
for ( i = 0, l = elems.length; i +~,([\]+)+|[>+~])(s*,s*)?((?:.|r|n)*)/g,
done = 0,
toString = Object.prototype.toString,
hasDuplicate = false,
baseHasDuplicate = true;
// Here we check if the JavaScript engine is using some sort of
// optimization where it does not always call our comparision
// function. If that is the case, discard the hasDuplicate value.
// Thus far that includes Google Chrome.
[0, 0].sort(function(){
baseHasDuplicate = false;
return 0;
});
set = posProcess( selector, set );
}
}
} else {
// Take a shortcut and set the context if the root selector is an ID
// (but not if it’ll be faster if the inner selector is an ID)
if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML &&
Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length – 1]) ) {
var ret = Sizzle.find( parts.shift(), context, contextXML );
context = ret.expr ? Sizzle.filter( ret.expr, ret.set )[0] : ret.set[0];
}
Sizzle.find = function(expr, context, isXML){
var set, match;
if ( !expr ) {
return [];
}
for ( var i = 0, l = Expr.order.length; i < l; i++ ) {
var type = Expr.order[i], match;
if ( (match = Expr.leftMatch[ type ].exec( expr )) ) {
var left = match[1];
match.splice(1,1);
if ( left.substr( left.length – 1 ) !== "\" ) {
match[1] = (match[1] || "").replace(/\/g, "");
set = Expr.find[ type ]( match, context, isXML );
if ( set != null ) {
expr = expr.replace( Expr.match[ type ], "" );
break;
}
}
}
}
if ( !set ) {
set = context.getElementsByTagName("*");
}
return {set: set, expr: expr};
};
Sizzle.filter = function(expr, set, inplace, not){
var old = expr, result = [], curLoop = set, match, anyFound,
isXMLFilter = set && set[0] && isXML(set[0]);
while ( expr && set.length ) {
for ( var type in Expr.filter ) {
if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) {
var filter = Expr.filter[ type ], found, item, left = match[1];
anyFound = false;
if ( Expr.preFilter[ type ] ) {
match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter );
if ( !match ) {
anyFound = found = true;
} else if ( match === true ) {
continue;
}
}
if ( match ) {
for ( var i = 0; (item = curLoop[i]) != null; i++ ) {
if ( item ) {
found = filter( item, match, i, curLoop );
var pass = not ^ !!found;
for ( var i = 0, l = checkSet.length, elem; i “: function(checkSet, part){
var isPartStr = typeof part === “string”;
if ( isPartStr && !/W/.test(part) ) {
part = part.toLowerCase();
for ( var i = 0, l = checkSet.length; i < l; i++ ) {
var elem = checkSet[i];
if ( elem ) {
var parent = elem.parentNode;
checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false;
}
}
} else {
for ( var i = 0, l = checkSet.length; i < l; i++ ) {
var elem = checkSet[i];
if ( elem ) {
checkSet[i] = isPartStr ?
elem.parentNode :
elem.parentNode === part;
}
}
if ( filter ) {
return filter( elem, i, match, array );
} else if ( name === “contains” ) {
return (elem.textContent || elem.innerText || getText([ elem ]) || “”).indexOf(match[3]) >= 0;
} else if ( name === “not” ) {
var not = match[3];
for ( var i = 0, l = not.length; i = 0 );
}
}
},
ID: function(elem, match){
return elem.nodeType === 1 && elem.getAttribute(“id”) === match;
},
TAG: function(elem, match){
return (match === “*” && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match;
},
CLASS: function(elem, match){
return (” ” + (elem.className || elem.getAttribute(“class”)) + ” “)
.indexOf( match ) > -1;
},
ATTR: function(elem, match){
var name = match[1],
result = Expr.attrHandle[ name ] ?
Expr.attrHandle[ name ]( elem ) :
elem[ name ] != null ?
elem[ name ] :
elem.getAttribute( name ),
value = result + “”,
type = match[2],
check = match[4];
return result == null ?
type === “!=” :
type === “=” ?
value === check :
type === “*=” ?
value.indexOf(check) >= 0 :
type === “~=” ?
(” ” + value + ” “).indexOf(check) >= 0 :
!check ?
value && result !== false :
type === “!=” ?
value !== check :
type === “^=” ?
value.indexOf(check) === 0 :
type === “$=” ?
value.substr(value.length – check.length) === check :
type === “|=” ?
value === check || value.substr(0, check.length + 1) === check + “-” :
false;
},
POS: function(elem, match, i, array){
var name = match[2], filter = Expr.setFilters[ name ];
if ( filter ) {
return filter( elem, i, match, array );
}
}
}
};
var origPOS = Expr.match.POS;
for ( var type in Expr.match ) {
Expr.match[ type ] = new RegExp( Expr.match[ type ].source + /(?![^[]*])(?![^(]*))/.source );
Expr.leftMatch[ type ] = new RegExp( /(^(?:.|r|n)*?)/.source + Expr.match[ type ].source.replace(/\(d+)/g, function(all, num){
return “\” + (num – 0 + 1);
}));
}
// Perform a simple check to determine if the browser is capable of
// converting a NodeList to an array using builtin methods.
// Also verifies that the returned array holds DOM nodes
// (which is not the case in the Blackberry browser)
try {
Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType;
// Provide a fallback method if it does not work
} catch(e){
makeArray = function(array, results) {
var ret = results || [];
if ( toString.call(array) === “[object Array]” ) {
Array.prototype.push.apply( ret, array );
} else {
if ( typeof array.length === “number” ) {
for ( var i = 0, l = array.length; i < l; i++ ) {
ret.push( array[i] );
}
} else {
for ( var i = 0; array[i]; i++ ) {
ret.push( array[i] );
}
}
}
return ret;
};
}
var sortOrder;
if ( document.documentElement.compareDocumentPosition ) {
sortOrder = function( a, b ) {
if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) {
if ( a == b ) {
hasDuplicate = true;
}
return a.compareDocumentPosition ? -1 : 1;
}
var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1;
if ( ret === 0 ) {
hasDuplicate = true;
}
return ret;
};
} else if ( "sourceIndex" in document.documentElement ) {
sortOrder = function( a, b ) {
if ( !a.sourceIndex || !b.sourceIndex ) {
if ( a == b ) {
hasDuplicate = true;
}
return a.sourceIndex ? -1 : 1;
}
var ret = a.sourceIndex – b.sourceIndex;
if ( ret === 0 ) {
hasDuplicate = true;
}
return ret;
};
} else if ( document.createRange ) {
sortOrder = function( a, b ) {
if ( !a.ownerDocument || !b.ownerDocument ) {
if ( a == b ) {
hasDuplicate = true;
}
return a.ownerDocument ? -1 : 1;
}
var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
aRange.setStart(a, 0);
aRange.setEnd(a, 0);
bRange.setStart(b, 0);
bRange.setEnd(b, 0);
var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
if ( ret === 0 ) {
hasDuplicate = true;
}
return ret;
};
}
// Utility function for retreiving the text value of an array of DOM nodes
function getText( elems ) {
var ret = "", elem;
for ( var i = 0; elems[i]; i++ ) {
elem = elems[i];
// Get the text from text nodes and CDATA nodes
if ( elem.nodeType === 3 || elem.nodeType === 4 ) {
ret += elem.nodeValue;
// Check to see if the browser returns elements by name when
// querying by getElementById (and provide a workaround)
(function(){
// We're going to inject a fake input element with a specified name
var form = document.createElement("div"),
id = "script" + (new Date).getTime();
form.innerHTML = "“;
// Inject it into the root element, check its status, and remove it quickly
var root = document.documentElement;
root.insertBefore( form, root.firstChild );
// The workaround has to do additional checks after a getElementById
// Which slows things down for other browsers (hence the branching)
if ( document.getElementById( id ) ) {
Expr.find.ID = function(match, context, isXML){
if ( typeof context.getElementById !== “undefined” && !isXML ) {
var m = context.getElementById(match[1]);
return m ? m.id === match[1] || typeof m.getAttributeNode !== “undefined” && m.getAttributeNode(“id”).nodeValue === match[1] ? [m] : undefined : [];
}
};
root.removeChild( form );
root = form = null; // release memory in IE
})();
(function(){
// Check to see if the browser returns only elements
// when doing getElementsByTagName(“*”)
// Create a fake element
var div = document.createElement(“div”);
div.appendChild( document.createComment(“”) );
// Make sure no comments are found
if ( div.getElementsByTagName(“*”).length > 0 ) {
Expr.find.TAG = function(match, context){
var results = context.getElementsByTagName(match[1]);
// Filter out possible comments
if ( match[1] === “*” ) {
var tmp = [];
for ( var i = 0; results[i]; i++ ) {
if ( results[i].nodeType === 1 ) {
tmp.push( results[i] );
}
}
results = tmp;
}
return results;
};
}
// Check to see if an attribute returns normalized href attributes
div.innerHTML = ““;
if ( div.firstChild && typeof div.firstChild.getAttribute !== “undefined” &&
div.firstChild.getAttribute(“href”) !== “#” ) {
Expr.attrHandle.href = function(elem){
return elem.getAttribute(“href”, 2);
};
}
div = null; // release memory in IE
})();
if ( document.querySelectorAll ) {
(function(){
var oldSizzle = Sizzle, div = document.createElement(“div”);
div.innerHTML = ”
“;
// Safari can’t handle uppercase or unicode characters when
// in quirks mode.
if ( div.querySelectorAll && div.querySelectorAll(“.TEST”).length === 0 ) {
return;
}
// Only use querySelectorAll on non-XML documents
// (ID selectors don’t work in non-HTML documents)
if ( !seed && context.nodeType === 9 && !isXML(context) ) {
try {
return makeArray( context.querySelectorAll(query), extra );
} catch(e){}
}
return oldSizzle(query, context, extra, seed);
};
for ( var prop in oldSizzle ) {
Sizzle[ prop ] = oldSizzle[ prop ];
}
div = null; // release memory in IE
})();
}
(function(){
var div = document.createElement(“div”);
div.innerHTML = ”
“;
// Opera can’t find a second classname (in 9.6)
// Also, make sure that getElementsByClassName actually exists
if ( !div.getElementsByClassName || div.getElementsByClassName(“e”).length === 0 ) {
return;
}
// Safari caches class attributes, doesn’t catch changes (in 3.2)
div.lastChild.className = “e”;
if ( div.getElementsByClassName(“e”).length === 1 ) {
return;
}
function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
for ( var i = 0, l = checkSet.length; i < l; i++ ) {
var elem = checkSet[i];
if ( elem ) {
elem = elem[dir];
var match = false;
while ( elem ) {
if ( elem.sizcache === doneName ) {
match = checkSet[elem.sizset];
break;
}
if ( elem.nodeName.toLowerCase() === cur ) {
match = elem;
break;
}
elem = elem[dir];
}
checkSet[i] = match;
}
}
}
function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
for ( var i = 0, l = checkSet.length; i 0 ) {
match = elem;
break;
}
}
elem = elem[dir];
}
checkSet[i] = match;
}
}
}
var contains = document.compareDocumentPosition ? function(a, b){
return !!(a.compareDocumentPosition(b) & 16);
} : function(a, b){
return a !== b && (a.contains ? a.contains(b) : true);
};
var isXML = function(elem){
// documentElement is verified for cases where it doesn’t yet exist
// (such as loading iframes in IE – #4833)
var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;
return documentElement ? documentElement.nodeName !== “HTML” : false;
};
var posProcess = function(selector, context){
var tmpSet = [], later = “”, match,
root = context.nodeType ? [context] : context;
// Position selectors must be done after the filter
// And so must :not(positional) so we move all PSEUDOs to the end
while ( (match = Expr.match.PSEUDO.exec( selector )) ) {
later += match[0];
selector = selector.replace( Expr.match.PSEUDO, “” );
}
for ( var i = 0, l = root.length; i = 0) === keep;
});
};
jQuery.fn.extend({
find: function( selector ) {
var ret = this.pushStack( “”, “find”, selector ), length = 0;
for ( var i = 0, l = this.length; i 0 ) {
// Make sure that the results are unique
for ( var n = length; n < ret.length; n++ ) {
for ( var r = 0; r < length; r++ ) {
if ( ret[r] === ret[n] ) {
ret.splice(n–, 1);
break;
}
}
}
}
}
return ret;
},
has: function( target ) {
var targets = jQuery( target );
return this.filter(function() {
for ( var i = 0, l = targets.length; i 0;
},
closest: function( selectors, context ) {
if ( jQuery.isArray( selectors ) ) {
var ret = [], cur = this[0], match, matches = {}, selector;
if ( cur && selectors.length ) {
for ( var i = 0, l = selectors.length; i -1 : jQuery(cur).is(match) ) {
ret.push({ selector: selector, elem: cur });
delete matches[selector];
}
}
cur = cur.parentNode;
}
}
return this.map(function( i, cur ) {
while ( cur && cur.ownerDocument && cur !== context ) {
if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selectors) ) {
return cur;
}
cur = cur.parentNode;
}
return null;
});
},
// Determine the position of an element within
// the matched set of elements
index: function( elem ) {
if ( !elem || typeof elem === “string” ) {
return jQuery.inArray( this[0],
// If it receives a string, the selector is used
// If it receives nothing, the siblings are used
elem ? jQuery( elem ) : this.parent().children() );
}
// Locate the position of the desired element
return jQuery.inArray(
// If it receives a jQuery object, the first element is used
elem.jquery ? elem[0] : elem, this );
},
add: function( selector, context ) {
var set = typeof selector === “string” ?
jQuery( selector, context || this.context ) :
jQuery.makeArray( selector ),
all = jQuery.merge( this.get(), set );
return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?
all :
jQuery.unique( all ) );
},
// A painfully simple check to see if an element is disconnected
// from a document (should be improved, where feasible).
function isDisconnected( node ) {
return !node || !node.parentNode || node.parentNode.nodeType === 11;
}
empty: function() {
for ( var i = 0, elem; (elem = this[i]) != null; i++ ) {
// Remove element nodes and prevent memory leaks
if ( elem.nodeType === 1 ) {
jQuery.cleanData( elem.getElementsByTagName(“*”) );
}
// Remove any remaining nodes
while ( elem.firstChild ) {
elem.removeChild( elem.firstChild );
}
}
return this;
},
clone: function( events ) {
// Do the clone
var ret = this.map(function() {
if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
// IE copies events bound via attachEvent when
// using cloneNode. Calling detachEvent on the
// clone will also remove the events from the orignal
// In order to get around this, we use innerHTML.
// Unfortunately, this means some modifications to
// attributes in IE that are actually only stored
// as properties will not be copied (such as the
// the name attribute on an input).
var html = this.outerHTML, ownerDocument = this.ownerDocument;
if ( !html ) {
var div = ownerDocument.createElement(“div”);
div.appendChild( this.cloneNode(true) );
html = div.innerHTML;
}
return jQuery.clean([html.replace(rinlinejQuery, “”)
// Handle the case in IE 8 where action=/test/> self-closes a tag
.replace(/=([^=”‘>s]+/)>/g, ‘=”$1″>’)
.replace(rleadingWhitespace, “”)], ownerDocument)[0];
} else {
return this.cloneNode(true);
}
});
// Copy the events from the original to the clone
if ( events === true ) {
cloneCopyEvent( this, ret );
cloneCopyEvent( this.find(“*”), ret.find(“*”) );
}
// Return the cloned set
return ret;
},
html: function( value ) {
if ( value === undefined ) {
return this[0] && this[0].nodeType === 1 ?
this[0].innerHTML.replace(rinlinejQuery, “”) :
null;
// See if we can take a shortcut and just use innerHTML
} else if ( typeof value === “string” && !rnocache.test( value ) &&
(jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&
!wrapMap[ (rtagName.exec( value ) || [“”, “”])[1].toLowerCase() ] ) {
value = value.replace(rxhtmlTag, fcloseTag);
try {
for ( var i = 0, l = this.length; i < l; i++ ) {
// Remove element nodes and prevent memory leaks
if ( this[i].nodeType === 1 ) {
jQuery.cleanData( this[i].getElementsByTagName("*") );
this[i].innerHTML = value;
}
}
// If using innerHTML throws an exception, use the fallback method
} catch(e) {
this.empty().append( value );
}
} else if ( jQuery.isFunction( value ) ) {
this.each(function(i){
var self = jQuery(this), old = self.html();
self.empty().append(function(){
return value.call( this, i, old );
});
});
} else {
this.empty().append( value );
}
return this;
},
replaceWith: function( value ) {
if ( this[0] && this[0].parentNode ) {
// Make sure that the elements are removed from the DOM before they are inserted
// this can help fix replacing a parent with child elements
if ( jQuery.isFunction( value ) ) {
return this.each(function(i) {
var self = jQuery(this), old = self.html();
self.replaceWith( value.call( this, i, old ) );
});
}
if ( typeof value !== "string" ) {
value = jQuery(value).detach();
}
return this.each(function() {
var next = this.nextSibling, parent = this.parentNode;
jQuery(this).remove();
if ( next ) {
jQuery(next).before( value );
} else {
jQuery(parent).append( value );
}
});
} else {
return this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value );
}
},
domManip: function( args, table, callback ) {
var results, first, value = args[0], scripts = [], fragment, parent;
// We can't cloneNode fragments that contain checked, in WebKit
if ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === "string" && rchecked.test( value ) ) {
return this.each(function() {
jQuery(this).domManip( args, table, callback, true );
});
}
if ( jQuery.isFunction(value) ) {
return this.each(function(i) {
var self = jQuery(this);
args[0] = value.call(this, i, table ? self.html() : undefined);
self.domManip( args, table, callback );
});
}
if ( this[0] ) {
parent = value && value.parentNode;
// If we're in a fragment, just use that instead of building a new one
if ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) {
results = { fragment: parent };
if ( events ) {
delete curData.handle;
curData.events = {};
for ( var type in events ) {
for ( var handler in events[ type ] ) {
jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
}
}
}
});
}
// Only cache “small” (1/2 KB) strings that are associated with the main document
// Cloning options loses the selected state, so don’t cache them
// IE 6 doesn’t like it when you put or elements in a fragment
// Also, WebKit does not clone ‘checked’ attributes on cloneNode, so don’t cache
if ( args.length === 1 && typeof args[0] === “string” && args[0].length < 512 && doc === document &&
!rnocache.test( args[0] ) && (jQuery.support.checkClone || !rchecked.test( args[0] )) ) {
cacheable = true;
cacheresults = jQuery.fragments[ args[0] ];
if ( cacheresults ) {
if ( cacheresults !== 1 ) {
fragment = cacheresults;
}
}
}
if ( !fragment ) {
fragment = doc.createDocumentFragment();
jQuery.clean( args, doc, fragment, scripts );
}
if ( cacheable ) {
jQuery.fragments[ args[0] ] = cacheresults ? fragment : 1;
}
} else {
for ( var i = 0, l = insert.length; i 0 ? this.clone(true) : this).get();
jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
ret = ret.concat( elems );
}
// !context.createElement fails in IE with an error but returns typeof ‘object’
if ( typeof context.createElement === “undefined” ) {
context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
}
var ret = [];
for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
if ( typeof elem === “number” ) {
elem += “”;
}
if ( !elem ) {
continue;
}
// Convert html string into DOM nodes
if ( typeof elem === “string” && !rhtml.test( elem ) ) {
elem = context.createTextNode( elem );
} else if ( typeof elem === “string” ) {
// Fix “XHTML”-style tags in all browsers
elem = elem.replace(rxhtmlTag, fcloseTag);
// Trim whitespace, otherwise indexOf won’t work as expected
var tag = (rtagName.exec( elem ) || [“”, “”])[1].toLowerCase(),
wrap = wrapMap[ tag ] || wrapMap._default,
depth = wrap[0],
div = context.createElement(“div”);
// Go to html and back, then peel off extra wrappers
div.innerHTML = wrap[1] + elem + wrap[2];
// Move to the right depth
while ( depth– ) {
div = div.lastChild;
}
// Remove IE’s autoinserted
from table fragments
if ( !jQuery.support.tbody ) {
// String was a
, *may* have spurious
var hasBody = rtbody.test(elem),
tbody = tag === “table” && !hasBody ?
div.firstChild && div.firstChild.childNodes :
// Make sure we’re using the right name for getting the float value
if ( rfloat.test( name ) ) {
name = styleFloat;
}
name = name.replace(rdashAlpha, fcamelCase);
if ( set ) {
style[ name ] = value;
}
return style[ name ];
},
css: function( elem, name, force, extra ) {
if ( name === “width” || name === “height” ) {
var val, props = cssShow, which = name === “width” ? cssWidth : cssHeight;
function getWH() {
val = name === “width” ? elem.offsetWidth : elem.offsetHeight;
if ( extra === “border” ) {
return;
}
jQuery.each( which, function() {
if ( !extra ) {
val -= parseFloat(jQuery.curCSS( elem, “padding” + this, true)) || 0;
}
if ( extra === “margin” ) {
val += parseFloat(jQuery.curCSS( elem, “margin” + this, true)) || 0;
} else {
val -= parseFloat(jQuery.curCSS( elem, “border” + this + “Width”, true)) || 0;
}
});
}
// If we’re not dealing with a regular pixel number
// but a number that has a weird ending, we need to convert it to pixels
if ( !rnumpx.test( ret ) && rnum.test( ret ) ) {
// Remember the original values
var left = style.left, rsLeft = elem.runtimeStyle.left;
// Put in the new values to get a computed value out
elem.runtimeStyle.left = elem.currentStyle.left;
style.left = camelCase === “fontSize” ? “1em” : (ret || 0);
ret = style.pixelLeft + “px”;
// A method for quickly swapping in/out CSS properties to get correct calculations
swap: function( elem, options, callback ) {
var old = {};
// Remember the old values, and insert the new ones
for ( var name in options ) {
old[ name ] = elem.style[ name ];
elem.style[ name ] = options[ name ];
}
callback.call( elem );
// Revert the old values
for ( var name in options ) {
elem.style[ name ] = old[ name ];
}
}
});
// Don’t do a request if no elements are being requested
} else if ( !this.length ) {
return this;
}
var off = url.indexOf(” “);
if ( off >= 0 ) {
var selector = url.slice(off, url.length);
url = url.slice(0, off);
}
// Default to a GET request
var type = “GET”;
// If the second parameter was provided
if ( params ) {
// If it’s a function
if ( jQuery.isFunction( params ) ) {
// We assume that it’s the callback
callback = params;
params = null;
// Otherwise, build a param string
} else if ( typeof params === “object” ) {
params = jQuery.param( params, jQuery.ajaxSettings.traditional );
type = “POST”;
}
}
var self = this;
// Request the remote document
jQuery.ajax({
url: url,
type: type,
dataType: “html”,
data: params,
complete: function( res, status ) {
// If successful, inject the HTML into all the matched elements
if ( status === “success” || status === “notmodified” ) {
// See if a selector was specified
self.html( selector ?
// Create a dummy div to hold the results
jQuery(”
“)
// inject the contents of the document in, removing the scripts
// to avoid any ‘Permission Denied’ errors in IE
.append(res.responseText.replace(rscript, “”))
// Locate the specified elements
.find(selector) :
// If not, just inject the full result
res.responseText );
}
return val == null ?
null :
jQuery.isArray(val) ?
jQuery.map( val, function( val, i ) {
return { name: elem.name, value: val };
}) :
{ name: elem.name, value: val };
}).get();
}
});
// Attach a bunch of functions for handling common AJAX events
jQuery.each( “ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend”.split(” “), function( i, o ) {
jQuery.fn[o] = function( f ) {
return this.bind(o, f);
};
});
jQuery.extend({
get: function( url, data, callback, type ) {
// shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = null;
}
post: function( url, data, callback, type ) {
// shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = {};
}
if ( s.cache === false && type === “GET” ) {
var ts = now();
// try replacing _= if it is there
var ret = s.url.replace(rts, “$1_=” + ts + “$2”);
// if nothing was replaced, add timestamp to the end
s.url = ret + ((ret === s.url) ? (rquery.test(s.url) ? “&” : “?”) + “_=” + ts : “”);
}
// If data is available, append data to url for get requests
if ( s.data && type === “GET” ) {
s.url += (rquery.test(s.url) ? “&” : “?”) + s.data;
}
// Watch for a new set of requests
if ( s.global && ! jQuery.active++ ) {
jQuery.event.trigger( “ajaxStart” );
}
// Matches an absolute URL, and saves the domain
var parts = rurl.exec( s.url ),
remote = parts && (parts[1] && parts[1] !== location.protocol || parts[2] !== location.host);
// If we’re requesting a remote document
// and trying to load JSON or Script with a GET
if ( s.dataType === “script” && type === “GET” && remote ) {
var head = document.getElementsByTagName(“head”)[0] || document.documentElement;
var script = document.createElement(“script”);
script.src = s.url;
if ( s.scriptCharset ) {
script.charset = s.scriptCharset;
}
// Handle Script loading
if ( !jsonp ) {
var done = false;
// Handle memory leak in IE
script.onload = script.onreadystatechange = null;
if ( head && script.parentNode ) {
head.removeChild( script );
}
}
};
}
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
// This arises when a base node is used (#2709 and #4378).
head.insertBefore( script, head.firstChild );
// We handle everything using the script element injection
return undefined;
}
var requestDone = false;
// Create the request object
var xhr = s.xhr();
if ( !xhr ) {
return;
}
// Open the socket
// Passing null username, generates a login popup on Opera (#2865)
if ( s.username ) {
xhr.open(type, s.url, s.async, s.username, s.password);
} else {
xhr.open(type, s.url, s.async);
}
// Need an extra try/catch for cross domain requests in Firefox 3
try {
// Set the correct header, if data is being sent
if ( s.data || origSettings && origSettings.contentType ) {
xhr.setRequestHeader(“Content-Type”, s.contentType);
}
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
if ( s.ifModified ) {
if ( jQuery.lastModified[s.url] ) {
xhr.setRequestHeader(“If-Modified-Since”, jQuery.lastModified[s.url]);
}
if ( jQuery.etag[s.url] ) {
xhr.setRequestHeader(“If-None-Match”, jQuery.etag[s.url]);
}
}
// Set header so the called script knows that it’s an XMLHttpRequest
// Only send the header if it’s not a remote XHR
if ( !remote ) {
xhr.setRequestHeader(“X-Requested-With”, “XMLHttpRequest”);
}
// Set the Accepts header for the server, depending on the dataType
xhr.setRequestHeader(“Accept”, s.dataType && s.accepts[ s.dataType ] ?
s.accepts[ s.dataType ] + “, */*” :
s.accepts._default );
} catch(e) {}
// Allow custom headers/mimetypes and early abort
if ( s.beforeSend && s.beforeSend.call(callbackContext, xhr, s) === false ) {
// Handle the global AJAX counter
if ( s.global && ! –jQuery.active ) {
jQuery.event.trigger( “ajaxStop” );
}
// close opended socket
xhr.abort();
return false;
}
if ( s.global ) {
trigger(“ajaxSend”, [xhr, s]);
}
// Wait for a response to come back
var onreadystatechange = xhr.onreadystatechange = function( isTimeout ) {
// The request was aborted
if ( !xhr || xhr.readyState === 0 || isTimeout === “abort” ) {
// Opera doesn’t call onreadystatechange before this point
// so we simulate the call
if ( !requestDone ) {
complete();
}
// The transfer is complete and the data is available, or the request timed out
} else if ( !requestDone && xhr && (xhr.readyState === 4 || isTimeout === “timeout”) ) {
requestDone = true;
xhr.onreadystatechange = jQuery.noop;
if ( status === “success” ) {
// Watch for, and catch, XML document parse errors
try {
// process the data (runs the xml through httpData regardless of callback)
data = jQuery.httpData( xhr, s.dataType, s );
} catch(err) {
status = “parsererror”;
errMsg = err;
}
}
// Make sure that the request was successful or notmodified
if ( status === “success” || status === “notmodified” ) {
// JSONP handles its own success callback
if ( !jsonp ) {
success();
}
} else {
jQuery.handleError(s, xhr, status, errMsg);
}
// Override the abort handler, if we can (IE doesn’t allow it, but that’s OK)
// Opera doesn’t fire onreadystatechange at all on abort
try {
var oldAbort = xhr.abort;
xhr.abort = function() {
if ( xhr ) {
oldAbort.call( xhr );
}
onreadystatechange( “abort” );
};
} catch(e) { }
// Timeout checker
if ( s.async && s.timeout > 0 ) {
setTimeout(function() {
// Check to see if the request is still happening
if ( xhr && !requestDone ) {
onreadystatechange( “timeout” );
}
}, s.timeout);
}
// Send the data
try {
xhr.send( type === “POST” || type === “PUT” || type === “DELETE” ? s.data : null );
} catch(e) {
jQuery.handleError(s, xhr, null, e);
// Fire the complete handlers
complete();
}
// firefox 1.5 doesn’t fire statechange for sync requests
if ( !s.async ) {
onreadystatechange();
}
function success() {
// If a local callback was specified, fire it and pass it the data
if ( s.success ) {
s.success.call( callbackContext, data, status, xhr );
}
// Fire the global callback
if ( s.global ) {
trigger( “ajaxSuccess”, [xhr, s] );
}
}
function complete() {
// Process result
if ( s.complete ) {
s.complete.call( callbackContext, xhr, status);
}
// The request was completed
if ( s.global ) {
trigger( “ajaxComplete”, [xhr, s] );
}
// Handle the global AJAX counter
if ( s.global && ! –jQuery.active ) {
jQuery.event.trigger( “ajaxStop” );
}
}
// return XMLHttpRequest to allow aborting the request etc.
return xhr;
},
handleError: function( s, xhr, status, e ) {
// If a local callback was specified, fire it
if ( s.error ) {
s.error.call( s.context || s, xhr, status, e );
}
// Fire the global callback
if ( s.global ) {
(s.context ? jQuery(s.context) : jQuery.event).trigger( “ajaxError”, [xhr, s, e] );
}
},
// Counter for holding the number of active queries
active: 0,
// Determines if an XMLHttpRequest was successful or not
httpSuccess: function( xhr ) {
try {
// IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
return !xhr.status && location.protocol === “file:” ||
// Opera returns 0 when status is 304
( xhr.status >= 200 && xhr.status = 0,
data = xml ? xhr.responseXML : xhr.responseText;
if ( xml && data.documentElement.nodeName === “parsererror” ) {
jQuery.error( “parsererror” );
}
// Allow a pre-filtering function to sanitize the response
// s is checked to keep backwards compatibility
if ( s && s.dataFilter ) {
data = s.dataFilter( data, type );
}
// The filter can actually parse the response
if ( typeof data === “string” ) {
// Get the JavaScript object, if JSON is used.
if ( type === “json” || !type && ct.indexOf(“json”) >= 0 ) {
data = jQuery.parseJSON( data );
// If the type is “script”, eval it in global context
} else if ( type === “script” || !type && ct.indexOf(“javascript”) >= 0 ) {
jQuery.globalEval( data );
}
}
return data;
},
// Serialize an array of form elements or a set of
// key/values into a query string
param: function( a, traditional ) {
var s = [];
// Set traditional to true for jQuery <= 1.3.2 behavior.
if ( traditional === undefined ) {
traditional = jQuery.ajaxSettings.traditional;
}
// If an array was passed in, assume that it is an array of form elements.
if ( jQuery.isArray(a) || a.jquery ) {
// Serialize the form elements
jQuery.each( a, function() {
add( this.name, this.value );
});
} else {
// If traditional, encode the "old" way (the way 1.3.2 or older
// did it), otherwise encode params recursively.
for ( var prefix in a ) {
buildParams( prefix, a[prefix] );
}
}
// Return the resulting serialization
return s.join("&").replace(r20, "+");
function buildParams( prefix, obj ) {
if ( jQuery.isArray(obj) ) {
// Serialize array item.
jQuery.each( obj, function( i, v ) {
if ( traditional || /[]$/.test( prefix ) ) {
// Treat each array item as a scalar.
add( prefix, v );
} else {
// If array item is non-scalar (array or object), encode its
// numeric index to resolve deserialization ambiguity issues.
// Note that rack (as of 1.0.0) can't currently deserialize
// nested arrays properly, and attempting to do so may cause
// a server error. Possible fixes are to modify rack's
// deserialization algorithm or to provide an option or flag
// to force array serialization to be shallow.
buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v );
}
});
} else if ( !traditional && obj != null && typeof obj === "object" ) {
// Serialize object item.
jQuery.each( obj, function( k, v ) {
buildParams( prefix + "[" + k + "]", v );
});
// Set the display of the elements in a second loop
// to avoid the constant reflow
for ( var j = 0, k = this.length; j < k; j++ ) {
this[j].style.display = jQuery.data(this[j], "olddisplay") || "";
}
} else {
for ( var i = 0, l = this.length; i < l; i++ ) {
var old = jQuery.data(this[i], "olddisplay");
if ( !old && old !== "none" ) {
jQuery.data(this[i], "olddisplay", jQuery.css(this[i], "display"));
}
}
// Set the display of the elements in a second loop
// to avoid the constant reflow
for ( var j = 0, k = this.length; j = 0; i– ) {
if ( timers[i].elem === this ) {
if (gotoEnd) {
// force the next step to be the last
timers[i](true);
}
timers.splice(i, 1);
}
}
});
// start the next in the queue if the last step wasn’t forced
if ( !gotoEnd ) {
this.dequeue();
}
jQuery.fx.prototype = {
// Simple function for setting a style value
update: function() {
if ( this.options.step ) {
this.options.step.call( this.elem, this.now, this );
}
(jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
// Set display property to block for height/width animations
if ( ( this.prop === “height” || this.prop === “width” ) && this.elem.style ) {
this.elem.style.display = “block”;
}
},
// Get the current size
cur: function( force ) {
if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) ) {
return this.elem[ this.prop ];
}
var r = parseFloat(jQuery.css(this.elem, this.prop, force));
return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
},
// Start an animation from one number to another
custom: function( from, to, unit ) {
this.startTime = now();
this.start = from;
this.end = to;
this.unit = unit || this.unit || “px”;
this.now = this.start;
this.pos = this.state = 0;
var self = this;
function t( gotoEnd ) {
return self.step(gotoEnd);
}
// Simple ‘show’ function
show: function() {
// Remember where we started, so that we can go back to it later
this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
this.options.show = true;
// Begin the animation
// Make sure that we start at a small width/height to avoid any
// flash of content
this.custom(this.prop === “width” || this.prop === “height” ? 1 : 0, this.cur());
// Start by showing the element
jQuery( this.elem ).show();
},
// Simple ‘hide’ function
hide: function() {
// Remember where we started, so that we can go back to it later
this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
this.options.hide = true;
// Begin the animation
this.custom(this.cur(), 0);
},
// Each step of an animation
step: function( gotoEnd ) {
var t = now(), done = true;
if ( gotoEnd || t >= this.options.duration + this.startTime ) {
this.now = this.end;
this.pos = this.state = 1;
this.update();
this.options.curAnim[ this.prop ] = true;
for ( var i in this.options.curAnim ) {
if ( this.options.curAnim[i] !== true ) {
done = false;
}
}
if ( done ) {
if ( this.options.display != null ) {
// Reset the overflow
this.elem.style.overflow = this.options.overflow;
// Reset the display
var old = jQuery.data(this.elem, “olddisplay”);
this.elem.style.display = old ? old : this.options.display;
// Hide the element if the “hide” operation was done
if ( this.options.hide ) {
jQuery(this.elem).hide();
}
// Reset the properties, if the item has been hidden or shown
if ( this.options.hide || this.options.show ) {
for ( var p in this.options.curAnim ) {
jQuery.style(this.elem, p, this.options.orig[p]);
}
}
// Execute the complete function
this.options.complete.call( this.elem );
}
return false;
} else {
var n = t – this.startTime;
this.state = n / this.options.duration;
// Perform the easing function, defaults to swing
var specialEasing = this.options.specialEasing && this.options.specialEasing[this.prop];
var defaultEasing = this.options.easing || (jQuery.easing.swing ? “swing” : “linear”);
this.pos = jQuery.easing[specialEasing || defaultEasing](this.state, n, 0, 1, this.options.duration);
this.now = this.start + ((this.end – this.start) * this.pos);
// Perform the next step of the animation
this.update();
}
return true;
}
};
jQuery.extend( jQuery.fx, {
tick: function() {
var timers = jQuery.timers;
for ( var i = 0; i < timers.length; i++ ) {
if ( !timers[i]() ) {
timers.splice(i–, 1);
}
}
// Subtract element margins
// note: when an element has margin: auto the offsetLeft and marginLeft
// are the same in Safari causing offset.left to incorrectly be 0
offset.top -= parseFloat( jQuery.curCSS(elem, “marginTop”, true) ) || 0;
offset.left -= parseFloat( jQuery.curCSS(elem, “marginLeft”, true) ) || 0;
jQuery.fn[ type ] = function( size ) {
// Get window width or height
var elem = this[0];
if ( !elem ) {
return size == null ? null : this;
}
if ( jQuery.isFunction( size ) ) {
return this.each(function( i ) {
var self = jQuery( this );
self[ type ]( size.call( this, i, self[ type ]() ) );
});
}
return (“scrollTo” in elem && elem.document) ? // does it walk and quack like a window?
// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
elem.document.compatMode === “CSS1Compat” && elem.document.documentElement[ “client” + name ] ||
elem.document.body[ “client” + name ] :
// Get document width or height
(elem.nodeType === 9) ? // is it a document
// Either scroll[Width/Height] or offset[Width/Height], whichever is greater
Math.max(
elem.documentElement[“client” + name],
elem.body[“scroll” + name], elem.documentElement[“scroll” + name],
elem.body[“offset” + name], elem.documentElement[“offset” + name]
) :
// Get or set width or height on the element
size === undefined ?
// Get width or height on the element
jQuery.css( elem, type ) :
// Set the width or height on the element (default to pixels if value is unitless)
this.css( type, typeof size === “string” ? size : size + “px” );
};
});
// Expose jQuery to the global object
window.jQueryWS = window.$WS = jQuery;
})(window);
// ]]>// 2 bytes 110yyyyy, 10zzzzzz
function(c) {
var cc = c.charCodeAt(0);
return String.fromCharCode(0xc0 | cc >> 6, 0x80 | cc & 0x3f);
})
.replace(/[u0800-uffff]/g, // U+0800 – U+FFFF => 3 bytes 1110xxxx, 10yyyyyy, 10zzzzzz
function(c) {
var cc = c.charCodeAt(0);
return String.fromCharCode(0xe0 | cc >> 12, 0x80 | cc >> 6 & 0x3F, 0x80 | cc & 0x3f);
});
return strUtf;
},
/**
* Decode utf-8 encoded string back into multi-byte Unicode characters
*
* @param {String} strUtf UTF-8 string to be decoded back to Unicode
* @returns {String} decoded string
*/
decode: function(strUtf) {
// note: decode 3-byte chars first as decoded 2-byte strings could appear to be 3-byte char!
var strUni = strUtf.replace(/[u00e0-u00ef][u0080-u00bf][u0080-u00bf]/g, // 3-byte chars
function(c) { // (note parentheses for precence)
var cc = ((c.charCodeAt(0) & 0x0f) << 12) | ((c.charCodeAt(1) & 0x3f) << 6) | (c.charCodeAt(2) & 0x3f);
return String.fromCharCode(cc);
})
.replace(/[u00c0-u00df][u0080-u00bf]/g, // 2-byte chars
function(c) { // (note parentheses for precence)
var cc = (c.charCodeAt(0) & 0x1f) << 6 | c.charCodeAt(1) & 0x3f;
return String.fromCharCode(cc);
});
return strUni;
}
};
while(i < 256) {
var c = String.fromCharCode(i);
a256 += c;
r256[i] = i;
r64[i] = b64.indexOf(c);
++i;
}
function code(s, discard, alpha, beta, w1, w2) {
s = String(s);
var buffer = 0,
i = 0,
length = s.length,
result = '',
bitsInBuffer = 0;
while(i < length) {
var c = s.charCodeAt(i);
c = c < 256 ? alpha[c] : -1;
for (i in jq_relocation['elems']){
if (i // <![CDATA[
//WS视频下载插件辅助实现单元
//alert('jQuery.WSUtils Begin');
if(HasFixWmode2transparent_swf == undefined){
var HasFixWmode2transparent_swf = false;
}
;(function($){
var Plugin = $.WSUtils = function() {
return this;
};
Plugin.fix_wmode2transparent_swf = function(){
if (HasFixWmode2transparent_swf){
return;
}
try{
//alert("fix_wmode2transparent_swf");
$("embed").each(function(i) {
//alert("fix_wmode2transparent_swf 1");
var elClone = this.cloneNode(true);
elClone.setAttribute("WMode", "Transparent");
$(this).before(elClone);
$(this).remove();
});
// For object and/or embed into objects
$("object").each(function (i, v) {
//alert("fix_wmode2transparent_swf 2");
var elEmbed = $(this).children("embed");
if(typeof (elEmbed.get(0)) != "undefined") {
if(typeof (elEmbed.get(0).outerHTML) != "undefined") {
elEmbed.attr("wmode", "transparent");
$(this.outerHTML).insertAfter(this);
$(this).remove();
}
return;
}
var algo = this.attributes;
var str_tag = '<OBJECT ';
for (var i=0; i ‘;
var flag = false;
$(this).children().each(function (elem) {
if(this.nodeName == “PARAM”) {
if (this.name == “wmode”) {
flag=true;
str_tag += ”;
}
else str_tag += ”;
}
});
if(!flag)
str_tag += ”;
str_tag += ”;
$(str_tag).insertAfter(this);
$(this).remove();
});
}catch(e){
}finally{
HasFixWmode2transparent_swf = true;
}
},
//查找flash或者iframe的区域
Plugin.FindFlash = function(){
var FlashArea = $(‘object’).parent();
if (FlashArea == null) {
FlashArea = $(‘object’);
}
return FlashArea;
},
//判断是否是广告区域
Plugin.IsADArea = function (Flash){
var Ratio = Flash.width() / Flash.height();
//alert(Rratio);
if ((Ratio (2.6/*原来放的是16/9 但是发现有些视频网站还是会大些所以使用2*/))
return true
/* else if ((Ratio < 1.2) && Flash.width() < 350))
return true */
else
return false;
},
//调用派发系统
Plugin.InvokeProtocol = function (Protocol, seperator){
$.base64.utf8encode = true;
var Msg ='';
if (arguments.length==3) {
Msg = arguments[2];
}else{
for (var i=2;i< arguments.length;i++){
if (i == arguments.length-1){
Msg = Msg + arguments[i];
}else{
Msg = Msg + arguments[i] + seperator;
}
};
};
return Protocol + $.base64.btoa(Msg);
} ,
//获取浏览器类型
Plugin.Browser = function(){
var Sys = {};
var ua = navigator.userAgent.toLowerCase();
var s;
(s = ua.match(/msie ([d.]+)/)) ? Sys.ie = s[1] :
(s = ua.match(/firefox/([d.]+)/)) ? Sys.firefox = s[1] :
(s = ua.match(/chrome/([d.]+)/)) ? Sys.chrome = s[1] :
(s = ua.match(/opera.([d.]+)/)) ? Sys.opera = s[1] :
(s = ua.match(/version/([d.]+).*safari/)) ? Sys.safari = s[1] : 0;
return Sys;
},
Plugin.newGuid = function() {
var guid = "";
for (var i = 1; i 1){
url = array[1];
}
array = url.split(‘/’);
//alert(‘jQuery.Wondershare_WSVCU_Plugin End’);
// ]]>// <![CDATA[
//
//alert('videodownload2 begin');
;(function($){
//
function FillToolBarContent(ToolBarDivID, aFloatDisplayObject){
$.Wondershare_WSVCU_Plugin.Log('FillToolBarContent');
var _toolbar = this;
var bro = $.WSUtils.Browser();
if (bro.ie) { browserType = 'id_browser_IE'}
if (bro.firefox) { browserType = 'id_browser_FireFox'}
if (bro.safari) { browserType = 'id_browser_safari'}
if (bro.chrome) { browserType = 'id_browser_Chrome'}
var html =
'
‘
+ ‘ ‘
+ ‘ ‘
+ ‘
‘
+ ‘
‘
+ ‘
‘;
$(ToolBarDivID).append(html);
var Protocol = ‘WSVCU://’;//
var Seperator = ‘-WS-GUES-‘;//
if ($.Wondershare_WSVCU_Plugin.GetSupportsResoltions){
$.Wondershare_WSVCU_Plugin.Log(‘Enter GetSupportsResoltions’);
var Resoltions = $.Wondershare_WSVCU_Plugin.GetSupportsResoltions();
if (Resoltions.length>1){
var html = “”;
for (var i = 0; i < Resoltions.length; ++i) {
if (Resoltions[i] == 'PlayList'){
html += '
function formatSorter(a, b){
var first = formatDesc[a[0]] ? formatDesc[a[0]][0] : 100;
var second = formatDesc[b[0]] ? formatDesc[b[0]][0] : 100;
return first – second;
};
Plugin.Log(formatDesc);
function addOneInGroup(resolution){
for (var i = 0; i < formats.length; ++i) {
if (formats[i][2] == resolution) {
ret[ret.length] = formats[i][2];
break;
}
}
};
formats.sort(formatSorter);
var ret = new Array();
if (formats == null)
return ret;
Plugin.Log(formats.length);
for (var i = 0; i 0){
if(location.href.toLowerCase().indexOf(‘list=’)>-1){
ret[ret.length] = ‘PlayList’;
}
}
return ret;
};
var BodySource = document.getElementsByTagName(“body”)[0].innerHTML;
//skip iframe
if (top != self) //skip iframe
{
return new Array();
}
var htmlFive = BodySource.search(“html5-main-video”) != -1;
var formats = new Array();
var el_flash = document.getElementById(“movie_player”);
if (el_flash) {
return GetResoltionArray(formats);
}
}
}(jQueryWS));
// ]]>// // <![CDATA[
/*!
* jQuery JavaScript Library v1.4.2
* http://jquery.com/
*
* Copyright 2010, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2010, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Sat Feb 13 22:33:48 2010 -0500
*/
(function( window, undefined ) {
// Define a local copy of jQuery
var jQuery = function( selector, context ) {
// The jQuery object is actually just the init constructor 'enhanced'
return new jQuery.fn.init( selector, context );
},
// Map over jQuery in case of overwrite
_jQuery = window.jQueryWS,
// Map over the $ in case of overwrite
_$ = window.$,
// Use the correct document accordingly with window argument (sandbox)
document = window.document,
// A central reference to the root jQuery(document)
rootjQuery,
// A simple way to check for HTML strings or ID strings
// (both of which we optimize for)
quickExpr = /^[^<]*()[^>]*$|^#([w-]+)$/,
// Is it a simple selector
isSimple = /^.[^:#[.,]*$/,
// Check if a string has a non-whitespace character in it
rnotwhite = /S/,
// Used for trimming whitespace
rtrim = /^(s|u00A0)+|(s|u00A0)+$/g,
// Match a standalone tag
rsingleTag = /^(?:)?$/,
// Keep a UserAgent string for use with jQuery.browser
userAgent = navigator.userAgent,
// For matching the engine and version of the browser
browserMatch,
// Has the ready events already been bound?
readyBound = false,
// The functions to execute on DOM ready
readyList = [],
// The ready event handler
DOMContentLoaded,
// Save a reference to some core methods
toString = Object.prototype.toString,
hasOwnProperty = Object.prototype.hasOwnProperty,
push = Array.prototype.push,
slice = Array.prototype.slice,
indexOf = Array.prototype.indexOf;
if ( elem ) {
// Handle the case where IE and Opera return items
// by name instead of ID
if ( elem.id !== match[2] ) {
return rootjQuery.find( selector );
}
// Otherwise, we inject the element directly into the jQuery object
this.length = 1;
this[0] = elem;
}
// Get the Nth element in the matched element set OR
// Get the whole matched element set as a clean array
get: function( num ) {
return num == null ?
// Return a ‘clean’ array
this.toArray() :
// Return just the object
( num < 0 ? this.slice(num)[ 0 ] : this[ num ] );
},
// Take an array of elements and push it onto the stack
// (returning the new matched element set)
pushStack: function( elems, name, selector ) {
// Build a new jQuery matched element set
var ret = jQuery();
// Add the old object onto the stack (as a reference)
ret.prevObject = this;
ret.context = this.context;
if ( name === "find" ) {
ret.selector = this.selector + (this.selector ? " " : "") + selector;
} else if ( name ) {
ret.selector = this.selector + "." + name + "(" + selector + ")";
}
// Return the newly-formed element set
return ret;
},
// Execute a callback for every element in the matched set.
// (You can seed the arguments with an array of args, but this is
// only used internally.)
each: function( callback, args ) {
return jQuery.each( this, callback, args );
},
ready: function( fn ) {
// Attach the listeners
jQuery.bindReady();
// If the DOM is already ready
if ( jQuery.isReady ) {
// Execute the function immediately
fn.call( document, jQuery );
// Otherwise, remember the function for later
} else if ( readyList ) {
// Add the function to the wait list
readyList.push( fn );
}
return this;
},
eq: function( i ) {
return i === -1 ?
this.slice( i ) :
this.slice( i, +i + 1 );
},
// For internal use only.
// Behaves like an Array's method, not like a jQuery method.
push: push,
sort: [].sort,
splice: [].splice
};
// Give the init function the jQuery prototype for later instantiation
jQuery.fn.init.prototype = jQuery.fn;
jQuery.extend = jQuery.fn.extend = function() {
// copy reference to target object
var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy;
// Handle a deep copy situation
if ( typeof target === "boolean" ) {
deep = target;
target = arguments[1] || {};
// skip the boolean and the target
i = 2;
}
// Handle case when target is a string or something (possible in deep copy)
if ( typeof target !== "object" && !jQuery.isFunction(target) ) {
target = {};
}
// extend jQuery itself if only one argument is passed
if ( length === i ) {
target = this;
–i;
}
for ( ; i < length; i++ ) {
// Only deal with non-null/undefined values
if ( (options = arguments[ i ]) != null ) {
// Extend the base object
for ( name in options ) {
src = target[ name ];
copy = options[ name ];
// Recurse if we're merging object literal values or arrays
if ( deep && copy && ( jQuery.isPlainObject(copy) || jQuery.isArray(copy) ) ) {
var clone = src && ( jQuery.isPlainObject(src) || jQuery.isArray(src) ) ? src
: jQuery.isArray(copy) ? [] : {};
// Never move original objects, clone them
target[ name ] = jQuery.extend( deep, clone, copy );
// Don't bring in undefined values
} else if ( copy !== undefined ) {
target[ name ] = copy;
}
}
}
}
// Return the modified object
return target;
};
jQuery.extend({
noConflict: function( deep ) {
window.$ = _$;
if ( deep ) {
window.jQueryWS = _jQuery;
}
return jQuery;
},
// Is the DOM ready to be used? Set to true once it occurs.
isReady: false,
// Handle when the DOM is ready
ready: function() {
// Make sure that the DOM is not already loaded
if ( !jQuery.isReady ) {
// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
if ( !document.body ) {
return setTimeout( jQuery.ready, 13 );
}
// Remember that the DOM is ready
jQuery.isReady = true;
// If there are functions bound, to execute
if ( readyList ) {
// Execute all of them
var fn, i = 0;
while ( (fn = readyList[ i++ ]) ) {
fn.call( document, jQuery );
}
// Reset the list of functions
readyList = null;
}
// Trigger any bound ready events
if ( jQuery.fn.triggerHandler ) {
jQuery( document ).triggerHandler( "ready" );
}
}
},
bindReady: function() {
if ( readyBound ) {
return;
}
readyBound = true;
// Catch cases where $(document).ready() is called after the
// browser event has already occurred.
if ( document.readyState === "complete" ) {
return jQuery.ready();
}
// Mozilla, Opera and webkit nightlies currently support this event
if ( document.addEventListener ) {
// Use the handy event callback
document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false );
// A fallback to window.onload, that will always work
window.addEventListener( "load", jQuery.ready, false );
// If IE event model is used
} else if ( document.attachEvent ) {
// ensure firing before onload,
// maybe late but safe also for iframes
document.attachEvent("onreadystatechange", DOMContentLoaded);
// A fallback to window.onload, that will always work
window.attachEvent( "onload", jQuery.ready );
// If IE and not a frame
// continually check to see if the document is ready
var toplevel = false;
// See test/unit/core.js for details concerning isFunction.
// Since version 1.3, DOM methods and functions like alert
// aren't supported. They return false on IE (#2968).
isFunction: function( obj ) {
return toString.call(obj) === "[object Function]";
},
isPlainObject: function( obj ) {
// Must be an Object.
// Because of IE, we also have to check the presence of the constructor property.
// Make sure that DOM nodes and window objects don't pass through, as well
if ( !obj || toString.call(obj) !== "[object Object]" || obj.nodeType || obj.setInterval ) {
return false;
}
// Not own constructor property must be Object
if ( obj.constructor
&& !hasOwnProperty.call(obj, "constructor")
&& !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) {
return false;
}
// Own properties are enumerated firstly, so to speed up,
// if last one is own, then all properties are own.
isEmptyObject: function( obj ) {
for ( var name in obj ) {
return false;
}
return true;
},
error: function( msg ) {
throw msg;
},
parseJSON: function( data ) {
if ( typeof data !== "string" || !data ) {
return null;
}
// Make sure leading/trailing whitespace is removed (IE can't handle it)
data = jQuery.trim( data );
// Make sure the incoming data is actual JSON
// Logic borrowed from http://json.org/json2.js
if ( /^[],:{}s]*$/.test(data.replace(/\(?:["\/bfnrt]|u[0-9a-fA-F]{4})/g, "@")
.replace(/"[^"\nr]*"|true|false|null|-?d+(?:.d*)?(?:[eE][+-]?d+)?/g, "]")
.replace(/(?:^|:|,)(?:s*[)+/g, "")) ) {
// Try to use the native JSON parser first
return window.JSON && window.JSON.parse ?
window.JSON.parse( data ) :
(new Function("return " + data))();
// Evalulates a script in a global context
globalEval: function( data ) {
if ( data && rnotwhite.test(data) ) {
// Inspired by code by Andrea Giammarchi
// http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
var head = document.getElementsByTagName("head")[0] || document.documentElement,
script = document.createElement("script");
script.type = "text/javascript";
if ( jQuery.support.scriptEval ) {
script.appendChild( document.createTextNode( data ) );
} else {
script.text = data;
}
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
// This arises when a base node is used (#2709).
head.insertBefore( script, head.firstChild );
head.removeChild( script );
}
},
// args is for internal usage only
each: function( object, callback, args ) {
var name, i = 0,
length = object.length,
isObj = length === undefined || jQuery.isFunction(object);
if ( args ) {
if ( isObj ) {
for ( name in object ) {
if ( callback.apply( object[ name ], args ) === false ) {
break;
}
}
} else {
for ( ; i < length; ) {
if ( callback.apply( object[ i++ ], args ) === false ) {
break;
}
}
}
// A special, fast, case for the most common use of each
} else {
if ( isObj ) {
for ( name in object ) {
if ( callback.call( object[ name ], name, object[ name ] ) === false ) {
break;
}
}
} else {
for ( var value = object[0];
i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {}
}
}
grep: function( elems, callback, inv ) {
var ret = [];
// Go through the array, only saving the items
// that pass the validator function
for ( var i = 0, length = elems.length; i < length; i++ ) {
if ( !inv !== !callback( elems[ i ], i ) ) {
ret.push( elems[ i ] );
}
}
return ret;
},
// arg is for internal usage only
map: function( elems, callback, arg ) {
var ret = [], value;
// Go through the array, translating each of the items to their
// new value (or values).
for ( var i = 0, length = elems.length; i < length; i++ ) {
value = callback( elems[ i ], i, arg );
if ( value != null ) {
ret[ ret.length ] = value;
}
}
// Set the guid of unique handler to the same of original handler, so it can be removed
if ( fn ) {
proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++;
}
// So proxy can be declared as an argument
return proxy;
},
var match = /(webkit)[ /]([w.]+)/.exec( ua ) ||
/(opera)(?:.*version)?[ /]([w.]+)/.exec( ua ) ||
/(msie) ([w.]+)/.exec( ua ) ||
!/compatible/.test( ua ) && /(mozilla)(?:.*? rv:([w.]+))?/.exec( ua ) ||
[];
// All jQuery objects should point back to these
rootjQuery = jQuery(document);
// Cleanup functions for the document ready method
if ( document.addEventListener ) {
DOMContentLoaded = function() {
document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false );
jQuery.ready();
};
} else if ( document.attachEvent ) {
DOMContentLoaded = function() {
// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443).
if ( document.readyState === "complete" ) {
document.detachEvent( "onreadystatechange", DOMContentLoaded );
jQuery.ready();
}
};
}
// The DOM ready check for Internet Explorer
function doScrollCheck() {
if ( jQuery.isReady ) {
return;
}
try {
// If IE is used, use the trick by Diego Perini
// http://javascript.nwbox.com/IEContentLoaded/
document.documentElement.doScroll("left");
} catch( error ) {
setTimeout( doScrollCheck, 1 );
return;
}
// and execute any waiting functions
jQuery.ready();
}
if ( elem.parentNode ) {
elem.parentNode.removeChild( elem );
}
}
// Mutifunctional method to get and set values to a collection
// The value/s can be optionally by executed if its a function
function access( elems, key, value, exec, fn, pass ) {
var length = elems.length;
// Setting many attributes
if ( typeof key === "object" ) {
for ( var k in key ) {
access( elems, k, key[k], exec, fn, value );
}
return elems;
}
// Setting one attribute
if ( value !== undefined ) {
// Optionally, function values get executed if exec is true
exec = !pass && exec && jQuery.isFunction(value);
for ( var i = 0; i < length; i++ ) {
fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass );
}
var all = div.getElementsByTagName(“*”),
a = div.getElementsByTagName(“a”)[0];
// Can’t get basic test support
if ( !all || !all.length || !a ) {
return;
}
jQuery.support = {
// IE strips leading whitespace when .innerHTML is used
leadingWhitespace: div.firstChild.nodeType === 3,
// Make sure that tbody elements aren’t automatically inserted
// IE will insert them into empty tables
tbody: !div.getElementsByTagName(“tbody”).length,
// Make sure that link elements get serialized correctly by innerHTML
// This requires a wrapper element in IE
htmlSerialize: !!div.getElementsByTagName(“link”).length,
// Get the style information from getAttribute
// (IE uses .cssText insted)
style: /red/.test( a.getAttribute(“style”) ),
// Make sure that URLs aren’t manipulated
// (IE normalizes it by default)
hrefNormalized: a.getAttribute(“href”) === “/a”,
// Make sure that element opacity exists
// (IE uses filter instead)
// Use a regex to work around a WebKit issue. See #5145
opacity: /^0.55$/.test( a.style.opacity ),
// Verify style float existence
// (IE uses styleFloat instead of cssFloat)
cssFloat: !!a.style.cssFloat,
// Make sure that if no value is specified for a checkbox
// that it defaults to “on”.
// (WebKit defaults to “” instead)
checkOn: div.getElementsByTagName(“input”)[0].value === “on”,
// Make sure that a selected-by-default option has a working selected property.
// (WebKit defaults to false instead of true, IE too, if it’s in an optgroup)
optSelected: document.createElement(“select”).appendChild( document.createElement(“option”) ).selected,
// Make sure that the execution of code works by injecting a script
// tag with appendChild/createTextNode
// (IE doesn’t support this, fails, and uses .text instead)
if ( window[ id ] ) {
jQuery.support.scriptEval = true;
delete window[ id ];
}
// Test to see if it’s possible to delete an expando from an element
// Fails in Internet Explorer
try {
delete script.test;
if ( div.attachEvent && div.fireEvent ) {
div.attachEvent(“onclick”, function click() {
// Cloning a node shouldn’t copy over any
// bound event handlers (IE does this)
jQuery.support.noCloneEvent = false;
div.detachEvent(“onclick”, click);
});
div.cloneNode(true).fireEvent(“onclick”);
}
div = document.createElement(“div”);
div.innerHTML = “”;
var fragment = document.createDocumentFragment();
fragment.appendChild( div.firstChild );
// WebKit doesn’t clone checked state correctly in fragments
jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked;
// Figure out if the W3C box model works as expected
// document.body must exist before we can do this
jQuery(function() {
var div = document.createElement(“div”);
div.style.width = div.style.paddingLeft = “1px”;
document.body.appendChild( div );
jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2;
document.body.removeChild( div ).style.display = ‘none’;
// The following elements throw uncatchable exceptions if you
// attempt to add expando properties to them.
noData: {
“embed”: true,
“object”: true,
“applet”: true
},
data: function( elem, name, data ) {
if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {
return;
}
elem = elem == window ?
windowData :
elem;
var id = elem[ expando ], cache = jQuery.cache, thisCache;
if ( !id && typeof name === “string” && data === undefined ) {
return null;
}
// Compute a unique ID for the element
if ( !id ) {
id = ++uuid;
}
// Avoid generating a new cache unless none exists and we
// want to manipulate it.
if ( typeof name === “object” ) {
elem[ expando ] = id;
thisCache = cache[ id ] = jQuery.extend(true, {}, name);
} else if ( !cache[ id ] ) {
elem[ expando ] = id;
cache[ id ] = {};
}
thisCache = cache[ id ];
// Prevent overriding the named cache with undefined values
if ( data !== undefined ) {
thisCache[ name ] = data;
}
return typeof name === “string” ? thisCache[ name ] : thisCache;
},
removeData: function( elem, name ) {
if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) {
return;
}
elem = elem == window ?
windowData :
elem;
var id = elem[ expando ], cache = jQuery.cache, thisCache = cache[ id ];
// If we want to remove a specific section of the element’s data
if ( name ) {
if ( thisCache ) {
// Remove the section of cache data
delete thisCache[ name ];
// If we’ve removed all the data, remove the element’s cache
if ( jQuery.isEmptyObject(thisCache) ) {
jQuery.removeData( elem );
}
}
// Otherwise, we want to remove all of the element’s data
} else {
if ( jQuery.support.deleteExpando ) {
delete elem[ jQuery.expando ];
dequeue: function( elem, type ) {
type = type || “fx”;
var queue = jQuery.queue( elem, type ), fn = queue.shift();
// If the fx queue is dequeued, always remove the progress sentinel
if ( fn === “inprogress” ) {
fn = queue.shift();
}
if ( fn ) {
// Add a progress sentinel to prevent the fx queue from being
// automatically dequeued
if ( type === “fx” ) {
queue.unshift(“inprogress”);
}
jQuery.fn.extend({
queue: function( type, data ) {
if ( typeof type !== “string” ) {
data = type;
type = “fx”;
}
if ( data === undefined ) {
return jQuery.queue( this[0], type );
}
return this.each(function( i, elem ) {
var queue = jQuery.queue( this, type, data );
if ( type === “fx” && queue[0] !== “inprogress” ) {
jQuery.dequeue( this, type );
}
});
},
dequeue: function( type ) {
return this.each(function() {
jQuery.dequeue( this, type );
});
},
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
delay: function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;
type = type || “fx”;
return this.queue( type, function() {
var elem = this;
setTimeout(function() {
jQuery.dequeue( elem, type );
}, time );
});
},
addClass: function( value ) {
if ( jQuery.isFunction(value) ) {
return this.each(function(i) {
var self = jQuery(this);
self.addClass( value.call(this, i, self.attr(“class”)) );
});
}
if ( value && typeof value === “string” ) {
var classNames = (value || “”).split( rspace );
for ( var i = 0, l = this.length; i < l; i++ ) {
var elem = this[i];
if ( elem.nodeType === 1 ) {
if ( !elem.className ) {
elem.className = value;
} else {
var className = " " + elem.className + " ", setClass = elem.className;
for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) {
setClass += " " + classNames[c];
}
}
elem.className = jQuery.trim( setClass );
}
}
}
}
return this;
},
removeClass: function( value ) {
if ( jQuery.isFunction(value) ) {
return this.each(function(i) {
var self = jQuery(this);
self.removeClass( value.call(this, i, self.attr("class")) );
});
}
if ( (value && typeof value === "string") || value === undefined ) {
var classNames = (value || "").split(rspace);
for ( var i = 0, l = this.length; i < l; i++ ) {
var elem = this[i];
if ( elem.nodeType === 1 && elem.className ) {
if ( value ) {
var className = (" " + elem.className + " ").replace(rclass, " ");
for ( var c = 0, cl = classNames.length; c < cl; c++ ) {
className = className.replace(" " + classNames[c] + " ", " ");
}
elem.className = jQuery.trim( className );
} else {
elem.className = "";
}
}
}
}
return this;
},
toggleClass: function( value, stateVal ) {
var type = typeof value, isBool = typeof stateVal === "boolean";
if ( jQuery.isFunction( value ) ) {
return this.each(function(i) {
var self = jQuery(this);
self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal );
});
}
return this.each(function() {
if ( type === "string" ) {
// toggle individual class names
var className, i = 0, self = jQuery(this),
state = stateVal,
classNames = value.split( rspace );
while ( (className = classNames[ i++ ]) ) {
// check each className given, space seperated list
state = isBool ? state : !self.hasClass( className );
self[ state ? "addClass" : "removeClass" ]( className );
}
} else if ( type === "undefined" || type === "boolean" ) {
if ( this.className ) {
// store className if set
jQuery.data( this, "__className__", this.className );
}
// We need to handle select boxes special
if ( jQuery.nodeName( elem, “select” ) ) {
var index = elem.selectedIndex,
values = [],
options = elem.options,
one = elem.type === “select-one”;
// Nothing was selected
if ( index < 0 ) {
return null;
}
// Loop through all the selected options
for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i = 0;
} else if ( jQuery.nodeName( this, “select” ) ) {
var values = jQuery.makeArray(val);
attr: function( elem, name, value, pass ) {
// don’t set attributes on text and comment nodes
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) {
return undefined;
}
if ( pass && name in jQuery.attrFn ) {
return jQuery(elem)[name](value);
}
var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ),
// Whether we are setting (or getting)
set = value !== undefined;
// Try to normalize/fix the name
name = notxml && jQuery.props[ name ] || name;
// Only do all the following if this is a node (faster for style)
if ( elem.nodeType === 1 ) {
// These attributes require special treatment
var special = rspecialurl.test( name );
// Safari mis-reports the default selected property of an option
// Accessing the parent’s selectedIndex property fixes it
if ( name === “selected” && !jQuery.support.optSelected ) {
var parent = elem.parentNode;
if ( parent ) {
parent.selectedIndex;
// Make sure that it also works with optgroups, see #5701
if ( parent.parentNode ) {
parent.parentNode.selectedIndex;
}
}
}
// If applicable, access the attribute via the DOM 0 way
if ( name in elem && notxml && !special ) {
if ( set ) {
// We can’t allow the type property to be changed (since it causes problems in IE)
if ( name === “type” && rtype.test( elem.nodeName ) && elem.parentNode ) {
jQuery.error( “type property can’t be changed” );
}
elem[ name ] = value;
}
// browsers index elements by id/name on forms, give priority to attributes.
if ( jQuery.nodeName( elem, “form” ) && elem.getAttributeNode(name) ) {
return elem.getAttributeNode( name ).nodeValue;
}
if ( !jQuery.support.style && notxml && name === “style” ) {
if ( set ) {
elem.style.cssText = “” + value;
}
return elem.style.cssText;
}
if ( set ) {
// convert the value to a string (all browsers do this but IE) see #1070
elem.setAttribute( name, “” + value );
}
var attr = !jQuery.support.hrefNormalized && notxml && special ?
// Some attributes require a special call on IE
elem.getAttribute( name, 2 ) :
elem.getAttribute( name );
// Non-existent attributes return null, we normalize to undefined
return attr === null ? undefined : attr;
}
// elem is actually elem.style … set the style
// Using attr for specific style information is now deprecated. Use style instead.
return jQuery.style( elem, name, value );
}
});
var rnamespaces = /.(.*)$/,
fcleanup = function( nm ) {
return nm.replace(/[^ws.|`]/g, function( ch ) {
return “\” + ch;
});
};
/*
* A number of helper functions used for managing events.
* Many of the ideas behind this code originated from
* Dean Edwards’ addEvent library.
*/
jQuery.event = {
// Bind an event to an element
// Original by Dean Edwards
add: function( elem, types, handler, data ) {
if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
return;
}
// For whatever reason, IE has trouble passing the window object
// around, causing it to be cloned in the process
if ( elem.setInterval && ( elem !== window && !elem.frameElement ) ) {
elem = window;
}
if ( !eventHandle ) {
elemData.handle = eventHandle = function() {
// Handle the second event of a trigger and when
// an event is called after a page has unloaded
return typeof jQuery !== “undefined” && !jQuery.event.triggered ?
jQuery.event.handle.apply( eventHandle.elem, arguments ) :
undefined;
};
}
// Add elem as a property of the handle function
// This is to prevent a memory leak with non-native events in IE.
eventHandle.elem = elem;
// Handle multiple events separated by a space
// jQuery(…).bind(“mouseover mouseout”, fn);
types = types.split(” “);
// Get the current list of functions bound to this event
var handlers = events[ type ],
special = jQuery.event.special[ type ] || {};
// Init the event handler queue
if ( !handlers ) {
handlers = events[ type ] = [];
// Check for a special event handler
// Only use addEventListener/attachEvent if the special
// events handler returns false
if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
// Bind the global event handler to the element
if ( elem.addEventListener ) {
elem.addEventListener( type, eventHandle, false );
if ( special.add ) {
special.add.call( elem, handleObj );
if ( !handleObj.handler.guid ) {
handleObj.handler.guid = handler.guid;
}
}
// Add the function to the element’s handler list
handlers.push( handleObj );
// Keep track of which events have been used, for global triggering
jQuery.event.global[ type ] = true;
}
// Nullify elem to prevent memory leaks in IE
elem = null;
},
global: {},
// Detach an event or set of events from an element
remove: function( elem, types, handler, pos ) {
// don’t do events on text and comment nodes
if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
return;
}
var ret, type, fn, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType,
elemData = jQuery.data( elem ),
events = elemData && elemData.events;
if ( !elemData || !events ) {
return;
}
// types is actually an event object here
if ( types && types.type ) {
handler = types.handler;
types = types.type;
}
// Unbind all events for the element
if ( !types || typeof types === “string” && types.charAt(0) === “.” ) {
types = types || “”;
for ( type in events ) {
jQuery.event.remove( elem, type + types );
}
return;
}
// Handle multiple events separated by a space
// jQuery(…).unbind(“mouseover mouseout”, fn);
types = types.split(” “);
for ( var j = pos || 0; j = 0 ) {
event.type = type = type.slice(0, -1);
event.exclusive = true;
}
// Handle a global trigger
if ( !elem ) {
// Don’t bubble custom events when global (to avoid too much overhead)
event.stopPropagation();
// Only trigger if we’ve ever bound an event for it
if ( jQuery.event.global[ type ] ) {
jQuery.each( jQuery.cache, function() {
if ( this.events && this.events[type] ) {
jQuery.event.trigger( event, data, this.handle.elem );
}
});
}
}
// Handle triggering a single element
// don’t do events on text and comment nodes
if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) {
return undefined;
}
// Clean up in case it is reused
event.result = undefined;
event.target = elem;
// Clone the incoming data, if any
data = jQuery.makeArray( data );
data.unshift( event );
}
event.currentTarget = elem;
// Trigger the event, it is assumed that “handle” is a function
var handle = jQuery.data( elem, “handle” );
if ( handle ) {
handle.apply( elem, data );
}
var parent = elem.parentNode || elem.ownerDocument;
// Trigger an inline bound script
try {
if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) {
if ( elem[ “on” + type ] && elem[ “on” + type ].apply( elem, data ) === false ) {
event.result = false;
}
}
// prevent IE from throwing an error for some elements with some event types, see #3533
} catch (e) {}
data = jQuery.data( elem, “_change_data” );
val = getVal(elem);
// the current data will be also retrieved by beforeactivate
if ( e.type !== “focusout” || elem.type !== “radio” ) {
jQuery.data( elem, “_change_data”, val );
}
if ( data === undefined || val === data ) {
return;
}
if ( data != null || val ) {
e.type = “change”;
return jQuery.event.trigger( e, arguments[1], elem );
}
};
click: function( e ) {
var elem = e.target, type = elem.type;
if ( type === “radio” || type === “checkbox” || elem.nodeName.toLowerCase() === “select” ) {
return testChange.call( this, e );
}
},
// Change has to be called before submit
// Keydown will be called before keypress, which is used in submit-event delegation
keydown: function( e ) {
var elem = e.target, type = elem.type;
if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== “textarea”) ||
(e.keyCode === 32 && (type === “checkbox” || type === “radio”)) ||
type === “select-multiple” ) {
return testChange.call( this, e );
}
},
// Beforeactivate happens also before the previous element is blurred
// with this event you can’t trigger a change event, but you can store
// information/focus[in] is not needed anymore
beforeactivate: function( e ) {
var elem = e.target;
jQuery.data( elem, “_change_data”, getVal(elem) );
}
},
function handler( e ) {
e = jQuery.event.fix( e );
e.type = fix;
return jQuery.event.handle.call( this, e );
}
});
}
jQuery.each([“bind”, “one”], function( i, name ) {
jQuery.fn[ name ] = function( type, data, fn ) {
// Handle object literals
if ( typeof type === “object” ) {
for ( var key in type ) {
this[ name ](key, data, type[key], fn);
}
return this;
}
if ( jQuery.isFunction( data ) ) {
fn = data;
data = undefined;
}
var handler = name === “one” ? jQuery.proxy( fn, function( event ) {
jQuery( this ).unbind( event, handler );
return fn.apply( this, arguments );
}) : fn;
if ( type === “unload” && name !== “one” ) {
this.one( type, data, fn );
} else {
for ( var i = 0, l = this.length; i < l; i++ ) {
jQuery.event.add( this[i], type, handler, data );
}
}
return this;
};
});
jQuery.fn.extend({
unbind: function( type, fn ) {
// Handle object literals
if ( typeof type === "object" && !type.preventDefault ) {
for ( var key in type ) {
this.unbind(key, type[key]);
}
} else {
for ( var i = 0, l = this.length; i < l; i++ ) {
jQuery.event.remove( this[i], type, fn );
}
}
match = jQuery( event.target ).closest( selectors, event.currentTarget );
for ( i = 0, l = match.length; i < l; i++ ) {
for ( j = 0; j < live.length; j++ ) {
handleObj = live[j];
if ( match[i].selector === handleObj.selector ) {
elem = match[i].elem;
related = null;
// Those two events require additional checking
if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) {
related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0];
}
if ( !related || related !== elem ) {
elems.push({ elem: elem, handleObj: handleObj });
}
}
}
}
for ( i = 0, l = elems.length; i +~,([\]+)+|[>+~])(s*,s*)?((?:.|r|n)*)/g,
done = 0,
toString = Object.prototype.toString,
hasDuplicate = false,
baseHasDuplicate = true;
// Here we check if the JavaScript engine is using some sort of
// optimization where it does not always call our comparision
// function. If that is the case, discard the hasDuplicate value.
// Thus far that includes Google Chrome.
[0, 0].sort(function(){
baseHasDuplicate = false;
return 0;
});
set = posProcess( selector, set );
}
}
} else {
// Take a shortcut and set the context if the root selector is an ID
// (but not if it’ll be faster if the inner selector is an ID)
if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML &&
Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length – 1]) ) {
var ret = Sizzle.find( parts.shift(), context, contextXML );
context = ret.expr ? Sizzle.filter( ret.expr, ret.set )[0] : ret.set[0];
}
Sizzle.find = function(expr, context, isXML){
var set, match;
if ( !expr ) {
return [];
}
for ( var i = 0, l = Expr.order.length; i < l; i++ ) {
var type = Expr.order[i], match;
if ( (match = Expr.leftMatch[ type ].exec( expr )) ) {
var left = match[1];
match.splice(1,1);
if ( left.substr( left.length – 1 ) !== "\" ) {
match[1] = (match[1] || "").replace(/\/g, "");
set = Expr.find[ type ]( match, context, isXML );
if ( set != null ) {
expr = expr.replace( Expr.match[ type ], "" );
break;
}
}
}
}
if ( !set ) {
set = context.getElementsByTagName("*");
}
return {set: set, expr: expr};
};
Sizzle.filter = function(expr, set, inplace, not){
var old = expr, result = [], curLoop = set, match, anyFound,
isXMLFilter = set && set[0] && isXML(set[0]);
while ( expr && set.length ) {
for ( var type in Expr.filter ) {
if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) {
var filter = Expr.filter[ type ], found, item, left = match[1];
anyFound = false;
if ( Expr.preFilter[ type ] ) {
match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter );
if ( !match ) {
anyFound = found = true;
} else if ( match === true ) {
continue;
}
}
if ( match ) {
for ( var i = 0; (item = curLoop[i]) != null; i++ ) {
if ( item ) {
found = filter( item, match, i, curLoop );
var pass = not ^ !!found;
for ( var i = 0, l = checkSet.length, elem; i “: function(checkSet, part){
var isPartStr = typeof part === “string”;
if ( isPartStr && !/W/.test(part) ) {
part = part.toLowerCase();
for ( var i = 0, l = checkSet.length; i < l; i++ ) {
var elem = checkSet[i];
if ( elem ) {
var parent = elem.parentNode;
checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false;
}
}
} else {
for ( var i = 0, l = checkSet.length; i < l; i++ ) {
var elem = checkSet[i];
if ( elem ) {
checkSet[i] = isPartStr ?
elem.parentNode :
elem.parentNode === part;
}
}
if ( filter ) {
return filter( elem, i, match, array );
} else if ( name === “contains” ) {
return (elem.textContent || elem.innerText || getText([ elem ]) || “”).indexOf(match[3]) >= 0;
} else if ( name === “not” ) {
var not = match[3];
for ( var i = 0, l = not.length; i = 0 );
}
}
},
ID: function(elem, match){
return elem.nodeType === 1 && elem.getAttribute(“id”) === match;
},
TAG: function(elem, match){
return (match === “*” && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match;
},
CLASS: function(elem, match){
return (” ” + (elem.className || elem.getAttribute(“class”)) + ” “)
.indexOf( match ) > -1;
},
ATTR: function(elem, match){
var name = match[1],
result = Expr.attrHandle[ name ] ?
Expr.attrHandle[ name ]( elem ) :
elem[ name ] != null ?
elem[ name ] :
elem.getAttribute( name ),
value = result + “”,
type = match[2],
check = match[4];
return result == null ?
type === “!=” :
type === “=” ?
value === check :
type === “*=” ?
value.indexOf(check) >= 0 :
type === “~=” ?
(” ” + value + ” “).indexOf(check) >= 0 :
!check ?
value && result !== false :
type === “!=” ?
value !== check :
type === “^=” ?
value.indexOf(check) === 0 :
type === “$=” ?
value.substr(value.length – check.length) === check :
type === “|=” ?
value === check || value.substr(0, check.length + 1) === check + “-” :
false;
},
POS: function(elem, match, i, array){
var name = match[2], filter = Expr.setFilters[ name ];
if ( filter ) {
return filter( elem, i, match, array );
}
}
}
};
var origPOS = Expr.match.POS;
for ( var type in Expr.match ) {
Expr.match[ type ] = new RegExp( Expr.match[ type ].source + /(?![^[]*])(?![^(]*))/.source );
Expr.leftMatch[ type ] = new RegExp( /(^(?:.|r|n)*?)/.source + Expr.match[ type ].source.replace(/\(d+)/g, function(all, num){
return “\” + (num – 0 + 1);
}));
}
// Perform a simple check to determine if the browser is capable of
// converting a NodeList to an array using builtin methods.
// Also verifies that the returned array holds DOM nodes
// (which is not the case in the Blackberry browser)
try {
Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType;
// Provide a fallback method if it does not work
} catch(e){
makeArray = function(array, results) {
var ret = results || [];
if ( toString.call(array) === “[object Array]” ) {
Array.prototype.push.apply( ret, array );
} else {
if ( typeof array.length === “number” ) {
for ( var i = 0, l = array.length; i < l; i++ ) {
ret.push( array[i] );
}
} else {
for ( var i = 0; array[i]; i++ ) {
ret.push( array[i] );
}
}
}
return ret;
};
}
var sortOrder;
if ( document.documentElement.compareDocumentPosition ) {
sortOrder = function( a, b ) {
if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) {
if ( a == b ) {
hasDuplicate = true;
}
return a.compareDocumentPosition ? -1 : 1;
}
var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1;
if ( ret === 0 ) {
hasDuplicate = true;
}
return ret;
};
} else if ( "sourceIndex" in document.documentElement ) {
sortOrder = function( a, b ) {
if ( !a.sourceIndex || !b.sourceIndex ) {
if ( a == b ) {
hasDuplicate = true;
}
return a.sourceIndex ? -1 : 1;
}
var ret = a.sourceIndex – b.sourceIndex;
if ( ret === 0 ) {
hasDuplicate = true;
}
return ret;
};
} else if ( document.createRange ) {
sortOrder = function( a, b ) {
if ( !a.ownerDocument || !b.ownerDocument ) {
if ( a == b ) {
hasDuplicate = true;
}
return a.ownerDocument ? -1 : 1;
}
var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange();
aRange.setStart(a, 0);
aRange.setEnd(a, 0);
bRange.setStart(b, 0);
bRange.setEnd(b, 0);
var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange);
if ( ret === 0 ) {
hasDuplicate = true;
}
return ret;
};
}
// Utility function for retreiving the text value of an array of DOM nodes
function getText( elems ) {
var ret = "", elem;
for ( var i = 0; elems[i]; i++ ) {
elem = elems[i];
// Get the text from text nodes and CDATA nodes
if ( elem.nodeType === 3 || elem.nodeType === 4 ) {
ret += elem.nodeValue;
// Check to see if the browser returns elements by name when
// querying by getElementById (and provide a workaround)
(function(){
// We're going to inject a fake input element with a specified name
var form = document.createElement("div"),
id = "script" + (new Date).getTime();
form.innerHTML = "“;
// Inject it into the root element, check its status, and remove it quickly
var root = document.documentElement;
root.insertBefore( form, root.firstChild );
// The workaround has to do additional checks after a getElementById
// Which slows things down for other browsers (hence the branching)
if ( document.getElementById( id ) ) {
Expr.find.ID = function(match, context, isXML){
if ( typeof context.getElementById !== “undefined” && !isXML ) {
var m = context.getElementById(match[1]);
return m ? m.id === match[1] || typeof m.getAttributeNode !== “undefined” && m.getAttributeNode(“id”).nodeValue === match[1] ? [m] : undefined : [];
}
};
root.removeChild( form );
root = form = null; // release memory in IE
})();
(function(){
// Check to see if the browser returns only elements
// when doing getElementsByTagName(“*”)
// Create a fake element
var div = document.createElement(“div”);
div.appendChild( document.createComment(“”) );
// Make sure no comments are found
if ( div.getElementsByTagName(“*”).length > 0 ) {
Expr.find.TAG = function(match, context){
var results = context.getElementsByTagName(match[1]);
// Filter out possible comments
if ( match[1] === “*” ) {
var tmp = [];
for ( var i = 0; results[i]; i++ ) {
if ( results[i].nodeType === 1 ) {
tmp.push( results[i] );
}
}
results = tmp;
}
return results;
};
}
// Check to see if an attribute returns normalized href attributes
div.innerHTML = ““;
if ( div.firstChild && typeof div.firstChild.getAttribute !== “undefined” &&
div.firstChild.getAttribute(“href”) !== “#” ) {
Expr.attrHandle.href = function(elem){
return elem.getAttribute(“href”, 2);
};
}
div = null; // release memory in IE
})();
if ( document.querySelectorAll ) {
(function(){
var oldSizzle = Sizzle, div = document.createElement(“div”);
div.innerHTML = ”
“;
// Safari can’t handle uppercase or unicode characters when
// in quirks mode.
if ( div.querySelectorAll && div.querySelectorAll(“.TEST”).length === 0 ) {
return;
}
// Only use querySelectorAll on non-XML documents
// (ID selectors don’t work in non-HTML documents)
if ( !seed && context.nodeType === 9 && !isXML(context) ) {
try {
return makeArray( context.querySelectorAll(query), extra );
} catch(e){}
}
return oldSizzle(query, context, extra, seed);
};
for ( var prop in oldSizzle ) {
Sizzle[ prop ] = oldSizzle[ prop ];
}
div = null; // release memory in IE
})();
}
(function(){
var div = document.createElement(“div”);
div.innerHTML = ”
“;
// Opera can’t find a second classname (in 9.6)
// Also, make sure that getElementsByClassName actually exists
if ( !div.getElementsByClassName || div.getElementsByClassName(“e”).length === 0 ) {
return;
}
// Safari caches class attributes, doesn’t catch changes (in 3.2)
div.lastChild.className = “e”;
if ( div.getElementsByClassName(“e”).length === 1 ) {
return;
}
function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
for ( var i = 0, l = checkSet.length; i < l; i++ ) {
var elem = checkSet[i];
if ( elem ) {
elem = elem[dir];
var match = false;
while ( elem ) {
if ( elem.sizcache === doneName ) {
match = checkSet[elem.sizset];
break;
}
if ( elem.nodeName.toLowerCase() === cur ) {
match = elem;
break;
}
elem = elem[dir];
}
checkSet[i] = match;
}
}
}
function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) {
for ( var i = 0, l = checkSet.length; i 0 ) {
match = elem;
break;
}
}
elem = elem[dir];
}
checkSet[i] = match;
}
}
}
var contains = document.compareDocumentPosition ? function(a, b){
return !!(a.compareDocumentPosition(b) & 16);
} : function(a, b){
return a !== b && (a.contains ? a.contains(b) : true);
};
var isXML = function(elem){
// documentElement is verified for cases where it doesn’t yet exist
// (such as loading iframes in IE – #4833)
var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement;
return documentElement ? documentElement.nodeName !== “HTML” : false;
};
var posProcess = function(selector, context){
var tmpSet = [], later = “”, match,
root = context.nodeType ? [context] : context;
// Position selectors must be done after the filter
// And so must :not(positional) so we move all PSEUDOs to the end
while ( (match = Expr.match.PSEUDO.exec( selector )) ) {
later += match[0];
selector = selector.replace( Expr.match.PSEUDO, “” );
}
for ( var i = 0, l = root.length; i = 0) === keep;
});
};
jQuery.fn.extend({
find: function( selector ) {
var ret = this.pushStack( “”, “find”, selector ), length = 0;
for ( var i = 0, l = this.length; i 0 ) {
// Make sure that the results are unique
for ( var n = length; n < ret.length; n++ ) {
for ( var r = 0; r < length; r++ ) {
if ( ret[r] === ret[n] ) {
ret.splice(n–, 1);
break;
}
}
}
}
}
return ret;
},
has: function( target ) {
var targets = jQuery( target );
return this.filter(function() {
for ( var i = 0, l = targets.length; i 0;
},
closest: function( selectors, context ) {
if ( jQuery.isArray( selectors ) ) {
var ret = [], cur = this[0], match, matches = {}, selector;
if ( cur && selectors.length ) {
for ( var i = 0, l = selectors.length; i -1 : jQuery(cur).is(match) ) {
ret.push({ selector: selector, elem: cur });
delete matches[selector];
}
}
cur = cur.parentNode;
}
}
return this.map(function( i, cur ) {
while ( cur && cur.ownerDocument && cur !== context ) {
if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selectors) ) {
return cur;
}
cur = cur.parentNode;
}
return null;
});
},
// Determine the position of an element within
// the matched set of elements
index: function( elem ) {
if ( !elem || typeof elem === “string” ) {
return jQuery.inArray( this[0],
// If it receives a string, the selector is used
// If it receives nothing, the siblings are used
elem ? jQuery( elem ) : this.parent().children() );
}
// Locate the position of the desired element
return jQuery.inArray(
// If it receives a jQuery object, the first element is used
elem.jquery ? elem[0] : elem, this );
},
add: function( selector, context ) {
var set = typeof selector === “string” ?
jQuery( selector, context || this.context ) :
jQuery.makeArray( selector ),
all = jQuery.merge( this.get(), set );
return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ?
all :
jQuery.unique( all ) );
},
// A painfully simple check to see if an element is disconnected
// from a document (should be improved, where feasible).
function isDisconnected( node ) {
return !node || !node.parentNode || node.parentNode.nodeType === 11;
}
empty: function() {
for ( var i = 0, elem; (elem = this[i]) != null; i++ ) {
// Remove element nodes and prevent memory leaks
if ( elem.nodeType === 1 ) {
jQuery.cleanData( elem.getElementsByTagName(“*”) );
}
// Remove any remaining nodes
while ( elem.firstChild ) {
elem.removeChild( elem.firstChild );
}
}
return this;
},
clone: function( events ) {
// Do the clone
var ret = this.map(function() {
if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) {
// IE copies events bound via attachEvent when
// using cloneNode. Calling detachEvent on the
// clone will also remove the events from the orignal
// In order to get around this, we use innerHTML.
// Unfortunately, this means some modifications to
// attributes in IE that are actually only stored
// as properties will not be copied (such as the
// the name attribute on an input).
var html = this.outerHTML, ownerDocument = this.ownerDocument;
if ( !html ) {
var div = ownerDocument.createElement(“div”);
div.appendChild( this.cloneNode(true) );
html = div.innerHTML;
}
return jQuery.clean([html.replace(rinlinejQuery, “”)
// Handle the case in IE 8 where action=/test/> self-closes a tag
.replace(/=([^=”‘>s]+/)>/g, ‘=”$1″>’)
.replace(rleadingWhitespace, “”)], ownerDocument)[0];
} else {
return this.cloneNode(true);
}
});
// Copy the events from the original to the clone
if ( events === true ) {
cloneCopyEvent( this, ret );
cloneCopyEvent( this.find(“*”), ret.find(“*”) );
}
// Return the cloned set
return ret;
},
html: function( value ) {
if ( value === undefined ) {
return this[0] && this[0].nodeType === 1 ?
this[0].innerHTML.replace(rinlinejQuery, “”) :
null;
// See if we can take a shortcut and just use innerHTML
} else if ( typeof value === “string” && !rnocache.test( value ) &&
(jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value )) &&
!wrapMap[ (rtagName.exec( value ) || [“”, “”])[1].toLowerCase() ] ) {
value = value.replace(rxhtmlTag, fcloseTag);
try {
for ( var i = 0, l = this.length; i < l; i++ ) {
// Remove element nodes and prevent memory leaks
if ( this[i].nodeType === 1 ) {
jQuery.cleanData( this[i].getElementsByTagName("*") );
this[i].innerHTML = value;
}
}
// If using innerHTML throws an exception, use the fallback method
} catch(e) {
this.empty().append( value );
}
} else if ( jQuery.isFunction( value ) ) {
this.each(function(i){
var self = jQuery(this), old = self.html();
self.empty().append(function(){
return value.call( this, i, old );
});
});
} else {
this.empty().append( value );
}
return this;
},
replaceWith: function( value ) {
if ( this[0] && this[0].parentNode ) {
// Make sure that the elements are removed from the DOM before they are inserted
// this can help fix replacing a parent with child elements
if ( jQuery.isFunction( value ) ) {
return this.each(function(i) {
var self = jQuery(this), old = self.html();
self.replaceWith( value.call( this, i, old ) );
});
}
if ( typeof value !== "string" ) {
value = jQuery(value).detach();
}
return this.each(function() {
var next = this.nextSibling, parent = this.parentNode;
jQuery(this).remove();
if ( next ) {
jQuery(next).before( value );
} else {
jQuery(parent).append( value );
}
});
} else {
return this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value );
}
},
domManip: function( args, table, callback ) {
var results, first, value = args[0], scripts = [], fragment, parent;
// We can't cloneNode fragments that contain checked, in WebKit
if ( !jQuery.support.checkClone && arguments.length === 3 && typeof value === "string" && rchecked.test( value ) ) {
return this.each(function() {
jQuery(this).domManip( args, table, callback, true );
});
}
if ( jQuery.isFunction(value) ) {
return this.each(function(i) {
var self = jQuery(this);
args[0] = value.call(this, i, table ? self.html() : undefined);
self.domManip( args, table, callback );
});
}
if ( this[0] ) {
parent = value && value.parentNode;
// If we're in a fragment, just use that instead of building a new one
if ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) {
results = { fragment: parent };
if ( events ) {
delete curData.handle;
curData.events = {};
for ( var type in events ) {
for ( var handler in events[ type ] ) {
jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
}
}
}
});
}
// Only cache “small” (1/2 KB) strings that are associated with the main document
// Cloning options loses the selected state, so don’t cache them
// IE 6 doesn’t like it when you put or elements in a fragment
// Also, WebKit does not clone ‘checked’ attributes on cloneNode, so don’t cache
if ( args.length === 1 && typeof args[0] === “string” && args[0].length < 512 && doc === document &&
!rnocache.test( args[0] ) && (jQuery.support.checkClone || !rchecked.test( args[0] )) ) {
cacheable = true;
cacheresults = jQuery.fragments[ args[0] ];
if ( cacheresults ) {
if ( cacheresults !== 1 ) {
fragment = cacheresults;
}
}
}
if ( !fragment ) {
fragment = doc.createDocumentFragment();
jQuery.clean( args, doc, fragment, scripts );
}
if ( cacheable ) {
jQuery.fragments[ args[0] ] = cacheresults ? fragment : 1;
}
} else {
for ( var i = 0, l = insert.length; i 0 ? this.clone(true) : this).get();
jQuery.fn[ original ].apply( jQuery(insert[i]), elems );
ret = ret.concat( elems );
}
// !context.createElement fails in IE with an error but returns typeof ‘object’
if ( typeof context.createElement === “undefined” ) {
context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
}
var ret = [];
for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) {
if ( typeof elem === “number” ) {
elem += “”;
}
if ( !elem ) {
continue;
}
// Convert html string into DOM nodes
if ( typeof elem === “string” && !rhtml.test( elem ) ) {
elem = context.createTextNode( elem );
} else if ( typeof elem === “string” ) {
// Fix “XHTML”-style tags in all browsers
elem = elem.replace(rxhtmlTag, fcloseTag);
// Trim whitespace, otherwise indexOf won’t work as expected
var tag = (rtagName.exec( elem ) || [“”, “”])[1].toLowerCase(),
wrap = wrapMap[ tag ] || wrapMap._default,
depth = wrap[0],
div = context.createElement(“div”);
// Go to html and back, then peel off extra wrappers
div.innerHTML = wrap[1] + elem + wrap[2];
// Move to the right depth
while ( depth– ) {
div = div.lastChild;
}
// Remove IE’s autoinserted
from table fragments
if ( !jQuery.support.tbody ) {
// String was a
, *may* have spurious
var hasBody = rtbody.test(elem),
tbody = tag === “table” && !hasBody ?
div.firstChild && div.firstChild.childNodes :
// Make sure we’re using the right name for getting the float value
if ( rfloat.test( name ) ) {
name = styleFloat;
}
name = name.replace(rdashAlpha, fcamelCase);
if ( set ) {
style[ name ] = value;
}
return style[ name ];
},
css: function( elem, name, force, extra ) {
if ( name === “width” || name === “height” ) {
var val, props = cssShow, which = name === “width” ? cssWidth : cssHeight;
function getWH() {
val = name === “width” ? elem.offsetWidth : elem.offsetHeight;
if ( extra === “border” ) {
return;
}
jQuery.each( which, function() {
if ( !extra ) {
val -= parseFloat(jQuery.curCSS( elem, “padding” + this, true)) || 0;
}
if ( extra === “margin” ) {
val += parseFloat(jQuery.curCSS( elem, “margin” + this, true)) || 0;
} else {
val -= parseFloat(jQuery.curCSS( elem, “border” + this + “Width”, true)) || 0;
}
});
}
// If we’re not dealing with a regular pixel number
// but a number that has a weird ending, we need to convert it to pixels
if ( !rnumpx.test( ret ) && rnum.test( ret ) ) {
// Remember the original values
var left = style.left, rsLeft = elem.runtimeStyle.left;
// Put in the new values to get a computed value out
elem.runtimeStyle.left = elem.currentStyle.left;
style.left = camelCase === “fontSize” ? “1em” : (ret || 0);
ret = style.pixelLeft + “px”;
// A method for quickly swapping in/out CSS properties to get correct calculations
swap: function( elem, options, callback ) {
var old = {};
// Remember the old values, and insert the new ones
for ( var name in options ) {
old[ name ] = elem.style[ name ];
elem.style[ name ] = options[ name ];
}
callback.call( elem );
// Revert the old values
for ( var name in options ) {
elem.style[ name ] = old[ name ];
}
}
});
// Don’t do a request if no elements are being requested
} else if ( !this.length ) {
return this;
}
var off = url.indexOf(” “);
if ( off >= 0 ) {
var selector = url.slice(off, url.length);
url = url.slice(0, off);
}
// Default to a GET request
var type = “GET”;
// If the second parameter was provided
if ( params ) {
// If it’s a function
if ( jQuery.isFunction( params ) ) {
// We assume that it’s the callback
callback = params;
params = null;
// Otherwise, build a param string
} else if ( typeof params === “object” ) {
params = jQuery.param( params, jQuery.ajaxSettings.traditional );
type = “POST”;
}
}
var self = this;
// Request the remote document
jQuery.ajax({
url: url,
type: type,
dataType: “html”,
data: params,
complete: function( res, status ) {
// If successful, inject the HTML into all the matched elements
if ( status === “success” || status === “notmodified” ) {
// See if a selector was specified
self.html( selector ?
// Create a dummy div to hold the results
jQuery(”
“)
// inject the contents of the document in, removing the scripts
// to avoid any ‘Permission Denied’ errors in IE
.append(res.responseText.replace(rscript, “”))
// Locate the specified elements
.find(selector) :
// If not, just inject the full result
res.responseText );
}
return val == null ?
null :
jQuery.isArray(val) ?
jQuery.map( val, function( val, i ) {
return { name: elem.name, value: val };
}) :
{ name: elem.name, value: val };
}).get();
}
});
// Attach a bunch of functions for handling common AJAX events
jQuery.each( “ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend”.split(” “), function( i, o ) {
jQuery.fn[o] = function( f ) {
return this.bind(o, f);
};
});
jQuery.extend({
get: function( url, data, callback, type ) {
// shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = null;
}
post: function( url, data, callback, type ) {
// shift arguments if data argument was omited
if ( jQuery.isFunction( data ) ) {
type = type || callback;
callback = data;
data = {};
}
if ( s.cache === false && type === “GET” ) {
var ts = now();
// try replacing _= if it is there
var ret = s.url.replace(rts, “$1_=” + ts + “$2”);
// if nothing was replaced, add timestamp to the end
s.url = ret + ((ret === s.url) ? (rquery.test(s.url) ? “&” : “?”) + “_=” + ts : “”);
}
// If data is available, append data to url for get requests
if ( s.data && type === “GET” ) {
s.url += (rquery.test(s.url) ? “&” : “?”) + s.data;
}
// Watch for a new set of requests
if ( s.global && ! jQuery.active++ ) {
jQuery.event.trigger( “ajaxStart” );
}
// Matches an absolute URL, and saves the domain
var parts = rurl.exec( s.url ),
remote = parts && (parts[1] && parts[1] !== location.protocol || parts[2] !== location.host);
// If we’re requesting a remote document
// and trying to load JSON or Script with a GET
if ( s.dataType === “script” && type === “GET” && remote ) {
var head = document.getElementsByTagName(“head”)[0] || document.documentElement;
var script = document.createElement(“script”);
script.src = s.url;
if ( s.scriptCharset ) {
script.charset = s.scriptCharset;
}
// Handle Script loading
if ( !jsonp ) {
var done = false;
// Handle memory leak in IE
script.onload = script.onreadystatechange = null;
if ( head && script.parentNode ) {
head.removeChild( script );
}
}
};
}
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
// This arises when a base node is used (#2709 and #4378).
head.insertBefore( script, head.firstChild );
// We handle everything using the script element injection
return undefined;
}
var requestDone = false;
// Create the request object
var xhr = s.xhr();
if ( !xhr ) {
return;
}
// Open the socket
// Passing null username, generates a login popup on Opera (#2865)
if ( s.username ) {
xhr.open(type, s.url, s.async, s.username, s.password);
} else {
xhr.open(type, s.url, s.async);
}
// Need an extra try/catch for cross domain requests in Firefox 3
try {
// Set the correct header, if data is being sent
if ( s.data || origSettings && origSettings.contentType ) {
xhr.setRequestHeader(“Content-Type”, s.contentType);
}
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
if ( s.ifModified ) {
if ( jQuery.lastModified[s.url] ) {
xhr.setRequestHeader(“If-Modified-Since”, jQuery.lastModified[s.url]);
}
if ( jQuery.etag[s.url] ) {
xhr.setRequestHeader(“If-None-Match”, jQuery.etag[s.url]);
}
}
// Set header so the called script knows that it’s an XMLHttpRequest
// Only send the header if it’s not a remote XHR
if ( !remote ) {
xhr.setRequestHeader(“X-Requested-With”, “XMLHttpRequest”);
}
// Set the Accepts header for the server, depending on the dataType
xhr.setRequestHeader(“Accept”, s.dataType && s.accepts[ s.dataType ] ?
s.accepts[ s.dataType ] + “, */*” :
s.accepts._default );
} catch(e) {}
// Allow custom headers/mimetypes and early abort
if ( s.beforeSend && s.beforeSend.call(callbackContext, xhr, s) === false ) {
// Handle the global AJAX counter
if ( s.global && ! –jQuery.active ) {
jQuery.event.trigger( “ajaxStop” );
}
// close opended socket
xhr.abort();
return false;
}
if ( s.global ) {
trigger(“ajaxSend”, [xhr, s]);
}
// Wait for a response to come back
var onreadystatechange = xhr.onreadystatechange = function( isTimeout ) {
// The request was aborted
if ( !xhr || xhr.readyState === 0 || isTimeout === “abort” ) {
// Opera doesn’t call onreadystatechange before this point
// so we simulate the call
if ( !requestDone ) {
complete();
}
// The transfer is complete and the data is available, or the request timed out
} else if ( !requestDone && xhr && (xhr.readyState === 4 || isTimeout === “timeout”) ) {
requestDone = true;
xhr.onreadystatechange = jQuery.noop;
if ( status === “success” ) {
// Watch for, and catch, XML document parse errors
try {
// process the data (runs the xml through httpData regardless of callback)
data = jQuery.httpData( xhr, s.dataType, s );
} catch(err) {
status = “parsererror”;
errMsg = err;
}
}
// Make sure that the request was successful or notmodified
if ( status === “success” || status === “notmodified” ) {
// JSONP handles its own success callback
if ( !jsonp ) {
success();
}
} else {
jQuery.handleError(s, xhr, status, errMsg);
}
// Override the abort handler, if we can (IE doesn’t allow it, but that’s OK)
// Opera doesn’t fire onreadystatechange at all on abort
try {
var oldAbort = xhr.abort;
xhr.abort = function() {
if ( xhr ) {
oldAbort.call( xhr );
}
onreadystatechange( “abort” );
};
} catch(e) { }
// Timeout checker
if ( s.async && s.timeout > 0 ) {
setTimeout(function() {
// Check to see if the request is still happening
if ( xhr && !requestDone ) {
onreadystatechange( “timeout” );
}
}, s.timeout);
}
// Send the data
try {
xhr.send( type === “POST” || type === “PUT” || type === “DELETE” ? s.data : null );
} catch(e) {
jQuery.handleError(s, xhr, null, e);
// Fire the complete handlers
complete();
}
// firefox 1.5 doesn’t fire statechange for sync requests
if ( !s.async ) {
onreadystatechange();
}
function success() {
// If a local callback was specified, fire it and pass it the data
if ( s.success ) {
s.success.call( callbackContext, data, status, xhr );
}
// Fire the global callback
if ( s.global ) {
trigger( “ajaxSuccess”, [xhr, s] );
}
}
function complete() {
// Process result
if ( s.complete ) {
s.complete.call( callbackContext, xhr, status);
}
// The request was completed
if ( s.global ) {
trigger( “ajaxComplete”, [xhr, s] );
}
// Handle the global AJAX counter
if ( s.global && ! –jQuery.active ) {
jQuery.event.trigger( “ajaxStop” );
}
}
// return XMLHttpRequest to allow aborting the request etc.
return xhr;
},
handleError: function( s, xhr, status, e ) {
// If a local callback was specified, fire it
if ( s.error ) {
s.error.call( s.context || s, xhr, status, e );
}
// Fire the global callback
if ( s.global ) {
(s.context ? jQuery(s.context) : jQuery.event).trigger( “ajaxError”, [xhr, s, e] );
}
},
// Counter for holding the number of active queries
active: 0,
// Determines if an XMLHttpRequest was successful or not
httpSuccess: function( xhr ) {
try {
// IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
return !xhr.status && location.protocol === “file:” ||
// Opera returns 0 when status is 304
( xhr.status >= 200 && xhr.status = 0,
data = xml ? xhr.responseXML : xhr.responseText;
if ( xml && data.documentElement.nodeName === “parsererror” ) {
jQuery.error( “parsererror” );
}
// Allow a pre-filtering function to sanitize the response
// s is checked to keep backwards compatibility
if ( s && s.dataFilter ) {
data = s.dataFilter( data, type );
}
// The filter can actually parse the response
if ( typeof data === “string” ) {
// Get the JavaScript object, if JSON is used.
if ( type === “json” || !type && ct.indexOf(“json”) >= 0 ) {
data = jQuery.parseJSON( data );
// If the type is “script”, eval it in global context
} else if ( type === “script” || !type && ct.indexOf(“javascript”) >= 0 ) {
jQuery.globalEval( data );
}
}
return data;
},
// Serialize an array of form elements or a set of
// key/values into a query string
param: function( a, traditional ) {
var s = [];
// Set traditional to true for jQuery <= 1.3.2 behavior.
if ( traditional === undefined ) {
traditional = jQuery.ajaxSettings.traditional;
}
// If an array was passed in, assume that it is an array of form elements.
if ( jQuery.isArray(a) || a.jquery ) {
// Serialize the form elements
jQuery.each( a, function() {
add( this.name, this.value );
});
} else {
// If traditional, encode the "old" way (the way 1.3.2 or older
// did it), otherwise encode params recursively.
for ( var prefix in a ) {
buildParams( prefix, a[prefix] );
}
}
// Return the resulting serialization
return s.join("&").replace(r20, "+");
function buildParams( prefix, obj ) {
if ( jQuery.isArray(obj) ) {
// Serialize array item.
jQuery.each( obj, function( i, v ) {
if ( traditional || /[]$/.test( prefix ) ) {
// Treat each array item as a scalar.
add( prefix, v );
} else {
// If array item is non-scalar (array or object), encode its
// numeric index to resolve deserialization ambiguity issues.
// Note that rack (as of 1.0.0) can't currently deserialize
// nested arrays properly, and attempting to do so may cause
// a server error. Possible fixes are to modify rack's
// deserialization algorithm or to provide an option or flag
// to force array serialization to be shallow.
buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v );
}
});
} else if ( !traditional && obj != null && typeof obj === "object" ) {
// Serialize object item.
jQuery.each( obj, function( k, v ) {
buildParams( prefix + "[" + k + "]", v );
});
// Set the display of the elements in a second loop
// to avoid the constant reflow
for ( var j = 0, k = this.length; j < k; j++ ) {
this[j].style.display = jQuery.data(this[j], "olddisplay") || "";
}
} else {
for ( var i = 0, l = this.length; i < l; i++ ) {
var old = jQuery.data(this[i], "olddisplay");
if ( !old && old !== "none" ) {
jQuery.data(this[i], "olddisplay", jQuery.css(this[i], "display"));
}
}
// Set the display of the elements in a second loop
// to avoid the constant reflow
for ( var j = 0, k = this.length; j = 0; i– ) {
if ( timers[i].elem === this ) {
if (gotoEnd) {
// force the next step to be the last
timers[i](true);
}
timers.splice(i, 1);
}
}
});
// start the next in the queue if the last step wasn’t forced
if ( !gotoEnd ) {
this.dequeue();
}
jQuery.fx.prototype = {
// Simple function for setting a style value
update: function() {
if ( this.options.step ) {
this.options.step.call( this.elem, this.now, this );
}
(jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
// Set display property to block for height/width animations
if ( ( this.prop === “height” || this.prop === “width” ) && this.elem.style ) {
this.elem.style.display = “block”;
}
},
// Get the current size
cur: function( force ) {
if ( this.elem[this.prop] != null && (!this.elem.style || this.elem.style[this.prop] == null) ) {
return this.elem[ this.prop ];
}
var r = parseFloat(jQuery.css(this.elem, this.prop, force));
return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
},
// Start an animation from one number to another
custom: function( from, to, unit ) {
this.startTime = now();
this.start = from;
this.end = to;
this.unit = unit || this.unit || “px”;
this.now = this.start;
this.pos = this.state = 0;
var self = this;
function t( gotoEnd ) {
return self.step(gotoEnd);
}
// Simple ‘show’ function
show: function() {
// Remember where we started, so that we can go back to it later
this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
this.options.show = true;
// Begin the animation
// Make sure that we start at a small width/height to avoid any
// flash of content
this.custom(this.prop === “width” || this.prop === “height” ? 1 : 0, this.cur());
// Start by showing the element
jQuery( this.elem ).show();
},
// Simple ‘hide’ function
hide: function() {
// Remember where we started, so that we can go back to it later
this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
this.options.hide = true;
// Begin the animation
this.custom(this.cur(), 0);
},
// Each step of an animation
step: function( gotoEnd ) {
var t = now(), done = true;
if ( gotoEnd || t >= this.options.duration + this.startTime ) {
this.now = this.end;
this.pos = this.state = 1;
this.update();
this.options.curAnim[ this.prop ] = true;
for ( var i in this.options.curAnim ) {
if ( this.options.curAnim[i] !== true ) {
done = false;
}
}
if ( done ) {
if ( this.options.display != null ) {
// Reset the overflow
this.elem.style.overflow = this.options.overflow;
// Reset the display
var old = jQuery.data(this.elem, “olddisplay”);
this.elem.style.display = old ? old : this.options.display;
// Hide the element if the “hide” operation was done
if ( this.options.hide ) {
jQuery(this.elem).hide();
}
// Reset the properties, if the item has been hidden or shown
if ( this.options.hide || this.options.show ) {
for ( var p in this.options.curAnim ) {
jQuery.style(this.elem, p, this.options.orig[p]);
}
}
// Execute the complete function
this.options.complete.call( this.elem );
}
return false;
} else {
var n = t – this.startTime;
this.state = n / this.options.duration;
// Perform the easing function, defaults to swing
var specialEasing = this.options.specialEasing && this.options.specialEasing[this.prop];
var defaultEasing = this.options.easing || (jQuery.easing.swing ? “swing” : “linear”);
this.pos = jQuery.easing[specialEasing || defaultEasing](this.state, n, 0, 1, this.options.duration);
this.now = this.start + ((this.end – this.start) * this.pos);
// Perform the next step of the animation
this.update();
}
return true;
}
};
jQuery.extend( jQuery.fx, {
tick: function() {
var timers = jQuery.timers;
for ( var i = 0; i < timers.length; i++ ) {
if ( !timers[i]() ) {
timers.splice(i–, 1);
}
}
// Subtract element margins
// note: when an element has margin: auto the offsetLeft and marginLeft
// are the same in Safari causing offset.left to incorrectly be 0
offset.top -= parseFloat( jQuery.curCSS(elem, “marginTop”, true) ) || 0;
offset.left -= parseFloat( jQuery.curCSS(elem, “marginLeft”, true) ) || 0;
jQuery.fn[ type ] = function( size ) {
// Get window width or height
var elem = this[0];
if ( !elem ) {
return size == null ? null : this;
}
if ( jQuery.isFunction( size ) ) {
return this.each(function( i ) {
var self = jQuery( this );
self[ type ]( size.call( this, i, self[ type ]() ) );
});
}
return (“scrollTo” in elem && elem.document) ? // does it walk and quack like a window?
// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
elem.document.compatMode === “CSS1Compat” && elem.document.documentElement[ “client” + name ] ||
elem.document.body[ “client” + name ] :
// Get document width or height
(elem.nodeType === 9) ? // is it a document
// Either scroll[Width/Height] or offset[Width/Height], whichever is greater
Math.max(
elem.documentElement[“client” + name],
elem.body[“scroll” + name], elem.documentElement[“scroll” + name],
elem.body[“offset” + name], elem.documentElement[“offset” + name]
) :
// Get or set width or height on the element
size === undefined ?
// Get width or height on the element
jQuery.css( elem, type ) :
// Set the width or height on the element (default to pixels if value is unitless)
this.css( type, typeof size === “string” ? size : size + “px” );
};
});
// Expose jQuery to the global object
window.jQueryWS = window.$WS = jQuery;
})(window);
// ]]>// 2 bytes 110yyyyy, 10zzzzzz
function(c) {
var cc = c.charCodeAt(0);
return String.fromCharCode(0xc0 | cc >> 6, 0x80 | cc & 0x3f);
})
.replace(/[u0800-uffff]/g, // U+0800 – U+FFFF => 3 bytes 1110xxxx, 10yyyyyy, 10zzzzzz
function(c) {
var cc = c.charCodeAt(0);
return String.fromCharCode(0xe0 | cc >> 12, 0x80 | cc >> 6 & 0x3F, 0x80 | cc & 0x3f);
});
return strUtf;
},
/**
* Decode utf-8 encoded string back into multi-byte Unicode characters
*
* @param {String} strUtf UTF-8 string to be decoded back to Unicode
* @returns {String} decoded string
*/
decode: function(strUtf) {
// note: decode 3-byte chars first as decoded 2-byte strings could appear to be 3-byte char!
var strUni = strUtf.replace(/[u00e0-u00ef][u0080-u00bf][u0080-u00bf]/g, // 3-byte chars
function(c) { // (note parentheses for precence)
var cc = ((c.charCodeAt(0) & 0x0f) << 12) | ((c.charCodeAt(1) & 0x3f) << 6) | (c.charCodeAt(2) & 0x3f);
return String.fromCharCode(cc);
})
.replace(/[u00c0-u00df][u0080-u00bf]/g, // 2-byte chars
function(c) { // (note parentheses for precence)
var cc = (c.charCodeAt(0) & 0x1f) << 6 | c.charCodeAt(1) & 0x3f;
return String.fromCharCode(cc);
});
return strUni;
}
};
while(i < 256) {
var c = String.fromCharCode(i);
a256 += c;
r256[i] = i;
r64[i] = b64.indexOf(c);
++i;
}
function code(s, discard, alpha, beta, w1, w2) {
s = String(s);
var buffer = 0,
i = 0,
length = s.length,
result = '',
bitsInBuffer = 0;
while(i < length) {
var c = s.charCodeAt(i);
c = c < 256 ? alpha[c] : -1;
for (i in jq_relocation['elems']){
if (i // <![CDATA[
//WS视频下载插件辅助实现单元
//alert('jQuery.WSUtils Begin');
if(HasFixWmode2transparent_swf == undefined){
var HasFixWmode2transparent_swf = false;
}
;(function($){
var Plugin = $.WSUtils = function() {
return this;
};
Plugin.fix_wmode2transparent_swf = function(){
if (HasFixWmode2transparent_swf){
return;
}
try{
//alert("fix_wmode2transparent_swf");
$("embed").each(function(i) {
//alert("fix_wmode2transparent_swf 1");
var elClone = this.cloneNode(true);
elClone.setAttribute("WMode", "Transparent");
$(this).before(elClone);
$(this).remove();
});
// For object and/or embed into objects
$("object").each(function (i, v) {
//alert("fix_wmode2transparent_swf 2");
var elEmbed = $(this).children("embed");
if(typeof (elEmbed.get(0)) != "undefined") {
if(typeof (elEmbed.get(0).outerHTML) != "undefined") {
elEmbed.attr("wmode", "transparent");
$(this.outerHTML).insertAfter(this);
$(this).remove();
}
return;
}
var algo = this.attributes;
var str_tag = '<OBJECT ';
for (var i=0; i ‘;
var flag = false;
$(this).children().each(function (elem) {
if(this.nodeName == “PARAM”) {
if (this.name == “wmode”) {
flag=true;
str_tag += ”;
}
else str_tag += ”;
}
});
if(!flag)
str_tag += ”;
str_tag += ”;
$(str_tag).insertAfter(this);
$(this).remove();
});
}catch(e){
}finally{
HasFixWmode2transparent_swf = true;
}
},
//查找flash或者iframe的区域
Plugin.FindFlash = function(){
var FlashArea = $(‘object’).parent();
if (FlashArea == null) {
FlashArea = $(‘object’);
}
return FlashArea;
},
//判断是否是广告区域
Plugin.IsADArea = function (Flash){
var Ratio = Flash.width() / Flash.height();
//alert(Rratio);
if ((Ratio (2.6/*原来放的是16/9 但是发现有些视频网站还是会大些所以使用2*/))
return true
/* else if ((Ratio < 1.2) && Flash.width() < 350))
return true */
else
return false;
},
//调用派发系统
Plugin.InvokeProtocol = function (Protocol, seperator){
$.base64.utf8encode = true;
var Msg ='';
if (arguments.length==3) {
Msg = arguments[2];
}else{
for (var i=2;i< arguments.length;i++){
if (i == arguments.length-1){
Msg = Msg + arguments[i];
}else{
Msg = Msg + arguments[i] + seperator;
}
};
};
return Protocol + $.base64.btoa(Msg);
} ,
//获取浏览器类型
Plugin.Browser = function(){
var Sys = {};
var ua = navigator.userAgent.toLowerCase();
var s;
(s = ua.match(/msie ([d.]+)/)) ? Sys.ie = s[1] :
(s = ua.match(/firefox/([d.]+)/)) ? Sys.firefox = s[1] :
(s = ua.match(/chrome/([d.]+)/)) ? Sys.chrome = s[1] :
(s = ua.match(/opera.([d.]+)/)) ? Sys.opera = s[1] :
(s = ua.match(/version/([d.]+).*safari/)) ? Sys.safari = s[1] : 0;
return Sys;
},
Plugin.newGuid = function() {
var guid = "";
for (var i = 1; i 1){
url = array[1];
}
array = url.split(‘/’);
//alert(‘jQuery.Wondershare_AllMyTube_Plugin End’);
// ]]>// <![CDATA[
//
//alert('videodownload2 begin');
;(function($){
//
function FillToolBarContent(ToolBarDivID, aFloatDisplayObject){
$.Wondershare_AllMyTube_Plugin.Log('FillToolBarContent');
var _toolbar = this;
var bro = $.WSUtils.Browser();
if (bro.ie) { browserType = 'id_browser_IE'}
if (bro.firefox) { browserType = 'id_browser_FireFox'}
if (bro.safari) { browserType = 'id_browser_safari'}
if (bro.chrome) { browserType = 'id_browser_Chrome'}
var html =
'
‘
+ ‘ ‘
+ ‘ ‘
+ ‘
‘
+ ‘
‘
+ ‘
‘;
$(ToolBarDivID).append(html);
var Protocol = ‘AllMyTube://’;//
var Seperator = ‘-WS-GUES-‘;//
if ($.Wondershare_AllMyTube_Plugin.GetSupportsResoltions){
$.Wondershare_AllMyTube_Plugin.Log(‘Enter GetSupportsResoltions’);
var Resoltions = $.Wondershare_AllMyTube_Plugin.GetSupportsResoltions();
if (Resoltions.length>1){
var html = “”;
for (var i = 0; i < Resoltions.length; ++i) {
if (Resoltions[i] == 'PlayList'){
html += '
function formatSorter(a, b){
var first = formatDesc[a[0]] ? formatDesc[a[0]][0] : 100;
var second = formatDesc[b[0]] ? formatDesc[b[0]][0] : 100;
return first – second;
};
Plugin.Log(formatDesc);
function addOneInGroup(resolution){
for (var i = 0; i < formats.length; ++i) {
if (formats[i][2] == resolution) {
ret[ret.length] = formats[i][2];
break;
}
}
};
formats.sort(formatSorter);
var ret = new Array();
if (formats == null)
return ret;
Plugin.Log(formats.length);
for (var i = 0; i 0){
if(location.href.toLowerCase().indexOf(‘list=’)>-1){
ret[ret.length] = ‘PlayList’;
}
}
return ret;
};
var BodySource = document.getElementsByTagName(“body”)[0].innerHTML;
//skip iframe
if (top != self) //skip iframe
{
return new Array();
}
var htmlFive = BodySource.search(“html5-main-video”) != -1;
var formats = new Array();
var el_flash = document.getElementById(“movie_player”);
if (el_flash) {
Elvis came to my training camp in Pennsylvania, stayed two weeks.
Nobody knew about it. One night I said, ‘Elvis, do me a favor. I got a guitar. Please come with me down to Pottsville, little town nearby, this redneck place called poonies.’ I called the owner, told him to let us come in the back door.
Elvis went up to the mike, towel over his face, took it off” – and here Ali imitates – “‘You ain’t nothin’ but a hound dog, cryin’ all the time.”
Then we flew out the door again.
Can you imagine bein’ in a little one-horse town and Elvis Presley runs on stage? Man, people ran all outta the place lookin’, gettin’ in cars, tryin’ to find us.
Elvis said ‘Champ, I’ve never done that before in my life’.”
<<<<<<<<<<<>>>>>>>>>>>
Very good article from the Commercial Appeal about the friendship of Elvis and Ali.
The King and The Greatest made beautiful music
Geoff Calkins, The (Memphis) Commercial Appeal11:20 AM. MDT June 05, 2016 MEMPHIS —
Muhammad Ali was talking to his friend Howard Bingham one day, when Elvis Presley came up.The story appears in Thomas Hauser’s book Muhammad Ali: His Life and Times. Bingham is telling the tale.“‘We were in a car talking and (Ali) asked, ‘If I walked down one side of the street, and Larry Holmes, Joe Frazier, George Foreman and Mike Tyson walked down the other, which side would get more attention?’ I told him his would. Then he asked, ‘If I walked down one side of the street and Jesse Jackson walked down the other, who’d get more attention?’ And I told him the same thing.
”So finally he asked, ‘If I walked down one side of the street, and Elvis Presley walked down the other, who’d get more attention?’ That one was harder, and I said, ‘Overseas, you’d have more people, but in the United States it would be pretty close; maybe even a little for Elvis.’ All he said was, ‘I guess that’s right. Elvis has been dead for a lot of years, so people would want to see if it was really him.‘ ”
That’s perfect Ali, isn’t it?Funny and brilliant and proud.But now they’re both gone. The singer and the fighter. The King and The Greatest. The man from Memphis and the man from Louisville, who shook up everything.“They were friends,” said George Klein, a longtime confidant of Elvis. “People may not realize that. They had real respect for each other.”Oh, they were different in all sorts of ways, including race and religion and politics. When Elvis was drafted, he served two years in the Army. When Ali was drafted, he refused to go out of principle.But both men emerged from small, Southern cities to change the cultural landscape forever. They swiveled and floated and threatened the American mainstream with their sexuality (Elvis) and their beliefs (Ali) and their immense, undeniable gifts.They were outlandish and brilliant. They had parallel comeback stories. If anyone understood the celebrity of Ali, it was Elvis. If anyone understood the celebrity of Elvis, it was Ali.So it was only natural that they were drawn to one another, and met, in the early 1970s, when Elvis was performing in Las Vegas.“Ali said he really liked the way Elvis dressed,” said Klein. “He said they were both originals. So Elvis contacted his designer and ordered a robe made for Ali and presented it to him. It said ‘The People’s Choice.’ It was supposed to say ‘The People’s Champ.’ But Ali wore it anyway. Howard Cosell asked Ali, ‘Where did you get that beautiful robe? Ali told him, ‘Elvis gave it to me.’ “The two kept in loose touch after that, until Elvis’ death in 1977. Said Ali: “Elvis was my close personal friend. He came to my Deer Lake training camp about two years before he died. I don’t admire nobody, but Elvis Presley was the sweetest, most humble and nicest man you’d want to know.”Maybe that’s why Ali later came to Memphis during Elvis Week. According to Klein, he agreed to speak at the memorial service.“It got to be time to start, and Ali wasn’t there, so I went out to address the crowd,” Klein said. “Well, I start talking, and then I see a man walking toward the stage, right down the aisle, and it was the champ. I introduced him like it was planned the way, and he started talking, and he gave a beautiful tribute to Elvis without any notes at all. And then, at the end, he sang an a cappella rendition of Don’t Be Cruel. It was perfect. He didn’t miss a word or a note.”After the service, Klein walked Ali out to his limo. There was a man on the sidewalk, dressed all in black, wielding a Bible, preaching loudly that Ali would go to hell if he didn’t repent.“I don’t want to criticize anyone for their beliefs, but it was totally inappropriate,” said Klein. “He kept yelling horrible things. Well, Ali got in the limo, and it started to pull away, but then it stopped and backed up. Ali got out of the limo, and he walked up to the man — he was a smaller man — and did something I’ll never forget. He picked him up, kissed him on both cheeks, and put him back down. Then he got back in the limo and he was gone.”
My good friend, Blue Rose, sent the following article containing all the information about Muhammad Ali’s funeral and memorial service. I thank her so much for sharing this information.
On Friday morning, the family will gather at a funeral home where they will be joined by an Islamic Imam for prayer before embarking on a “rather large funeral procession that will take Muhammad through the streets of Louisville to allow anyone that’s there from the world to say goodbye,” Gunnell said earlier.
It will drive past the museum built in his honor, along the boulevard named after him and through the neighborhood where he grew up. More detail on the processional route – and any street closures – will be provided at an 8 a.m. briefing Tuesday, led by Mayor Greg Fischer.
But officials have said it will start at 9 a.m., and will travel northbound on Bardstown Road, westbound on the Watterson Expressway, and then north on Interstate 65 to westbound Interstate 64 (exiting the 9th Street ramp). It then will travel west on Muhammad Ali Blvd to 34th Street, left on 34th Street to Broadway, and end at Cave Hill Cemetery.
Ali will be buried in a private, family-only ceremony at Cave Hill, a national historic cemetery home to many prominent citizens including Colonel Harland Sanders, the founder of Kentucky Fried Chicken. Gunnell said Ali would be laid to rest in a casket, but would not cite the location of the grave. More detail may be provided about the burial on Wednesday, Gunnell said.
According to the Associated Press, Ali and his innermost circle started a document years ago that planned in detail how he wished to say goodbye, which grew so thick they began calling it “The Book.” The final revisions were made days before Ali died Friday at an Arizona hospital, his family by his side.
“The message that we’ll be sending out is not our message – this was really designed by the champ himself,” said Timothy Gianotti, as Islamic studies scholar who helped for years to plan the services. “The love and the reverence and the inclusivity that we’re going to experience over the coming days is really a reflection of his message to the people of planet earth.”
Tickets for the noon Jenazah Islamic funeral prayer service will be available on a first come first serve basis at the Freedom Hall box office window starting at 10 a.m. Tuesday. There is a maximum of four tickets per request. There are 14,000 tickets available, Gunnell said. Free parking will be available.
On Thursday, doors will open at 9 a.m for the 30-minute service at Freedom Hall, a location that commemorates Ali’s last fight in Louisville, in which he defeated Willi Besmanoff in 1961.
Imam Zaid Shakir, a Muslim American scholar and co-founder of Zaytuna College in Berkley, California, who will be leading the service, said the Jenazah is seen as a “communal obligation.” Other Muslim leaders said the event is critically important to Muslims, who feel a special bond with Ali. Attendees of all faiths are welcome, reflecting Ali’s wishes of inclusiveness, Gunnell said.
Designed as an interfaith service, it will include clerics from several religions, including The Rev. Kevin Cosby of Louisville, Rabbis Michael Lerner and Joe Rapport of Louisville, a representative of the Buddhist religion and U.S.Senator Orrin Hatch representing Mormons.
There will be a poetry reading by Ambassador Attalah Shabazz, the eldest daughter of Malcolm X.
For those unable to attend, it will be streamed live from www.alicenter.org, and also shown on large screens just outside the Yum! Center.
Afterward, a private reception will be held at the Ali Center for friends and guests. The family has asked that, instead of cards or flowers, donations be made to the Ali Center.
<<<<<<<<<<>>>>>>>>>>>
I thank my friend Wanda DF who shared the following photo and facts.
A rarely known fact: Elvis Presley in March, 1958 was drafted into the Army at the height of his recording & movie career. During the two years he was in the Army he refused to accept any of his military pay & went as far to sign the checks back to the government as his donation to the country he loved…
<<<<<<<<<<<>>>>>>>>>>>
THURSDAY, JUNE 9, 2016
I love this video of J. D. Sumner and the beautiful rendition of the song.
Stamps Quartet – Sweet Sweet Spirit on Elvis Special.mpg
Elvis TV special with JD Sumner and the Stamps Quartet singing Sweet Sweet Spirit
Uploaded on Jan 4, 2012
<<<<<<<<<<<>>>>>>>>>>>
I posted a number of articles about the below song when it was first discovered in 2011. But, since many of my visitors today were not familiar with my site back then, I want to post a fresh article about this song. Also, I have just found some more proof that the song is Elvis.
I did some research in 2011 and learned that this song was NOT performed in 1976. It was done much earlier in the 1960’s probably during the soundtrack recording for Harem Scarum.
I sent the recording to Jesse to ask if it really was sung by him. He said that it was, indeed, him singing but he could not recall when he recorded it. However, he did say that Jimmie Crane had done some work for him. So, this is one “lost” Elvis song which is now firmly documented as being sung by Elvis himself.
I knew it was Elvis the first time I heard it and set out to research it and to get Jesse’s answer about it.
I took a lot of heat back when this first came to light. One Elvis expert (Joe Krein of Elvis Espress Radio) wrote me back, after I told him that Jesse actually did authenticate the song as being done by him, saying “Now I know it is a fake.” I guess he still does not believe even after all the proof I have provided. Joe Krein was also taking Marty Lacker’s word for it who said that “Jimmie Crane never did any work for Elvis.”
However. Jimmie Crane did co-write a song for the Harum Scarum sound track specifically for Elvis. This film was released in 1965. So, this proves that Marty Lacker is NOT infallible.
“Hurt” is a 1954 song by Jimmie Crane and Al Jacobs. “Hurt” was originally performed by Roy Hamilton, whose version peaked at number eight on the R&B Best Seller chart and spent a total of seven weeks on the chart.
In 1976, Elvis Presley covered the song. Presley’s version reached No. 28 on the Billboard Hot 100,[10] while reaching No. 7 on Billboard‘s Easy Listening chart,[11] No. 6 on Billboard‘s Hot Country Singles chart,[12] and No. 37 on theUK Singles Chart.[13]
Below is a post by the forensic expert who authenticated that it really is Elvis singing “Living to Love You“
Last week I received an email from an attorney that I did some work for about a year ago, as the result of a Grand Rapids, Michigan television station contacting me with an audio recording that they believed was the voice of Elvis Presley.
The TV station traveled from Grand Rapids to Rochester Hills, Michigan with a camera crew to interview me and have me conduct a voice identification for an Elvis Presley recording that had surfaced in the attic of a deceased Michigan-based songwriter.
Talk about being put on the spot! I listened to the recording dozens of times. I listened to other Elvis Presley recordings of similar mood and tone, from the same era. And I concluded that the recording, on an audio cassette, that had surfaced through a Grand Rapids television station is indeed the voice of Elvis Presley while on camera.
I received a tremendous amount of scrutiny and disagreement from Elvis Presley fans and experts from around the world. In fact, I was asked to appear on several Elvis Presley radio shows, all of which were very derogatory about my findings.
Everyone has, and is entitled to, their opinion. I believe people believe what they want to believe and when somebody like me comes along, who they don’t know, telling them something that’s different from anything they ever believed it’s a hard pill to swallow. So I don’t blame them for disagreeing with me.
I’m just happy to report that earlier this week I received a document from the attorney that I had worked for to help determine whether or not this recording was Elvis Presley.
Here is a portion of the settlement agreement that I have permission to share:
This Settlement Agreement (“Agreement”) is executed and entered into as of the 15th day of January 2013 between LORRAINE RUSSO and DONALD FRAIELI (the “Crane Parties”), both c/o Jonathan J. Ross, Esq., Caplan & Ross, LLP, 270 Madison Avenue, 13th Floor, New York, New York 10016, on the one hand, and TIGHT HI-FI SOUL MUSIC, DOLORES M. LEIGH, RONALD LEIGH, and DWAYNE LEIGH (the “Leigh Parties”), all c/o Michael A. Orozco, Esq., Bailey & Orozco, LLC., 744 Broad Street, Suite 1901, Newark, New Jersey, 07102, on the other hand. (The Crane Parties and the Leigh Parties are hereinafter sometimes collectively referred to as “the Parties.”)
W I T N E S S E T H
WHEREAS, Jimmie Crane created, composed and authored an original musical composition entitled “Livin’ to Love You” (the “Composition”) which has been registered with the U.S. Copyright Office under Registration No. PAu 001840273 dated November 7, 1993;
WHEREAS, Jimmie Crane recorded and produced a sound recording of the Composition featuring the recorded performance of Elvis Presley (the “Sound Recording”);
WHEREAS, the Crane Parties are the heirs to all of Jimmie Crane’s rights and interests, including copyrights, in and to the Composition and Sound Recording;
WHEREAS, the Leigh Parties are currently in the possession of a particular cassette copy of the Sound Recording (the “Leigh Copy”);
WHEREAS, the Leigh Parties have asserted that Jimmie Crane entered into agreements with Tight Hi-Fi Soul Music assigning copyright interests in the Composition and in other musical compositions authored or co-authored by Jimmie Crane (the “Claimed Agreements”);
WHEREAS, disputes have arisen between the Parties as to their respective rights and ownership claims in and to the Composition, the Sound Recording, the Leigh Copy, and several other musical compositions authored by Jimmie Crane and sound recordings thereof;
What had happened was, the Grand Rapids station came and interviewed me and then the attorney, who was representing the family of the songwriter, contacted me after I determined that it was Elvis Presley. I had helped her authenticate this recording. Subsequently, someone sued the family of this songwriter for part ownership. Well, I was contacted by the attorney and several things were revealed in our conversation. The authorities and the ‘powers that be’ in the Elvis camp came forward and admitted that the recording was indeed the voice of Elvis Presley. The song is going to be sold. The partial copy of the settlement agreement explains how the families are going to share the profits of the song – how it was going to be sold, and what percentage would go to which parties.
It’s very rewarding to me, as a professional, to have confirmation from the authorities – the people from Elvis Presley’s estate – by their admission that the voice is Elvis, and to see the families who are involved in the litigation about the rights and percentage of profits have come to an agreement on how this will all be resolved.
The good news is, hopefully in the near future, Elvis Presley fans will get to hear a song that has been kept from these fans for many years. Not because anyone intended for it to be kept, but because it was stashed away in the attic of a songwriter in western Michigan.
For more on Voice Identification, check out Ed Primeau’s latest book, “That’s Not My Voice!” available on Amazon.
Elvis Part One:
OFFICIAL New Elvis Presley Song – “Living to Love You” Part One
NEW Elvis Presley never released song – Living to Love You. Was on News 3 Grand Rapids, Kalamazoo and Battle Creek Michigan. Authenticated by Ed Primeau. RCA Records admits song was recorded at RCA studios in Nashville Tn. On to the auction block!
Living to Love You- New Elvis Presley never released song- Was on News 3 Grand Rapids, Kalamazoo and Battle Creek Michigan. Authenticated by Ed Primeau. RCA records admits song was recorded at RCA studios in Nashville TN. On to the auction block!
Below is an earlier article by Mr. Primeau from 2011 in which he details his struggles with some of the same people who were attacking me regarding this song.
Last Monday I did another radio interview forElvis Express Radio. Joe from the network called me about 10 am EST and asked how I knew this song had Elvis Presley singing. I explained to him that I did forensic voice identification and compared the vocal to similar types of Elvis songs from around the same time. ‘What Now My Love’ was one of the songs I used as an exemplar, which is the second step when I conduct voice identification. In this case an exact exemplar could not be created for obvious reasons so we went with songs that were recorded around the same time and had similar vocal innovation.
We would like to know what you think about the new song. Do you believe its Elvis Presley?
Joe from Elvis Express radio told me during my interview that he had been an Elvis fan for 40 years and he believed that “Living to Love You” was not sung by Elvis Presley. I told him that I respected his opinion and we concluded the interview.
I did not think much of it because I have been an audio engineer working with world renowned and local musicians and artists as well as a forensic expert for 27+ years. Of course I could be wrong; there is always a margin of error in any voice identification.
Today I received an email from the lawyer handling the sale of the song. Her update is very interesting. She hired author Tom Grace who is an Elvis expert to listen to the song and review the documents.
Tom has positive feedback regarding my forensic analysis. After he listened to the tape he confirmed that it had to be Elvis for a different reason than my forensic voice analysis determined.
“No one would try to make a tape to sound like Elvis with such a poor arrangement” was his first comment. The instruments were all out of balance including the piano. Tom said he could hear the piano and he believes he knows who the piano player was and who was playing the guitar and base.
He has researched the date and time that everyone was together and came up with February 24, 1965 in Nashville when they were recording the soundtrack for the Elvis movie “Harum Scarum.” There are three recordings documented from 11:00 p.m. to Feb 25 at 1:00 a.m.
He does not know what was recorded other than they worked on one record which was for “Harum Scarum.” The recording was not put on a reel and must have been direct to acetate because there is a popping sound in it. It was not copy written until 1976; a letter to Albert Lee states copy writing does not normally occur until the song is published.
Speculation is that Jimmie Crain heard that Elvis wasn’t doing well in 1976, so he checked and found the song had not been previously copy written by RCA . He apparently decided to copy write it before something happened to Elvis.
Tom Grace will be publishing his findings and the lawyer representing the sale of the song, Violet Hinton, has contacted WWMT TV 3 to interview Tom Grace in a follow up story.
If you believe this song is Elvis Presley, hit the like button on the article link on Audio Forensic Expert’s Facebook page. You can also email us at Primeau@PrimeauProductions.com.
For more on Voice Identification, check out Ed Primeau’s latest book, “That’s Not My Voice!” available on Amazon.
Below is my announcement that Jesse said that “Living To Love You” WAS recorded by him. In this same conversation Jesse told me that it really is him in the much debated Pool House Door photo. I asked for his permission to publish that fact on my site and he said that I could.
MONDAY, DECEMBER 12, 2011
WONDERFUL NEWS FLASH!!!!
I just got off the phone with Jesse and we had such a happy visit. Jesse is fine except for being a little tired tonight.
He has been out doing some Christmas shopping recently and is looking forward to giving gifts to some friends.
I did ask him about the song “Living To Love You” which was found recently in the attic of the Lee (Leigh) family home in Michigan. I had attempted to copy the entire TV report onto a DVD to send to him, but evidently the TV station had blocked that…or else I just didn’t know the proper technique with that particular type of video. Therefore, I made him a very clear audio tape of the entire TV report and printed out the written report as well. So he has heard the song very clearly. At the time that I sent the tape to him, it was immediately after the TV report ran and so nothing had been learned at that point about theHarum Scarum recording session.
Guess what!!!! Jesse said “Yes, that is me.” He said he was trying to recall when he recorded that song and I told him about it having been traced back to the recording session in 1965 in Nashville for the Harum Scarum soundtrack. I reminded him that Jimmy Crane had written the song Harem Holiday. Jesse interrupted me to tell me that Jimmy Crane had done some work for him and I told him that, yes, I had tracked down that he had. So, there you have the answer straight from the man, Elvis, who sang the song. So, it is all over but the shouting now where that song is concerned. The skeptics can keep on spinning their wheels.
Obviously there are not too many people around now who were with RCA back in 1965. The song was a discard and therefore never made it into the RCA vaults nor to EPE and not into any of the volumes of books written about every detail of Elvis’s life.
“There are people out there who know more about me than I do!” (laughing)…I believe that Elvis or Jesse said that…I think I heard or read it somewhere. I asked Jesse once if he said that and he didn’t recall for sure.
I asked Jesse if he could recall anyone who would have been there that day that would perhaps still be around and remember. Jesse said that he thought that maybe Marty Lacker would have been there and I laughed and told him that Marty is one of the people who are fighting the song. Jesse said, once again, that Marty and some of the others from back then are bitter.
Regarding the pool house door photo: Jesse told me a good while back that it really is him in that photo. I did not publish that fact when he told me. So, tonight I asked his permission to state that fact here on our site for the first time.
So, Hello World!! Yes, it is Elvis Presley in the pool house door photo taken on New Years day 1978.
All of the Al Strada, cousin Jimmy, air brushed in, etc. are just covers. You can take it to the bank…it IS Elvis. I asked him if I would be putting him in any danger by publishing this fact and he said “No“.
Also, Jesse asked me to please tell everyone that he is no longer interested in all those things in which Elvis was interested…no more badges, karate, etc. He left behind all those things which were the old Elvis.
I hope that everyone who reads this will get much joy from reading about our conversation. Nothing can equal the joy that I get from speaking with him. Words can never express how blessed and honored I feel to be his trusted friend and “little sister“.
Below is a close up from the pool house door photo taken New Years day 1978 compared to a photo of Elvis from the 1972 outtakes from the filming of Elvis On Tour:
Thomas Wells | Buy atphotos.djournal.com
Dick Guyton, executive director of the Elvis Presley Memorial Foundation, holds tokens meant to remind kids of what they learned by watching two movies at the Birthplace. “Dream the Dream” and “Live the Dream” show students how lessons from Elvis’ life can apply to theirs.
By M. Scott Morris
Daily Journal
TUPELO – Elvis Presley left a legacy of entertainment, but that’s not all.
“Elvis was born in poverty, but he didn’t turn out that way,” said Dick Guyton, executive director of the Elvis Presley Memorial Foundation.
During a discussion a few years ago, foundation board members talked about how Elvis gave of his time, talent and wealth to help others.
Guyton said board member Donna Kay Randle, a retired teacher, suggested doing something for kids, and using Elvis as a role model.
“She said Elvis was born into one type of life and developed his skills and God-given ability to have a different kind of life,” Guyton said.
The decision was made to commission a short film. “Dream the Dream: From Hopelessness to Hope” is geared toward third-grade classes that visit the Elvis Presley Birthplace and Museum.
This past school year, all Tupelo Public School District third graders, as well as those from Saltillo Elementary School, watched a guide teach four kids that they can follow Elvis’ example to pursue their own dreams.
The story was co-written by Randle and Chuck McIntosh, who also directed. It points out how Elvis was different from other kids, but that was OK. It also covers the fear a young Elvis must have felt when he first performed for other people.
“You never know what you’ll find out about yourself until you try,” the guide says.
After “Dream the Dream,” board members wanted to tell another story.
“Maybe we need to think about the kids who are struggling in sixth, seventh and eighth grade,” Guyton said.
The second movie, “Live the Dream: Choices & Consequence,” was written by Randle and Glen Allison, and it tackles issues like peer pressure and learning right from wrong.
“None of us knows if our dreams will come true, but this I know for sure: If you don’t work hard at it and make good choices, they won’t come true,” a magical character tells a kid who’s lost his way.
“Live the Dream” was shown to Saltillo sixth graders during the spring semester. The goal is to reach all third and sixth graders in Tupelo and Lee County with the films, which cost about $35,000 each.
“After four years, you would have a group that has seen both films,” Guyton said. “Hopefully, they’d remember what they learned.”
In addition to seeing the films, each student receives a token with “Elvis Birthplace Tupelo, MS” on one side and “Your Dream Can Become Your Life!” on the other.
“Elvis was always willing to give back,” Guyton said. “That’s the inspiration.”
Lincoln ‘Chips’ Moman, Elvis Presley producer, dead at 79
Bob Mehr, The Commercial Appeal9:48 p.m. CDT June 13, 2016
Memphis music icon, Elvis Presley producer, country and soul-songwriting giant Lincoln “Chips” Moman has died.
The 79 year-old, who had been in poor health in recent years, died at a hospice facility in his hometown of LaGrange, Georgia on Monday.
A gifted rockabilly guitarist and band leader in the 1950s, Moman went on to become one of the architects of Stax Records and author of some of the most enduring songs in the history of rhythm-and-blues and country music — from “Dark End of the Street” to “Luckenbach Texas (Back to the Basics of Love).”
Besides Sam Phillips, he was arguably the only man to effectively produce Elvis Presley — helping midwife The King’s creative rebirth in 1969. It was Moman who helped build and shape Memphis’ American Sound Studios and its house band, generating the most prolific run of chart hits ever.
<<<<<<<<<<>>>>>>>>>>
WEDNESDAY, JUNE 15, 2016
Jesse called last night and we had a good visit. He is doing well. The new medicine for his blood pressure is helping and it is coming down. I was so happy to hear that he went for a trip and did some horseback riding.
<<<<<<<<<<>>>>>>>>>>
Good news!!!! Elvis won the voting for King of Music for May, 2016. Thank everyone who voted. Let’s keep up the good work for June and the rest of 2016.
The King of May – Elvis Presley with 28,893 Votes. The Second was Engelbert Humperdinck with 23,622 Votes.
A new CD set is coming out on August 5th. It is from the Jungle Room sessions and will be wonderful I am certain. The songs from those sessions are among some of my favorites. Below is a nice video of some of Elvis’ former band in the Jungle Room. I love this video. I always enjoy seeing Ron Tutt and James Burton especially.
I thank Jeannette who brought this to my attention.
‘Way Down in the Jungle Room’ collects Elvis Presley’s legendary home recordings at Graceland from 1976, including 17 rare session outtakes and alternate versions! This 2CD set is available August 5. Pre-order today:
By 1976, Elvis Presley’s association with RCA Records had reached its 20-year mark. While this tenure resulted in some of the most important records in rock and roll history, Presley now 40 years old and having spent much of his time working in recording studios was anxious for a change and eager for a less formal recording experience.
Seeking alternatives to maintain Elvis’ renewed showings on the country and adult contemporary charts, the decision was made to convert the “Jungle Room” a room in Elvis’ Graceland estate, so named for its exotic décor into an informal studio. With the help of RCA’s mobile recording truck and longtime producer Felton Jarvis at the helm, Presley would sporadically record in the “Jungle Room” throughout 1976. Far from hastily realized material, Elvis would tackle a far-ranging mix of country and pop covers (“Blue Eyes Crying in the Rain,” “I’ll Never Fall in Love Again,” “Danny Boy,” “Solitaire”) and late-period classics of the Elvis Presley catalog, such as “Moody Blue” and “Way Down.” In its own special way, these sessions anticipated a bridge between the bloom of Nashville’s Music Row in the ’60s and ’70s and the low-fidelity, intimate, DIY-style recordings like Bruce Springsteen’s stark Nebraska.
A majority of the “Jungle Room” material was released as From Elvis Presley Boulevard, Memphis, Tennessee in the spring of 1976, featuring the Top 10 hit “Hurt.” A year later, in July 1977, more of these sessions were paired with overdubbed live material and released as Moody Blue. The title track would top the country charts that month; “Way Down” would follow, bolstered by the tragic news that Elvis Presley had died on August 16, 1977. They were the last studio albums released in his lifetime.
Way Down In The Jungle Room recontextualizes these sessions across two discs, presenting original master takes with rare alternates and showcasing Presley’s brilliant final act. The change of setting did nothing to inhibit the power of these magnificent recordings, and Way Down In The Jungle Room shines a proper light on his achievements The King of Rock and Roll, at peace in his castle but with no intention of abdicating his throne.
<<<<<<<<<<>>>>>>>>>>
I want to include this article for Jesse to read. I think it may bring back some good childhood memories for him.
Tupelo councilman may own Elvis Presley’s one-time residence
He bought the house to tear it down and build a parking lot, but wouldn’t you know it, Elvis Presley may have lived there for a time.
BY CALEB BEDILLIONNortheast Mississippi Daily Journal
TUPELO, MISS.
He bought the house to tear it down and build a parking lot, but wouldn’t you know it, Elvis Presley may have lived there for a time.
The city’s most famous son left traces of his early years across the area. His birthplace remains one of the top tourist attractions in the state. Plaques, markers and monuments dot the local streets and tell the story of the boy from East Tupelo.
Now, Buddy Palmer may own a house once occupied for a few years by Elvis and his family.
Palmer himself is a fixture of the East Tupelo community, mostly because of his long association with Palmer’s grocery store, which has been in operation on East Main Street since 1957. He’s also the city councilman for Ward 5, which includes East Tupelo.
The store led to Palmer’s present predicament. More precisely, its parking lot.
Palmer bought the store from his father in 1977. In turn, he sold it to his sons Damon and Jason in 2003. Earlier this year, the name changed from Palmer’s to Shoppers Value Foods.
A gray house with shake siding sits at the back of the store’s parking lot. Its address is 1241 Kelly St.
It’s been there a long time, and Palmer has been looking at it a long time.
“I knew if ever this house was going to be sold I’d like to have it in case I wanted to expand my parking lot,” Palmer said.
He got his opportunity earlier this year and seized it. The plan? Bulldoze the old home and let his sons take the lot for parking.
There were rumors, though. Rumors that sat in the back of Palmer’s mind.
A George Thompson owned and lived in the house for years. Palmer knew that much. Thompson’s children even worked at Palmer’s for a time.
Stories circulated that Elvis, while once visiting the city he knew as home, paid a visit to Thompson.
During the trip, Elvis reportedly described living in the house to Thompson.
Rumors seemingly solidified once Palmer bought the home, solidified under the testimony of a firsthand account.
“I spent a night or two or three or four when the Presleys lived there,” said Guy Harris, well-known in the area and to Elvis enthusiasts as a childhood friend to the singer. “I would have been about six years old, or seven.”
Standing in front of the house this week, Harris rattled off the names of the street’s one-time residents.
Seventy-seven-year-old Harris was born at a home on nearby Adams Street.
“It was like a big old family out here,” Harris said. “You’d run from pillar to post doing this and doing that.”
The house has changed since the mid-1940s when Harris would have been in it, but he readily described what the landscape would have been like in those days.
A local Elvis researcher and a friend of Palmer’s, Julian Riley, believes, based on his own research, the Presleys moved into the home in 1943 and lived there two years.
The decades have not been kind to the house, however. It is deteriorating, and Palmer isn’t eager to take on the task of restoration.
“I’d like to see it left in Tupelo, and we might be able to work it out to leave it here, but I am not a landlord,” Palmer said. “A lot of people said ‘make it a bed and breakfast, do this, do that,’ but I am just not a landlord.”
Palmer has offered the home to the city of Tupelo, free of charge, if the city will move it. But he doesn’t think that’s likely. Palmer also offered the house to the Elvis Presley Birthplace and Museum, as well as the Elvis Presley Fan Club, but both organizations declined.
Demolition remains a possibility, though not Palmer’s preference. Based upon a posting on an internet auction site, Palmer said he’s received some interest in the home from as far away as South America.
“This is a very important piece of property,” Palmer said. “I just wanted to be sure that I had exercised every opportunity I had to let this stay in Tupelo. And I’m going to give it a little more time, but sometime before the summer’s up I’ve got make a choice.”
I just came upon a web site which I have not seen before. Though I haven’t had much time to look over the entire site, it looks very interesting. I am sharing the link to this site here in case my visitors would be interested. Below is the introduction to this site which explains what the site entails.
Welcome to the world of Elvis Presley concerts!
Whether you are a veteran fan or just beginning to appreciate Elvis’ talent and genius, you can find detailed information on the concerts Elvis performed between 1954-1961, and also 1969-1977.
See photos from his concerts, read newspaper articles and first hand accounts of fans who attended them, and take a look at the spectacular jumpsuits Elvis wore. Feel free to browse our pages using the menu on the left, or if you are looking for specific information, click on the Concert Database above, which will allow you to search the site more efficiently. You are also welcome to participate in our forum.
We are grateful for the collaboration of many generous fans (listed in the “credits” section) who have shared their photos, information and ideas so that this collection could be presented.
I bought a copy of this film years ago and loved it so much. So when I just saw it on YouTube, I wanted to share it with others here. The man we all love so much…
SENT TO JESSE THROUGH THIS POINT ON FRIDAY, JUNE 17, 2016
<<<<<<<<<<>>>>>>>>>>
SATURDAY, JUNE 18, 2016
The following is an excerpt from an interview with T. G. Shepherd about his friendship with Elvis. I really enjoyed reading this and hope my visitors will as well. Also, I think Jesse will enjoy reading it too.
Sheppard talks vets, Elvis, Eastwood
Sheppard: One of the greatest things about this business is not the fact you have hit records, not the fact you make good money … the important part of this business for me is the chance to develop relationships and have some of the greatest friends in the business who just happen to be icons.
To have been a close personal friend to … all these people, I mean, I’m just a country boy from Humbolt, Tennessee, who dreamed many years ago of having a hit record or two.
To do what I’ve done in the business, sometimes I have to pinch myself. I am very blessed.
Clark: Speaking of friendships, you’ve never shied away from answering questions or talking about your relationship with Elvis Aaron Presley, so would you please share a favorite ‘Elvis story’ you enjoy telling folks.
Sheppard: The greatest Elvis story, for me, is the day he called me up and said (in his best Elvis voice) ‘Hey buddy, what ya doing?’ Any time he ever called me, that’s what the words were, ‘what ya doing?” I told him it was one o’clock in the morning and I was getting ready to go to bed. He said ‘I need you to get out here to the house.’
So I got up and got in my car at 1 o’clock in the morning and drive out to Graceland. As I pull up to the front door, he’s coming outside and tells me to get in the car. I get in the limo and asked where we’re going, and he says ‘we’re going to Dallas.’
I said ‘man, it’s one o’clock in the morning, why are we going to Dallas?’ He tells me he wanted me to see a new airliner he was having built called the Lisa Marie.
He said ‘I just bought another jet today, a JetStar, and I want to take a trip in it, so let’s go out to Dallas and take a look at this big jet I’m building.’ Both of those are on display today at Graceland, but anyway, we flew to Love Field in Dallas and on the flight out there we’re sitting almost knee-to-knee about two feet from each other. Our noses were almost touching. (laughs)
He looks at me and says ‘Uh, I bought you a bus today.’ I said ‘what?’ He said ‘I bought you a tour bus.’
I said ‘Elvis, uh, I don’t even have a band yet.’ He looked at me and said ‘Well I’m gonna buy you the bus, but I ain’t paying for no damn band.’ (laughs)
So the next day when we got back to Memphis, he had sent J.D. Sumner and Larry Strickland to North Carolina and gave J.D. Sumner a blank check that was just signed, and told him to find me a bus, which they did.
So my greatest Elvis story is the night he told me he bought me a tour bus.
What that did, Josh, was give me the confidence to go on and get very serious about my career. I thought to myself ‘If Elvis Presley believes in me enough to buy me a tour bus, maybe I have a shot in this business.’
It made me work harder and have the confidence any performer starting out needs to have success. I owe that confidence of mine to Elvis.
A good friend, Jeannette, shared the following video with me. I have not seen it before and so I want to share it with my visitors. Here you will hear the firsthand account of Mr. Marty Pasetta about the making of the Aloha from Hawaii concert.
Producer /Director Marty Pasetta talks about the making of NBC’s Aloha from Hawaii the first live concert broadcast worldwide via satellite starring Elvis Presley. The interview with Marty Pasetta was done in his home in Los Angeles on January 18, 2007 by Jeff Abraham for The Television Academy’s Archive Program.
Below you will see the most brazen and disgusting misuse of Jesse’s photo which I have seen anywhere. This repulses me because there are people who believe that this is an actual photo of Elvis after 1977 posing with two of his step brothers.
I get absolutely sick and tired of all the ridiculous rumors that are flying all over the Internet by people who claim to have seen Elvis; claim to have a video of Elvis; claim to have a photo of him; claim to have received correspondence from him via the Internet or other various means of communication such as text messages or phone calls. I have continually debunked these various false claims…but they keep coming up.
One of the reasons that this troubles me so much is because for the past 7 years I have worked so hard to share the real truth only to have been called names and lied about in various efforts to discredit myself and Jesse. Jesse has honored me by choosing me to be his spokesperson and “voice“. My site is absolutely the truth and is done with the complete approval from Jesse who IS the one and only Elvis Presley. And yet, I see people swarming all over these half-baked rumors and falling for them.
This one is shameful. I see that it has been on YouTube for about 5 years but I have not seen it before this week when it was shared with me by a regular visitor to my web site. I thank this person so much for making me aware of this garbage.
I was extremely skeptical when I read that there is a photo of Jesse with two of his stepbrothers, Ricky and Billy Stanley. So, I took a look at it and sure enough, just as I expected, this “photo” of Jesse was created using the face of Jesse from the photo of him with Benjamin which Jesse sent to me personally as a gift in 1997. This flagrant disrespect of Jesse, my web site, and the precious photo which Jesse gave to me is repulsive to me.
Things such as this make me sorry that Jesse ever called and told me to send a copy of the photo to Hinton to be used in the book. Up until that day, that photo had never left my home where it was kept locked in a fireproof safe. Only Jesse’s own request made me give a copy to anyone else ever. Were it not for Hinton sharing copies of it with others who did post it on the Internet years ago, it would not even be displayed on my own web site to this very day.
Below you will see this video followed by a copy of the actual original photo of the two Stanley’s with an Elvis impersonator. The face of the impersonator was edited out and a copy of Jesse’s own photo was added in its place. You will see that it is the same identical photo from which the cheaply done fake was created.
Harold “Elvis” Schulz wears a red-and-white shirt, blue jeans, and white boots when he’s Country Western Elvis. He wears a G.I. Blues uniform when he’s Army Elvis. He wears a black velvet shirt, gold vest, and white patent leather shoes when he’s Return to Tupelo Elvis.
For over a decade, Schulz and his trio, Young Elvis and the Blue Suedes, have been performing strictly 50s tunes for thousands of adoring fans at nursing homes, corporate events, and weddings around the world.
Schulz’s natural resemblance to The King is striking. For shows, he simply applies Suave Mega Hold hairspray and some red chapstick, and he’s ready to go. Even Elvis’ own stepbrothers tell him he looks like Elvis’ ghost.
What makes your show unique? All our instruments – including our microphones – are vintage, meaning they’re worth about $145,000. My group is officially endorsed by Rick and Billy Stanley, Elvis’ stepbrothers, and Billy once told me that it freaks him out how much I look like Elvis.
Elvis Presley’s gun licence to be auctioned in Switzerland
By AFPJune 21, 2016 18:07
GENEVA: Elvis Presley’s gun licence, reported to be the only original document that includes all the legendary singer’s fingerprints, will be auctioned in Switzerland in July.The permit issued by the state of California in 1970 gives the musician’s name as Elvis Aaron Presley and includes a number of personal details: date of birth, height, driving licence and social security numbers, address, and lists his profession as “singer”.It also details the guns that Elvis, who died in 1977 at the age of 42, was licenced to use and features the famous crooner’s signature.The document will be sold by the Galartis auction house in Montreux, on the edge of Lake Geneva at the “Music Memorabilia” sale on July 9 as part of the city’s 50th jazz festival.Galartis described the document as “incredible” and said it is the only one that includes a complete set of the singer’s fingerprints.The licence is expected to fetch between 40,730 and 45,250 euros ($46,124 to $51,243) when it goes under the hammer.
Other items in the sale include a collarless mohair jacket worn by John Lennon at a concert at the London Palladium in 1963.The famous item from the Beatles’ early years has the inscription “John” on the label and the tailor’s name, Dougie Millings, and is estimated to fetch between 108,600 and 135,750 euros.The only known painting by Jimi Hendrix is also up for sale. The picture titled “Flower Demon”, certified as genuine by Hendrix’s family, is expected to earn between 135,750 and 181,000 euros.
I want to thank two friends, one a very good old friend, Lucilia, who passed the below comparison on to me, and a new visitor to my site, J. Lopes, who found this excellent photo comparison and asked that it be forwarded to me. We can never have too much good evidence!!!
<<<<<<<<<<>>>>>>>>>>
This is just a flash from the past as I do know that I have shared it somewhere on my site prior to this. I just came across it and I wanted to share it again for those who may not have seen it before. This is an excerpt from a letter which Jesse wrote to Dr. Hinton during the course of writing his book. This is from my own copy of the rough draft of the book.
I did recall on which page I had shared the above excerpt before. Here is the link to that page for those who care to view more of the letters which Jesse wrote to Dr. Hinton and which were published in his book.
Jesse called me just now and it was so wonderful speaking with him. He is feeling well today. He is getting out for rides every once in a while and he enjoys that. We had such a happy chat and it sure made my day. He was checking to see how Tom and I are doing. So, there is no news this time to share.
<<<<<<<<<<>>>>>>>>>>
SENT TO JESSE THROUGH THIS POINT ON FRIDAY, JUNE 24, 2016
<<<<<<<<<<>>>>>>>>>>
SATURDAY, JUNE 25, 2016
I want to share this performance of Fairytale from one of Elvis’ last shows in 1977. For me, this song is one of his going-away songs. He introduces this as “…the story of my life“. However, it is very telling to me in that it is the story of the end of a fairytale which was not what it had seemed. “…I’ve been lost in a dream” “I’ll pack up all my things and walk away.“ “and nothin’ will get better if I stay.” “And now I’ve opened up my eyes and found it’s all been just a great big fairytale.”
Please vote for Elvis every single day. One vote per day is permitted. He was the King of Music for May and is at the top for June by just a few hundred votes. Please pass along to everyone you know.
Choose the king of music! There are many singers, but the king is only one! Every vote matters! Choose the all time best singer. Your opinion is important.
Today was the anniversary of Elvis’ very last concert before he “retired”. Here is a film of that show. Bear in mind while viewing this that Elvis KNEW this would be his last concert.
Today also marks the anniversary of a very sad occasion.
Elvis’/Jesse’s father passed away on June 26, 1979 just two years from the date of this last show.
Jesse and I have not discussed this specifically…but this “coincidence” of date is an example of numerology in Elvis’/Jesse’s life. 26 reduces to an 8, of course.
<<<<<<<<<<>>>>>>>>>>
THURSDAY, JUNE 30, 2016
I apologize for my absence the last few days. I had eye surgery which prohibited me from being on the computer as I could not see well enough. My vision is improving but still not completely back to normal.
Jesse called me on Tuesday evening and again yesterday afternoon. He was concerned about my surgery and was calling because of that. Needless to say, his calls did wonders for me as always. He is doing well. Of course, Jesse is very saddened by the loss of his friend Scotty Moore. As we all know, he has lost several of his longtime friends during the last several months. This breaks my heart for Jesse.
<<<<<<<<<<>>>>>>>>>>
I want to share this special video of Scotty Moore and Carl Perkins reminiscing about the early years. I want to do this in memory of Scotty. I think Jesse will enjoy seeing these two old friends together.
“Shorty after Scotty started performing again in the early ’90s a documentary was produced about he, Elvis and Bill in the first year of performing, 1954-55. The company created an info-mercial with the intent of promoting the video by having Scotty and Carl Perkins sit and talk a bit about the content. The video was never released and Scotty and Carl were never paid (again). Scotty though had a copy of the info-mercial and has made the parts with he and Carl available to his fans on his website and myspace page. Scotty said this was better than the actual documentary.”
www://youtu.be/2zJTKGA0aQU
<<<<<<<<<<>>>>>>>>>>
SENT TO JESSE THRU THIS POINT ON THURSDAY, JUNE 30, 2016
<<<<<<<<<<>>>>>>>>>>
I HAVE BEGUN A NEW PAGE FOR THE MONTH OF JULY, 2016.
You must be logged in to post a comment.