JSFiddle - React, Tailwind, and code Playground
by A B
HTML
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<div id="responsestatus"></div>
<div id="divResult"></div>
JavaScript
$.ajax({
url:"/echo/json/",
data:data,
type:"POST",
dataType: "json",
success:function(data)
{
console.log(data);
$('#responsestatus').text(data.Response);
$('#divResult').html(data);
}
});
var data =
{
"Response": {
"ResponseStatus": 1,
"Error": {
"ErrorCode": 0,
"ErrorMessage": ""
},
"TraceId": "83b04f8c-f7dd-4755-9767-b0c861ea9e28",
"Origin": "DEL",
"Destination": "BOM",
"Results": [
[{
"ResultIndex": "OB12",
"Source": 6,
"IsLCC": true,
"IsRefundable": false,
"AirlineRemark": "IndiGo",
"Fare": {
"Currency": "INR",
"BaseFare": 2080,
"Tax": 1172,
"YQTax": 200,
"AdditionalTxnFeeOfrd": 0,
"AdditionalTxnFeePub": 0,
"OtherCharges": 58.29,
"ChargeBU": [{
"key": "TBOMARKUP",
"value": 8.29
}, {
"key": "CONVENIENCECHARGE",
"value": 0
}, {
"key": "OTHERCHARGE",
"value": 50.00
}],
"Discount": 0,
"PublishedFare": 3310.29,
"CommissionEarned": 57.20,
"PLBEarned": 0.00,
"IncentiveEarned": 0.00,
"OfferedFare": 3253.09,
"TdsOnCommission": 11.44,
"TdsOnPLB": 0.00,
"TdsOnIncentive": 0.00,
"ServiceFee": 0
},
"FareBreakdown": [{
"Currency": "INR",
"PassengerType": 1,
"PassengerCount": 1,
"BaseFare": 2080,
"Tax": 1172,
"YQTax": 200,
"AdditionalTxnFeeOfrd": 0,
"AdditionalTxnFeePub": 0
}],
"Segments": [
[{
"TripIndicator": 1,
"SegmentIndicator": 1,
"Airline": {
"AirlineCode": "6E",
"AirlineName": "IndiGo",
"FlightNumber": "129",
"FareClass": "ON",
"OperatingCarrier": ""
},
"Origin": {
"Airport": {
"AirportCode": "DEL",
"AirportName": "Indira Gandhi Airport",
"Terminal": "1",
"CityCode": "DEL",
"CityName": "Delhi",
"CountryCode": "IN",
"CountryName":...