i want to know what value passing
<script type="text/javascript">
$(function() {
var $countryGrid = $(".countries").grid();
var $cityGrid = $(".cities").grid();
$countryGrid.on("rowClick",function(event, $row, rowData) {
console.log(rowData);
// Value 6
var code = rowData.Code;
**$cityGrid.grid("load",{
action: "world-ajax.php?type=city&country=" + code**
// I want to check what action parameter passing code value as it's show me
data not found but there is data.
});
});
});
});
</script>
Is there any way to check this value.
console.log(code)
and/or check developer tools to see the request url. – LJ_1102 1 hour ago