Talk:New Laser Cutter Project 2014/Pledge Drive: Difference between revisions

From Nottinghack Wiki
Jump to navigation Jump to search
Created page with "For a quick way to recalculate the total, paste the following block of code into the developer console when viewing the wiki page: <nowiki>var total=0.0;$('.wikitable td:nth..."
 
No edit summary
Line 1: Line 1:
For a quick way to recalculate the total, paste the following block of code into the developer console when viewing the wiki page:
For a quick way to recalculate the total, paste the following block of code into the developer console run it when viewing the wiki page:


  <nowiki>var total=0.0;$('.wikitable td:nth-child(2)').each(function(index,value){total+=parseFloat($(value).text().substring(2));});alert('£'+total);</nowiki>
  <nowiki>var total=0.0;$('.wikitable td:nth-child(2)').each(function(index,value){total+=parseFloat($(value).text().substring(2));});alert('£'+total);</nowiki>

Revision as of 22:56, 9 February 2014

For a quick way to recalculate the total, paste the following block of code into the developer console run it when viewing the wiki page:

var total=0.0;$('.wikitable td:nth-child(2)').each(function(index,value){total+=parseFloat($(value).text().substring(2));});alert('£'+total);

To access the developer/JavaScript console:

  • Firefox (Windows: Ctrl + Shift + K)
  • Chrome (Windows: Ctrl + Shift + J)
  • IE 11 (Windows: F12 then Ctrl + 2)