Here's my code: This is javascript file that sends the get the selected element from view and send that id to the controller as an Ajax request.
$(document).ready(function(){
$('#div_signUpForm, #div_loginForm').css('opacity', '0.4');
$('#div_signUpForm').mouseover(function () {
$('#div_signUpForm').css('opacity', '1.0');
});
$('#div_signUpForm').mouseout(function () {
$('#div_signUpForm').css('opacity', '0.4');
});
$('#div_loginForm').mouseover(function () {
$('#div_loginForm').css('opacity', '1.0');
});
$('#div_loginForm').mouseout(function () {
$('#div_loginForm').css('opacity', '0.4');
});
$('.element').click(function (e) {
var idAttr = $(this).attr('id');
getData(idAttr, e);
});
function getData (id, e) {
if(window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
else {
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
}
xmlHttp.onreadystatechange = function () {
if(xmlHttp.readyState == 4 && xmlHttp.status == 200) {
alert('yes');
}else{
alert('no');
}
}
xmlHttp.open('POST', '/BrandDetail/returnPdetails', true);
xmlHttp.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xmlHttp.send(id);
e.preventDefault();
}
});
Now here's the controller that is not either getting the request or responding it.
class BrandDetailController extends AppController {
public $name = 'BrandDetail';
function returnPdetails () {
$id = $_POST['id'];
$data = $this->brandDetail->find('all', array('conditions' => array('brandDetail.id' => $id)));
}
}
