I am trying to get a value from a list box after it has been added to the page the listbox ID is ql_domain_groups i need somthing like $(‘#’).live() the only reason why i am not using live is becuase i dont not want to click something to get the value i am trying to get the information into Ajax
function GetQLDomainPages(){
$.ajax({
type: "POST",
url: "php/ql_pagefinder.php",
data: "domain_id=***Need To Get The Info HERE ***",
success: function(html){
$("#select_page_ql").html(html);
}
});
}
Assuming “listbox” is a “select” element