Skip to content

Instantly share code, notes, and snippets.

<?php
$colourJavascript='colourVariantsInitialData=[{"ColVarId":"41103890","PreOrderAvailableDate":"","SizeVariants":[{"SizeName":"UK: 8-13 Kids / EU: 25-32 Kids","SizeVarId":"41103890030","ProdSizePrices":{"SellPrice":"£3.49","RefPrice":"£16.99","SellNoPence":false,"RefNoPence":false,"ShowRefPrice":true,"YouSave":true,"YouSaveText":"£13.50","ShowFrom":false},"State":"Green"},{"SizeName":"UK: 1-6 / EU:33-39","SizeVarId":"41103890040","ProdSizePrices":{"SellPrice":"£3.99","RefPrice":"£16.99","SellNoPence":false,"RefNoPence":false,"ShowRefPrice":true,"YouSave":true,"YouSaveText":"£13.00","ShowFrom":false},"State":"Green"},{"SizeName":"UK: 6-11 / EU:39-46","SizeVarId":"41103890060","ProdSizePrices":{"SellPrice":"£4.49","RefPrice":"£16.99","SellNoPence":false,"RefNoPence":false,"ShowRefPrice":true,"YouSave":true,"YouSaveText":"£12.50","ShowFrom":false},"State":"Green"},{"SizeName":"UK: 11-14 / EU:46-49","SizeVarId":"41103890070","ProdSizePrices":{"SellPrice":"£4.99","RefPrice":"£16.99","SellNoPence":false,"RefNoP
@DDtMM
DDtMM / changeElementType.js
Last active December 19, 2015 22:49 — forked from etienned/changeElementType.js
This version chains, returning a jquery object with updated children.
(function ($) {
$.fn.changeElementType = function (newType) {
var attrs, elem, $elem;
for (var i = 0, il = this.length; i < il; i++) {
attrs = {};
$elem = $(elem = this[i]);
$.each(elem.attributes, function (index, attr) {
attrs[attr.nodeName] = attr.nodeValue;
});