The following code creates a blue button at one end of a table row that links to a detail page for the client that you are one (the row you are on). This code works in Firefox b
How about changing nCloneTd.innerHTML = '<a href="'+this.id+'"><button class="btn btn-mini btn-primary" type="button">Detail</button></a>';
nCloneTd.innerHTML = '<a href="'+this.id+'"><button class="btn btn-mini btn-primary" type="button">Detail</button></a>';
to nCloneTd.innerHTML = "<a href='"+this.id+"'><button class='btn btn-mini btn-primary' type='button'>Detail</button></a>";
nCloneTd.innerHTML = "<a href='"+this.id+"'><button class='btn btn-mini btn-primary' type='button'>Detail</button></a>";