BTW, jQuery's rounded corner plug-in on this page didn't work in Internet Explorer 9 Release Candidate. It turns out that IE9 wouldn't use a script that started with "https://" but works with "http://" okay.
First, log-in to your blog and go to the Design section. Click on Edit Html on the Design tab.
In the HTML Edit window go to the <!-- end outer-wrapper –> comment. Just above there are two </div></div> tags. Between </div></div> and <!-- end outer-wrapper –> comment enter the following:
1: <script src='http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.min.js' type='text/javascript'/>
2: <script type='text/javascript'>
   3:         $(document).ready(function () {   4:             var tag = "[Your selector go here like #content-wrapper]";   5:             $(tag).[Your jQuery Function]();   6:         });   7: </script>You can look at the source of this page to see how I use the jQuery Corners plugin.
Happy computing…

No comments:
Post a Comment