I hope I can explain my self good. I want to create a function that has arguments which one of the arguments is a jQuery function that would be executed on event of an element that would be created after the call of the original function (it is very similar to dialog). Here is the code of what I am trying to do:
function messageBox(messageOptions) {
var default_args = {
'header': null,
'text': null,
'acceptButtonText': 'ok',
'acceptButtonOnClickFunction': null,
'cancelButtonText': 'cancel',
'cancelButtonOnClickFunction': function() {
$('#cancel_message_box_div_button_span').click(function() {
$('.greyBackground').remove();
})
}
};
for (var index in default_args) {
if (typeof messageOptions[index] == "undefined") messageOptions[index] = default_args[index];
}
putGrayBackground();
var messageBoxElement = '<div class="messageBoxDiv">';
messageBoxElement += '<legend class="messageBoxDivHeader">';
messageBoxElement += messageOptions.header;
messageBoxElement += '</legend>';
messageBoxElement += '<div class="messageBoxDivText">';
messageBoxElement += messageOptions.text;
messageBoxElement += '</div>';
messageBoxElement += '<div class="messageBoxDivButtons">';
messageBoxElement += '<div id="cancel_message_box_div_button_span" class="messageBoxDivButtonSpan">';
messageBoxElement += messageOptions.cancelButtonText;
messageBoxElement += '</div>';
messageBoxElement += '</div>';
messageBoxElement += '</div>';
$('.greyBackground').append(messageBoxElement);
}
The code suppose to create an element that has a span which when it would be clicked will call the function under 'cancelButtonOnClickFunction' argument. As you can see there are default parameters, one of them is 'cancelButtonOnClickFunction'. After I have created the element I append it, I think it doesn't works because the 'cancelButtonOnClickFunction' inner function is called before the element is created. I would ask how to make it work.
cancelButtonOnClickFunctionalways be the function that is executed when the event$('#cancel_message_box_div_button_span').clickhappens? Or should it be a function that can define different events (which is sort of what it is now)? – Jasper Oct 23 '12 at 21:26