How do I get send in my controller? This is what, I have tried out:
Ajax
$.ajax({ type: \"POST\", url: \"e
Try this one , this is ajax call
$.post('example/name',{send:send}, function(data) { });
then access it using post into your controller like this
class Example extends CI_Controller { function name() { $_POST['send']; } }