jQueryUI widgets
        Posted  
        
            by cf_PhillipSenn
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by cf_PhillipSenn
        
        
        
        Published on 2010-04-27T22:23:59Z
        Indexed on 
            2010/04/27
            22:33 UTC
        
        
        Read the original article
        Hit count: 226
        
jquery-ui
How do I work with widgets? Here's what I've got so far:
<html>
<head>
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1");
google.load("jqueryui", "1");
</script>
</head>
<body>
<div class="ui-widget">
    <div class="ui-widget-header">
        header
    </div>
    <div class="ui-widget-content">
        content
    </div>
</div>
</body>
</html>
I'm trying to make a nice little div with a shaded header.
© Stack Overflow or respective owner