jQuery insertBefore Method
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html> <head> <title>jQuery Demo example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $( "#insertBeforeExample" ).on( "click", function(event) { $("<p><span>Insert Before All 'div' Tag</span></p>").insertBefore("div"); }); }); </script> <style> div{ margin:10px; min-height:50px; min-width:100%; border:1px solid blue; float:left; } </style> </head> <body> <h4 ><a href="javascript:void(0);" id="insertBeforeExample">Click to run .insertBefore() Example </a></h4> <div style="background:yellow;border:1px solid green;padding:0px;" > Demo div..........................1................. </div> <div style="background:yellow;border:1px solid green;padding:0px;" > Demo div.........................2................ </div> </body> </html>
<!DOCTYPE html> <html> <head> <title>jQuery Demo example</title> <script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.min.js"> </script> <script type="text/javascript"> $(document).ready(function(){ $( "#insertBeforeExample" ).on( "click", function(event) { $("<p><span>Insert Before All 'div' Tag</span></p>").insertBefore("div"); }); }); </script> <style> div{ margin:10px; min-height:50px; min-width:100%; border:1px solid blue; float:left; } </style> </head> <body> <h4 ><a href="javascript:void(0);" id="insertBeforeExample">Click to run .insertBefore() Example </a></h4> <div style="background:yellow;border:1px solid green;padding:0px;" > Demo div..........................1................. </div> <div style="background:yellow;border:1px solid green;padding:0px;" > Demo div.........................2................ </div> </body> </html>
Copyrights@tutorialsplane.com