function templateReplaceAttribute() { // src $('body').find('img').each(function () { if (typeof $(this).attr('template-src') != 'undefined') { $(this).attr('src', $(this).attr('template-src')); } }); // href $('body').find('a').each(function () { if (typeof $(this).attr('template-href') != 'undefined') { $(this).attr('href', $(this).attr('template-href')); } if (typeof $(this).attr('data-href') != 'undefined') { $(this).attr('href', $(this).attr('data-href')); } }); }