- From: <bugzilla@jessica.w3.org>
 - Date: Fri, 12 Nov 2010 09:39:14 +0000
 - To: public-html@w3.org
 
http://www.w3.org/Bugs/Public/show_bug.cgi?id=11308
           Summary: $(function() {     $('.rollover').hover(function() {
                          var currentImg = $(this).attr('src');
                    $(this).attr('src', $(this).attr('hover'));
                    $(this).attr('hover', currentImg);     }, function() {
                            var currentImg = $(this).attr('sr
           Product: HTML WG
           Version: unspecified
          Platform: Other
               URL: http://www.whatwg.org/specs/web-apps/current-work/#top
        OS/Version: other
            Status: NEW
          Severity: normal
          Priority: P3
         Component: HTML Canvas 2D Context (editor: Ian Hickson)
        AssignedTo: ian@hixie.ch
        ReportedBy: contributor@whatwg.org
         QAContact: public-html-bugzilla@w3.org
                CC: mike@w3.org, public-html-wg-issue-tracking@w3.org,
                    public-html@w3.org
Specification: http://dev.w3.org/html5/spec/
Section: http://www.whatwg.org/specs/web-apps/current-work/complete.html#top
Comment:
$(function() {
    $('.rollover').hover(function() {
    var currentImg = $(this).attr('src');
    $(this).attr('src', $(this).attr('hover'));
    $(this).attr('hover', currentImg);
    }, function() {
    var currentImg = $(this).attr('src');
    $(this).attr('src', $(this).attr('hover'));
    $(this).attr('hover', currentImg);
    });
});
Posted from: 122.116.92.103
-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Received on Friday, 12 November 2010 09:39:19 UTC