lemansky

Untitled

Nov 6th, 2020
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Document</title>
  6.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
  7.     <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
  8.     <script>
  9.         document.addEventListener('DOMContentLoaded', function(event){
  10.             clean(document.body);
  11.  
  12.         });
  13.         const clean = (node) =>
  14.         {
  15.           for(var n = 0; n < node.childNodes.length; n ++)
  16.          {
  17.            var child = node.childNodes[n];
  18.            if
  19.            (
  20.              child.nodeType === 8
  21.              ||
  22.              (child.nodeType === 3 && !/\S/.test(child.nodeValue))
  23.            )
  24.            {
  25.              node.removeChild(child);
  26.              n --;
  27.            }
  28.            else if(child.nodeType === 1)
  29.            {
  30.              clean(child);
  31.            }
  32.          }
  33.        }
  34.     </script>
  35.     <style>
  36.  
  37.     </style>
  38. </head>
  39. <body>
  40.     <div class="container" style="margin-top:20px;margin-bottom:20px">
  41.         <div class="col-lg-6 col-md-6">
  42.             <input type="text" class="form-control" id="input" placeholder="въведете, позиция на която да се вмъкне изображение">
  43.             <input type="button" class="btn btn-success add" id="add" value="Вмъкни">
  44.             <ul class="list-group table-of-contents" style="margin-top:20px;">
  45.               <a class="list-group-item" href="#navbar">Navbar </a>
  46.               <a class="list-group-item bg-info text-white" href="#buttons">Buttons </a>
  47.               <a class="list-group-item bg-warning text-white" href="#typography">Typography </a>
  48.               <a class="list-group-item" href="#tables">Tables </a>
  49.               <a class="list-group-item bg-danger text-white" href="#forms">Forms </a>
  50.  
  51.         </ul>
  52.         </div>
  53.  
  54. </body>
  55. </html>
Add Comment
Please, Sign In to add comment