I am new to jquery ajax. I am working in cakephp and I have following to do:
I have 7 links: sun, mon, tue, wed, ...
Now onclick of each link I wish to store the text of that link into an array which I can access in controller. I wish to do this using jquery ajax.
Following is my code which is not working (jquery ajax test code):
<?php
echo $this->Html->link('sun',
array('onclick' => 'callAjax();'),
array('class' => 'dayss'));
?>
<script>
function callAjax() {
$.ajax({
url: "rideoffers/ride_offer",
type: "POST",
success: function() {
console.log("hi");
},
error: function() {
console.log("error");
}
});
return true;
}
</script>
The above code doesnt print hi or error. Where am I getting wrong? How do I solve it?
edited: Dipesh parmar
<pre>CakeRequest Object
(
[params] => Array
(
[plugin] =>
[controller] => Rideoffers
[action] => ride_array
[named] => Array
(
)
[pass] => Array
(
)
)
[data] => Array
(
)
[query] => Array
(
)
[url] => Rideoffers/ride_array
[base] => /carpooling
[webroot] => /carpooling/
[here] => /carpooling/Rideoffers/ride_array
[_detectors:protected] => Array
(
[get] => Array
(
[env] => REQUEST_METHOD
[value] => GET
)
[post] => Array
(
[env] => REQUEST_METHOD
[value] => POST
)
[put] => Array
(
[env] => REQUEST_METHOD
[value] => PUT
)
[delete] => Array
(
[env] => REQUEST_METHOD
[value] => DELETE
)
[head] => Array
(
[env] => REQUEST_METHOD
[value] => HEAD
)
[options] => Array
(
[env] => REQUEST_METHOD
[value] => OPTIONS
)
[ssl] => Array
(
[env] => HTTPS
[value] => 1
)
[ajax] => Array
(
[env] => HTTP_X_REQUESTED_WITH
[value] => XMLHttpRequest
)
[flash] => Array
(
[env] => HTTP_USER_AGENT
[pattern] => /^(Shockwave|Adobe) Flash/
)
[mobile] => Array
(
[env] => HTTP_USER_AGENT
[options] => Array
(
[0] => Android
[1] => AvantGo
[2] => BlackBerry
[3] => DoCoMo
[4] => Fennec
[5] => iPod
[6] => iPhone
[7] => iPad
[8] => J2ME
[9] => MIDP
[10] => NetFront
[11] => Nokia
[12] => Opera Mini
[13] => Opera Mobi
[14] => PalmOS
[15] => PalmSource
[16] => portalmmm
[17] => Plucker
[18] => ReqwirelessWeb
[19] => SonyEricsson
[20] => Symbian
[21] => UP\.Browser
[22] => webOS
[23] => Windows CE
[24] => Windows Phone OS
[25] => Xiino
)
)
[requested] => Array
(
[param] => requested
[value] => 1
)
)
[_input:protected] =>
)
</pre>