only copy selected items to clip board

only copy selected items to clip board

My form as a checkbox next to each line, this checkbox will exclude those items from copying to the clipboard. Is there a way using JQuery to exclude items from copying to the clipboard, but keep the remaining non checked items? 

if they select, State, Price and Agency, then they should not be copied to the clipboard, but Manager and Name should be.

  1. <div id="Sales">
  2.  <div class="sale">
  3.      <input type="checkbox" id="salesId_1" value="state"/><label for="State">State/label>
  4. <input type="checkbox" id="salesId_2" value="salePrice"/><label for="Price">Price</label>
  5. <input type="checkbox" id="salesId_3" value="manager"/><label for="Manager">Manager</label>
  6. <input type="checkbox" id="salesId_4" value="Name"/><label for="Name">Name</label>
  7. <input type="checkbox" id="salesId_5" value="Agency"/><label for="Agency">Agency</label>
  8.  </div>
  9. </div>