<script>
$(document).ready(function(){
//Load City by State
$('#billing_state_id').live('change', function() {
//do something
});
$('#click_me').live('click', function() {
//do something
//need to recall $('#billing_state_id').live('change', function() { but how?
});
});
</script>
Load City by State working fine but i don't know whether it's possible or not to call it within another function like $('#click_me').live('click', function().
.liveis deprecated, useon(check the manual page on it, it's very descriptive. Moreover, jQuery is just JavaScript... you call a function just like you would at any other point with JS