Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

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.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

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.

+ add another resource

Packages

Add Packages

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.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!DOCTYPE html> 

<html lang="es">
    <head>
        <meta charset="UTF-8">
        <meta name="description" content="Uso de la función next() de JQuery">
        <meta name="Author" content="David Gimenez Plaza">
        <meta name="keywords" content="funcines, Jquery, next()">
        <meta name= "viewport" content = "width=device-width, initial-scale=1.0" >
        <title>Función next() de JQuery</title>
        <link rel="stylesheet" type="text/css" href= "file.css">
        <link rel="shortcut icon" href="file.icon">
        <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
    </head>
    <header>
      <h1>Ejemplo de función next() de Jquery, pasa el ratón por este h1</h1>  
    </header>
    <nav>
    
    </nav>
    <body>
      <article class="Articulo-1">
        <p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eligendi distinctio, optio iusto ducimus at iure doloremque ipsa aliquid amet exercitationem natus qui temporibus enim quos dicta magnam ea eius ipsum?</p>
        <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Optio iste eius voluptates veritatis totam ullam maxime, at, quas delectus quisquam facere officiis laboriosam, expedita quis possimus ea eligendi. Minus, nisi.</p>
      </article>
      <article class="Articulo-2">
        <p>Id totam reprehenderit ea culpa nobis non iste perferendis dolor? Dolorum recusandae facere, vel eaque cum a consequatur doloribus molestiae quas officia optio culpa id eius ut ipsa quis similique.</p>
      </article>
      <article class="Articulo-3">
        <p>Asperiores nesciunt voluptatum dolorum voluptatem saepe repellat ex, sunt blanditiis animi ullam earum, odit provident dignissimos, vel impedit eaque ratione. Temporibus facere enim tempora a totam rerum possimus sed tenetur!</p>
      </article>
      <article class="Articulo-4">
        <p>Rerum itaque ea fugiat totam magnam velit dolore inventore amet, soluta harum, voluptatum, debitis repellendus tenetur. Enim, ratione cum. Repellat, laudantium! Exercitationem, id velit minima ipsam cum modi dolorem quod!</p>
      </article>
      <article class="Articulo-5">
        <p>Maiores enim labore totam, voluptatibus tempora sequi eum eaque quidem id! Sequi libero omnis qui dicta quae ipsa veniam corrupti ullam magnam alias reprehenderit eligendi delectus, voluptate maiores unde quod.</p>
      </article>
     
    </body>
  
</html>
              
            
!

CSS

              
                
              
            
!

JS

              
                
$("h1").hover(function(){
  $("article").next().hide(2000);
  });
              
            
!
999px

Console