Skip to main content

Bug Tracker

Side navigation

#10448 closed bug (invalid)

Opened October 07, 2011 06:54AM UTC

Closed October 07, 2011 01:44PM UTC

the event is not fired if it is in different place i was using it for master page....

Reported by: thulasiram.eee@gmail.com Owned by:
Priority: low Milestone: None
Component: misc Version: 1.6.4
Keywords: Cc:
Blocked by: Blocking:
Description

//not working

$(document).ready(function () {

$('.Menu ul li').corner("top");

$('.Service table').corner();

$('.ProductCorner').corner("5px");

$('.Corner, .Service').corner();

$('#slider').s3Slider({

timeOut: 8000

});

$('#tbSearch').keyup(function (event) {

if (event.keyCode == 13) {

return search('tbSearch');

}

});

});

//working

$(document).ready(function () {

$('#tbSearch').keyup(function (event) {

if (event.keyCode == 13) {

return search('tbSearch');

}

});

$('.Menu ul li').corner("top");

$('.Service table').corner();

$('.ProductCorner').corner("5px");

$('.Corner, .Service').corner();

$('#slider').s3Slider({

timeOut: 8000

});

});

Attachments (0)
Change History (1)

Changed October 07, 2011 01:44PM UTC by timmywil comment:1

component: unfiledmisc
priority: undecidedlow
resolution: → invalid
status: newclosed

Thank you for taking the time to contribute to the jQuery project. Please ask for support for third party plugins in the #jquery irc channel or on the forums.