DataTables - Bootstrap Buttons

HTML

<link rel="stylesheet" href="https://cdn.datatables.net/r/bs-3.3.5/dt-1.10.8,b-1.0.1/datatables.min.css">
<script src="https://cdn.datatables.net/r/bs-3.3.5/dt-1.10.8,b-1.0.1/datatables.min.js"></script>
<div class="container">

<h3>jQuery DataTables: Bootstrap button</h3>
<a href="https://www.gyrocode.com/articles/tag/jquery-datatables/">See more articles about jQuery DataTables</a> on <a href="https://www.gyrocode.com/articles/">Gyrocode.com</a><hr>

<table id="example" class="table table-striped table-bordered table" cellspacing="0" width="100%">
    <thead>
        <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
        </tr>
    </tfoot>
    <tbody>
        <tr>
            <td>Tiger Nixon</td>
            <td>System Architect</td>
            <td>Edinburgh</td>
            <td>61</td>
            <td>2011/04/25</td>
            <td>$320,800</td>
        </tr>
        <tr>
            <td>Garrett Winters</td>
            <td>Accountant</td>
            <td>Tokyo</td>
            <td>63</td>
            <td>2011/07/25</td>
            <td>$170,750</td>
        </tr>
        <tr>
            <td>Ashton Cox</td>
            <td>Junior Technical Author</td>
            <td>San Francisco</td>
            <td>66</td>
            <td>2009/01/12</td>
            <td>$86,000</td>
        </tr>
        <tr>
            <td>Bradley Greer</td>
            <td>Software Engineer</td>
            <td>London</td>
            <td>41</td>
            <td>2012/10/13</td>
            <td>$132,000</td>
        </tr>
        <tr>
            <td>Dai Rios</td>
            <td>Personnel Lead</td>
            <td>Edinburgh</td>
           ...

CSS

.dataTables_length, .dt-buttons {
  float: left;
  margin-right: 10px;    
}

JavaScript

$(document).ready(function (){
    var table = $('#example').DataTable({
       initComplete: function(){
          var api = this.api();
            
          new $.fn.dataTable.Buttons(api, {
             buttons: [
                {
                   text: 'Pull my products',
                   action: function ( e, dt, node, config ) {
                      alert( 'Button activated' );
                   }
                }
             ]
          });
            
          api.buttons().container().appendTo( '#' + api.table().container().id + ' .col-sm-6:eq(0)' );  
       }
    });
});