Pastoid

The page you are looking at now is at this URL: http://pastoid.com/bms

This paste was last updated on January 20, 2009 at 2:14 pm.

jQuery OuterHTML Pluginraw

 /* An outerHTML function written by me that works in Firefox and IE */
$.fn.outerHTML = function (that) {
	var newElement = document.createElement(this[0].nodeName), newBody = document.createElement('BODY');
	newElement.innerHTML = (typeof that === 'string') ? that : (that.jQuery) ? that[0].innerHTML : '';
	if (!that) {
		return newBody.appendChild(this[0].cloneNode(true)).parentNode.innerHTML;
	}
	else {
		this[0].parentNode.replaceChild(newElement, this[0]);
		return newBody.appendChild(newElement.cloneNode(true)).parentNode.innerHTML;
	}
};

Toggle wordwrap

Referring DomainHits
Unknown Referer 127
pastoid.com 5
search.live.com 1
Is this paste spam?
<Hide