Notes on CMT
Niceify reviews:
var jq = document.createElement('script'); jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"; document.getElementsByTagName('head')[0].appendChild(jq); // ... give time for script to load, then type. var rows = $("#ctl00_cph_pnlReviews>div>table>tbody>tr") var elt = ''; for(i=1; i < rows.length; ++i) { elt += '<p/><b style="font-size: small;">' + rows[i].children[0].innerHTML + '</b><p>' + rows[i].children[1].innerHTML + '</p>' } $(elt).insertBefore($("#ctl00_cph_pnlReviews"))
Link to translate URLs to links. Navigate to a page with URLs in it, then execute this in your browser's debug console.
(On IE, press F12, select the “Console” tab, and paste in the code below.)
function replace_urls() { n = document.getElementsByTagName('b'); for(i = 0; i < n.length; ++i) { if (n[i].innerText.match('URL:')) { text = n[i].nextSibling; url = text.wholeText.replace(/\s+/,''); n[i].innerHTML = '<b>URL</b> (<'+'a target="_blank" href="' + url + '">link<'+'/a>):'; } } } replace_urls()
And this one zaps the links too
n = document.getElementsByTagName('b'); for(i = 0; i < n.length; ++i) { if (n[i].innerText.match('URL:')) { text = n[i].nextSibling; url = text.wholeText.replace(/\s+/,''); n[i].innerHTML = 'URL (<'+'a target="_blank" href="' + url + '">link<'+'/a>):'; n[i].nextSibling.replaceNode(document.createElement('div')); } }
URL: http://awf.fitzgibbon.ie/cmt