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 comment:1
component: | unfiled → misc |
---|---|
priority: | undecided → low |
resolution: | → invalid |
status: | new → closed |
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.