Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<html>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js" type="text/javascript"></script>
    
    <script type="text/javascript">
        $(function() {
            var obj_h2 = $('h2, h3');
            var h2_title = obj_h2.html();
            var words = h2_title.split(' ');
            words[0] = '<span>' + words[0] + '</span>'
            
            obj_h2.html( words.join( ' ' ) );
        });
    </script>
    
    <style type="text/css">
    h2 span{
        color:red;
    }
    </style>
    
</head>
<body>
    <h2>Converted post title</h2>
  <h3>lol</h3>
    
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers