appendHostname.js 232 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 var appendHostname = function(obj) { $('table.machines a').each(function() { var ip = $(this).text(); if (ip != "All" && ip.indexOf(".") >= 0) { if(obj[ip] !=null){ $(this).text(ip + " (" + obj[ip]+")"); } } }); };