Ticket #10448 (closed bug: invalid)
the event is not fired if it is in different place i was using it for master page....
| Reported by: | thulasiram.eee@… | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | None |
| Component: | misc | Version: | 1.6.4 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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
});
});
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

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.