Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('.info_field_hotel').each(function() {
- var _this = $(this);
- var key = _this.attr('rel');
- if(key && key != '') {
- var keys = key.split('.');
- //Base level value,
- if(keys.length == 1) {
- _this.html(Bookingpage.hotel.data[key]);
- }
- //Sub-level value,
- else {
- var value = Bookingpage.hotel.data;
- for(var i=0;i<keys.length;i++) { console.info(keys[i]); console.info(value); value = value[keys[i]]; }
- _this.html(value);
- }
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment