Opened 11 years ago
Closed 11 years ago
#10448 closed bug (invalid)
the event is not fired if it is in different place i was using it for master page....
Reported by: | 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
});
});
Change History (1)
comment:1 Changed 11 years ago by
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.