After suffering from events that were no longer firing after a partial AJAX Postback I modified all of my .bind() functions to .live(). I therefore have this:
$(document).ready(function()
{
var listBox = $("#<%=listBox.ClientID %>");
var btnDropDown = $("#<%=btnDropDown.ClientID %>");
var listBoxWrapper = $("#<%=ListboxWrapper.ClientID %>")
var inputBox = $("#<%=inputBox.ClientID %>")
btnDropDown.live("click", function () {
listBoxWrapper.not(":animated").slideDown("fast");
listBox.focus();
});
listBoxWrapper.live("focusout", function () {
listBoxWrapper.slideUp("fast");
});
listBoxWrapper.live("click", function () {
var inputtedText = listBox.val();
inputBox.val(inputtedText)
listBoxWrapper.slideUp("fast");
});
});
Using alert() boxes I can now be sure that the click events are still firing event after a postback (the intended result) however the .slidedown("fast") still appears to not work. Any ideas on what the problem is?
