[jQuery] jQuery autocomplete functionality won't work when textbox is in Tab

[jQuery] jQuery autocomplete functionality won't work when textbox is in Tab


Hi,
I am trying to use autocomplete.js of jQuery. It works fine if i use
<input type="text" id="example"/> in html form, but as i put this
input control in a tab then this function is not getting invoked
sample code i used is
$(document).ready(function(){
var data = "Core Selectors Attributes Traversing Manipulation CSS
Events Effects Ajax Utilities".split(" ");
$("#tabp")({ //id of the tabPanel
$:("#tab1")({ // id of tab
//example is the id of input control
$:("#example").autocomplete(data)
})
});
});
Thanks in advance.
kamlesh