$(document).ready(function() {
$('some').click(function() {
var data_you_set = {
//set the data you want to post to the controller_name
};
$.post(base_url+'/index.php/controller_name/params',data_you_set,function(ajax_result) {
//do the operation with the ajax_result
});
});
});