﻿$(document).ready(function() {
    
    $('div.where-code').append(
        "<p class='where-code'>Where can I find my code?</p><div class='where-tooltip'><p>Find your code on the lid of the Clover pack, near the bottom.</p></div>"   
    );
    
    $('div.where-code p.where-code').hover(
    
            function() {
                $('div.where-code div.where-tooltip').css('display', 'inline');
            },
            function() {
                $('div.where-code div.where-tooltip').css('display', 'none');
            }
    
    );
    
});