Widget:Calculator/Magic/Aurum: Difference between revisions

m Ryan moved page Widget:Calculator/Aurum to Widget:Calculator/Magic/Aurum without leaving a redirect
No edit summary
Line 4: Line 4:
   Quantity: <input type="number" id="quantity" value="1"><br>
   Quantity: <input type="number" id="quantity" value="1"><br>
</form>
</form>
<table id="aurum-table" border="1">
  <thead>
    <tr>
      <th>Item</th>
      <th>Buy Price</th>
      <th>Minor Profit</th>
      <th>Major Profit</th>
      <th>Total Profit (qty)</th>
    </tr>
  </thead>
  <tbody>
    <tr data-buyprice="500">
      <td>Item A</td>
      <td>500</td>
      <td class="minorProfit"></td>
      <td class="majorProfit"></td>
      <td class="totalProfit"></td>
    </tr>
    <tr data-buyprice="1200">
      <td>Item B</td>
      <td>1200</td>
      <td class="minorProfit"></td>
      <td class="majorProfit"></td>
      <td class="totalProfit"></td>
    </tr>
  </tbody>
</table>


<script>
<script>