HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">DataTable with button to show modal</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
</li>
</ul>
</div>
</nav>
<form id="form1" runat="server">
<table id="example" class="display" style="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>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="61">View Age</button></td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-age="21" data-toggle="modal" data-target="#my_modal" >View Age</button></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><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="66">View Age</button></td>
<td>2009/01/12</td>
<td>$86,000</td>
</tr>
<tr>
<td>Cedric Kelly</td>
<td>Senior Javascript Developer</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="22">View Age</button></td>
<td>2012/03/29</td>
<td>$433,060</td>
</tr>
<tr>
<td>Airi Satou</td>
<td>Accountant</td>
<td>Tokyo</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="33">View Age</button></td>
<td>2008/11/28</td>
<td>$162,700</td>
</tr>
<tr>
<td>Brielle Williamson</td>
<td>Integration Specialist</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="61">View Age</button></td>
<td>2012/12/02</td>
<td>$372,000</td>
</tr>
<tr>
<td>Herrod Chandler</td>
<td>Sales Assistant</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="59">View Age</button></td>
<td>2012/08/06</td>
<td>$137,500</td>
</tr>
<tr>
<td>Rhona Davidson</td>
<td>Integration Specialist</td>
<td>Tokyo</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="55">View Age</button></td>
<td>2010/10/14</td>
<td>$327,900</td>
</tr>
<tr>
<td>Colleen Hurst</td>
<td>Javascript Developer</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="39">View Age</button></td>
<td>2009/09/15</td>
<td>$205,500</td>
</tr>
<tr>
<td>Sonya Frost</td>
<td>Software Engineer</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="23">View Age</button></td>
<td>2008/12/13</td>
<td>$103,600</td>
</tr>
<tr>
<td>Jena Gaines</td>
<td>Office Manager</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="30">View Age</button></td>
<td>2008/12/19</td>
<td>$90,560</td>
</tr>
<tr>
<td>Quinn Flynn</td>
<td>Support Lead</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="22">View Age</button></td>
<td>2013/03/03</td>
<td>$342,000</td>
</tr>
<tr>
<td>Charde Marshall</td>
<td>Regional Director</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="36">View Age</button></td>
<td>2008/10/16</td>
<td>$470,600</td>
</tr>
<tr>
<td>Haley Kennedy</td>
<td>Senior Marketing Designer</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="43">View Age</button></td>
<td>2012/12/18</td>
<td>$313,500</td>
</tr>
<tr>
<td>Tatyana Fitzpatrick</td>
<td>Regional Director</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="19">View Age</button></td>
<td>2010/03/17</td>
<td>$385,750</td>
</tr>
<tr>
<td>Michael Silva</td>
<td>Marketing Designer</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="66">View Age</button></td>
<td>2012/11/27</td>
<td>$198,500</td>
</tr>
<tr>
<td>Paul Byrd</td>
<td>Chief Financial Officer (CFO)</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="64">View Age</button></td>
<td>2010/06/09</td>
<td>$725,000</td>
</tr>
<tr>
<td>Gloria Little</td>
<td>Systems Administrator</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="59">View Age</button></td>
<td>2009/04/10</td>
<td>$237,500</td>
</tr>
<tr>
<td>Bradley Greer</td>
<td>Software Engineer</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="41">View Age</button></td>
<td>2012/10/13</td>
<td>$132,000</td>
</tr>
<tr>
<td>Dai Rios</td>
<td>Personnel Lead</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="35">View Age</button></td>
<td>2012/09/26</td>
<td>$217,500</td>
</tr>
<tr>
<td>Jenette Caldwell</td>
<td>Development Lead</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="30">View Age</button></td>
<td>2011/09/03</td>
<td>$345,000</td>
</tr>
<tr>
<td>Yuri Berry</td>
<td>Chief Marketing Officer (CMO)</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="40">View Age</button></td>
<td>2009/06/25</td>
<td>$675,000</td>
</tr>
<tr>
<td>Caesar Vance</td>
<td>Pre-Sales Support</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="21">View Age</button></td>
<td>2011/12/12</td>
<td>$106,450</td>
</tr>
<tr>
<td>Doris Wilder</td>
<td>Sales Assistant</td>
<td>Sidney</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="23">View Age</button></td>
<td>2010/09/20</td>
<td>$85,600</td>
</tr>
<tr>
<td>Angelica Ramos</td>
<td>Chief Executive Officer (CEO)</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="47">View Age</button></td>
<td>2009/10/09</td>
<td>$1,200,000</td>
</tr>
<tr>
<td>Gavin Joyce</td>
<td>Developer</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="42">View Age</button></td>
<td>2010/12/22</td>
<td>$92,575</td>
</tr>
<tr>
<td>Jennifer Chang</td>
<td>Regional Director</td>
<td>Singapore</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="28">View Age</button></td>
<td>2010/11/14</td>
<td>$357,650</td>
</tr>
<tr>
<td>Brenden Wagner</td>
<td>Software Engineer</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="28">View Age</button></td>
<td>2011/06/07</td>
<td>$206,850</td>
</tr>
<tr>
<td>Fiona Green</td>
<td>Chief Operating Officer (COO)</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="48">View Age</button></td>
<td>2010/03/11</td>
<td>$850,000</td>
</tr>
<tr>
<td>Shou Itou</td>
<td>Regional Marketing</td>
<td>Tokyo</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="20">View Age</button></td>
<td>2011/08/14</td>
<td>$163,000</td>
</tr>
<tr>
<td>Michelle House</td>
<td>Integration Specialist</td>
<td>Sidney</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="37">View Age</button></td>
<td>2011/06/02</td>
<td>$95,400</td>
</tr>
<tr>
<td>Suki Burks</td>
<td>Developer</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="53">View Age</button></td>
<td>2009/10/22</td>
<td>$114,500</td>
</tr>
<tr>
<td>Prescott Bartlett</td>
<td>Technical Author</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="27">View Age</button></td>
<td>2011/05/07</td>
<td>$145,000</td>
</tr>
<tr>
<td>Gavin Cortez</td>
<td>Team Leader</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="22">View Age</button></td>
<td>2008/10/26</td>
<td>$235,500</td>
</tr>
<tr>
<td>Martena Mccray</td>
<td>Post-Sales support</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="46">View Age</button></td>
<td>2011/03/09</td>
<td>$324,050</td>
</tr>
<tr>
<td>Unity Butler</td>
<td>Marketing Designer</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="47">View Age</button></td>
<td>2009/12/09</td>
<td>$85,675</td>
</tr>
<tr>
<td>Howard Hatfield</td>
<td>Office Manager</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="51">View Age</button></td>
<td>2008/12/16</td>
<td>$164,500</td>
</tr>
<tr>
<td>Hope Fuentes</td>
<td>Secretary</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="41">View Age</button></td>
<td>2010/02/12</td>
<td>$109,850</td>
</tr>
<tr>
<td>Vivian Harrell</td>
<td>Financial Controller</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="62">View Age</button></td>
<td>2009/02/14</td>
<td>$452,500</td>
</tr>
<tr>
<td>Timothy Mooney</td>
<td>Office Manager</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="37">View Age</button></td>
<td>2008/12/11</td>
<td>$136,200</td>
</tr>
<tr>
<td>Jackson Bradshaw</td>
<td>Director</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="65">View Age</button></td>
<td>2008/09/26</td>
<td>$645,750</td>
</tr>
<tr>
<td>Olivia Liang</td>
<td>Support Engineer</td>
<td>Singapore</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="64">View Age</button></td>
<td>2011/02/03</td>
<td>$234,500</td>
</tr>
<tr>
<td>Bruno Nash</td>
<td>Software Engineer</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="38">View Age</button></td>
<td>2011/05/03</td>
<td>$163,500</td>
</tr>
<tr>
<td>Sakura Yamamoto</td>
<td>Support Engineer</td>
<td>Tokyo</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="37">View Age</button></td>
<td>2009/08/19</td>
<td>$139,575</td>
</tr>
<tr>
<td>Thor Walton</td>
<td>Developer</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="48">View Age</button></td>
<td>2013/08/11</td>
<td>$98,540</td>
</tr>
<tr>
<td>Finn Camacho</td>
<td>Support Engineer</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="47">View Age</button></td>
<td>2009/07/07</td>
<td>$87,500</td>
</tr>
<tr>
<td>Serge Baldwin</td>
<td>Data Coordinator</td>
<td>Singapore</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="64">View Age</button></td>
<td>2012/04/09</td>
<td>$138,575</td>
</tr>
<tr>
<td>Zenaida Frank</td>
<td>Software Engineer</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="63">View Age</button></td>
<td>2010/01/04</td>
<td>$125,250</td>
</tr>
<tr>
<td>Zorita Serrano</td>
<td>Software Engineer</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="56">View Age</button></td>
<td>2012/06/01</td>
<td>$115,000</td>
</tr>
<tr>
<td>Jennifer Acosta</td>
<td>Junior Javascript Developer</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="43">View Age</button></td>
<td>2013/02/01</td>
<td>$75,650</td>
</tr>
<tr>
<td>Cara Stevens</td>
<td>Sales Assistant</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="46">View Age</button></td>
<td>2011/12/06</td>
<td>$145,600</td>
</tr>
<tr>
<td>Hermione Butler</td>
<td>Regional Director</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="47">View Age</button></td>
<td>2011/03/21</td>
<td>$356,250</td>
</tr>
<tr>
<td>Lael Greer</td>
<td>Systems Administrator</td>
<td>London</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="21">View Age</button></td>
<td>2009/02/27</td>
<td>$103,500</td>
</tr>
<tr>
<td>Jonas Alexander</td>
<td>Developer</td>
<td>San Francisco</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="30">View Age</button></td>
<td>2010/07/14</td>
<td>$86,500</td>
</tr>
<tr>
<td>Shad Decker</td>
<td>Regional Director</td>
<td>Edinburgh</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="51">View Age</button></td>
<td>2008/11/13</td>
<td>$183,000</td>
</tr>
<tr>
<td>Michael Bruce</td>
<td>Javascript Developer</td>
<td>Singapore</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="29">View Age</button></td>
<td>2011/06/27</td>
<td>$183,000</td>
</tr>
<tr>
<td>Donna Snider</td>
<td>Customer Support</td>
<td>New York</td>
<td><button id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-target="#my_modal" data-age="27">View Age</button></td>
<td>2011/01/25</td>
<td>$112,000</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
</table>
<div id="testola">
<p>Nothing to see below here!</p>
</div>
<div id="testola">
<button data-slotID="Test001" "\" id="btnMyTest001" type="button" class="btn btn-success" data-toggle="modal" data-age="21" data-target="#my_modal" >Test Button</button>
</div>
</form>
<div class="modal fade" id="my_modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Sample Modal</h4>
</div>
<div class="modal-body">
<div class="form-group">
<!--<input type="text" id="username" placeholder="User Name" class="form-control"/>-->
<!-- <div id="confirmdetails">Confirmation details go here...</div>-->
<label for="age">Age</label>
<input type="text" id="age" class="form-control"/>
</div>
</div>
<div class="modal-footer">
<!-- onclick="cancelRecord()" -->
<button type="button" class="btn btn-default" data-dismiss="modal" >OK</button>
</div>
</div>
</div>
</div>
#testola {padding:250px;}
$(document).ready(function() {
$('#example').DataTable();
} );
// Get value from data table
$(document).on("click", "#btnMyTest001", function (e) {
$('#my_modal #age').attr("value", $(this).attr("data-age"));
})
Also see: Tab Triggers