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

              
                <a href="https://www.alineddesign.com" alt="link alt text" title="link title. Blah blah blah and goes on and gets in the way."><img src="https://images.unsplash.com/photo-1535437302298-784ee608da75?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=55da7621b0ce06d3b09ebebd9610c74d&auto=format&fit=crop&w=334&q=80" title="Image title. Sometimes this can be enormous! A real essay on what the image is and it's contents. Very annoying when it gets in the way." alt title="Image alt title. Sometimes this is the annoyance." class=".jp-relatedposts-post-a"></a>

/* example may or may not show tooltip depending on browser, but to see an example of what we are trying to get rid of, see here https://www.alineddesign.com/wp-content/uploads/2018/08/screencap-2.png messy and gets in the way. Now, this did work for a while and now doesn't - still working on the right answer!*/

              
            
!

CSS

              
                
              
            
!

JS

              
                jQuery(document).ready(function($){
$( "*" )
.mouseenter(function() {	
var title = $(this).attr("title");
$(this).attr("temp_title", title);
$(this).attr("title","");
})
.mouseleave(function() {
var title = $(this).attr("temp_title");
$(this).attr("title", title);
$(this).removeAttr("temp_title");

});
});
              
            
!
999px

Console