            <script type="text/javascript">

                var jobsearch_sloc_type = '1',
                    jobsearch_is_admin = '',
                    totl_countries_detail, totl_preselected_states_saved,
                    jobsearch_is_post_page = 'index.php';

                
                var inc_countries = "", inc_countries_code = "",
                    exec_countries = "", contry_presel_contry, ajax_flag = false,
                    contry_preselct = 'none',
                    contry_presel_contry_code = 'AF';

                /*
                * Scrapper Events
                * */
                var api_scrapper = {
                    getCountryCode: function (jobsearch_sloc_country) {
                        var country_code_from_country_name = '';
                        jQuery.each(totl_countries_detail, function (index, element) {
                            if (element.country_name == jobsearch_sloc_country) {
                                country_code_from_country_name = element.country_code;
                            }
                        });
                        return country_code_from_country_name;
                    },
                    readCityOnlyFiles: function (country_detail, state_name, selector) {

                        if (jobsearch_is_admin == '' || ajax_flag == true) {
                            jQuery('#jobsearch-gdapilocs-citycon').empty();
                            jQuery('#jobsearch-gdapilocs-citycon').append('<select placeholder="Select City" name="location_location3" class="cities" id="cityId"><option value="0">Select City</option></select>');
                            selector = jQuery(document).find("#cityId");
                        }

                        var request = jQuery.ajax({
                            url: jobsearch_plugin_vars.ajax_url,
                            method: "POST",
                            data: {
                                country_detail: country_detail,
                                state: state_name,
                                _nonce: 'bbfe67d8b2',
                                action: 'jobsearch_location_load_cities_data',
                            },
                            dataType: 'json',
                        });

                        request.done(function (response) {

                            var _result_cities = response;
                            if (jobsearch_is_admin == '' || ajax_flag == true) {
                                if (selector.length > 0) {
                                    selector.selectize()[0].selectize.destroy();
                                }
                            }

                            setTimeout(function () {

                                if(jQuery('.vc_ui-panel-window-inner').find('.jobsearch-vcloc-dropdwn-con').length>0){
                                    selector    = jQuery('.location2-city');
                                }
                                selector.html('');
                                //if (jobsearch_is_admin == 1 && ajax_flag == false) {
                                selector.append('<option value="">Select City</option>');
                                // }

                                var _option_select = '';
                                if (_result_cities.result.length != 0) {
                                    jQuery.each(_result_cities.result, function (index, element) {

                                        if (jQuery.trim(element.city_name) != "Enter Any City") {
                                            if (jobsearch_sloc_city != "") {
                                                _option_select = jobsearch_sloc_city == element.city_name ? 'selected' : '';
                                            }
                                            if (_option_select != "") {
                                                selector.append(jQuery("<option></option>").attr("value", element.city_name).attr("selected", "selected").text(element.city_name));
                                            } else {
                                                selector.append(jQuery("<option></option>").attr("value", element.city_name).text(element.city_name));
                                            }
                                        }
                                    });
                                } else {
                                    selector.html('');
                                    selector.append(jQuery("<option></option>").attr("value", "").text('No cities exits.'));
                                }
                            }, 50);

                            if (jobsearch_is_admin == '' || ajax_flag == true) {
                                if (_result_cities.result.length != 0) {
                                    setTimeout(function () {
                                        selector.selectize({
                                            maxOptions: 30000,
                                            sortField: [{
                                                field: 'text',
                                                direction: 'asc'
                                            }],
                                        });
                                    }, 100);
                                }
                            }
                            jQuery('#cityId').trigger('change');
                        });
                        request.fail(function (jqXHR, textStatus) {

                        });
                    },
                    readStateFile: function (country_code, selector) {

                        var request, _result_states;
                        if (jobsearch_is_admin == '' || ajax_flag == true) {
                            jQuery('#jobsearch-gdapilocs-statecon').empty();
                            jQuery('#jobsearch-gdapilocs-statecon').append('<select placeholder="Select State"  class="states location2-states" id="stateId" name="location_location2"><option value="">Select State</option></select>');
                            selector = jQuery(document).find("#stateId, .location2-states");
                        }
                        selector.html('');
                        request = jQuery.ajax({
                            url: jobsearch_plugin_vars.ajax_url,
                            method: "POST",
                            data: {
                                country_code: country_code,
                                _nonce: 'bbfe67d8b2',
                                action: 'jobsearch_location_load_states_data',
                            },
                            dataType: 'json',
                        });

                        if(jQuery('.vc_ui-panel-window-inner').find('.jobsearch-vcloc-dropdwn-con').length>0){
                            selector    = jQuery('.location2-state');
                        }

                        request.done(function (response) {

                            if (jobsearch_is_admin == '' || ajax_flag == true) {
                                //selector.selectize()[0].selectize.destroy();
                            }
                            _result_states = response;
                            setTimeout(function () {
                                selector.html('');
                                //if (jobsearch_is_admin == 1 && ajax_flag == false) {
                                selector.append('<option value="">Select State</option>');
                                //}
                                var _option_select = '';
                                jQuery.each(_result_states.result, function (index, element) {

                                    if (jQuery.trim(element.state_name) != "Enter Any State") {
                                        if (jobsearch_sloc_state != "") {
                                            _option_select = jobsearch_sloc_state == element.state_name ? 'selected' : '';
                                        }

                                        if (_option_select != "") {
                                            selector.append(jQuery("<option></option>").attr("value", element.state_name).attr("selected", "selected").text(element.state_name));
                                            // selector.append(jQuery('<option>', {
                                            //     value: element,
                                            //     text: element,
                                            //     selected: _option_select,
                                            // }));
                                        } else {
                                            selector.append(jQuery("<option></option>").attr("value", element.state_name).text(element.state_name));
                                            // selector.append(jQuery('<option>', {
                                            //     value: element,
                                            //     text: element,
                                            // }));
                                        }
                                    }
                                });
                            }, 50);

                            /*
                            * If city is saved then this code will execute.
                            * */
                            if (jobsearch_sloc_city != "") {
                                setTimeout(function () {
                                    console.info("triggered second");
                                    jQuery('#stateId').trigger('change');
                                }, 1000)
                            }
                            /*
                            * Initialize Selectize
                            * */
                            if (jobsearch_is_admin == '' || ajax_flag == true) {
                                setTimeout(function () {
                                    selector.selectize();
                                }, 100)
                            }
                        });
                        request.fail(function (jqXHR, textStatus) {

                        });
                    },
                    stripslashes: function (str) {
                        if (str == undefined) {
                            return;
                        }
                        return str.replace(/\\/g, '');
                    },
                    readCountryFile: function (selector, country) {
                        var _result_countries, request;

                        request = jQuery.ajax({
                            url: jobsearch_plugin_vars.ajax_url,
                            method: "POST",
                            data: {
                                _nonce: 'bbfe67d8b2',
                                action: 'jobsearch_location_load_countries_data',
                            },
                            dataType: "json"
                        });
                        request.done(function (response) {
                            _result_countries = response;
                            selector.html('');
                            if (jobsearch_is_admin == 1 && ajax_flag == true) {
                                selector.append('<option value="">Select Country</option>');
                            } else {
                                var $opt = jQuery('<option>');
                                $opt.val('').text('Select Country');
                                $opt.appendTo(selector);
                            }
                            /*
                            * Alphabetic countries
                            * */
                                                        _result_countries.sort(function (a, b) {
                                return api_scrapper.compareStrings(a.name, b.name);
                            });
                                                        /*
                            * Code will execute if Include only countries option will be selected.
                            * */
                            ;
                            /*
                            * Code will execute if Exclude only countries option will be selected.
                            * */
                            ;
                            /*
                            * Code will execute if Random countries option will be selected.
                            * */
                                                        /*
                            * Include only countries
                            * */
                            if (inc_countries != "" && jobsearch_is_loc_editor != 'jobsearch-location-sett-editor') {
                                var _inc_flag = false;
                                jQuery.each(_result_countries, function (i, element) {
                                    if (i < inc_countries.length) {
                                        if (jobsearch_sloc_country == inc_countries[i]) {

                                            selector.append(jQuery("<option></option>")
                                                .attr("data-index", i)
                                                .attr("code", inc_countries_code[i])
                                                .attr("selected", "selected")
                                                .attr("value", inc_countries[i])
                                                .text(inc_countries[i]));
                                            _inc_flag = true;

                                        } else if (contry_preselct == 'by_contry' && contry_presel_contry_code == inc_countries_code[i] && ajax_flag == false && _inc_flag == false) {
                                            selector.append(jQuery("<option></option>")
                                                .attr("data-index", i)
                                                .attr("code", inc_countries_code[i])
                                                .attr("selected", "selected")
                                                .attr("value", inc_countries[i])
                                                .text(inc_countries[i]));

                                        } else {
                                            selector.append(jQuery("<option></option>")
                                                .attr("data-index", i)
                                                .attr("code", inc_countries_code[i])
                                                .attr("value", inc_countries[i])
                                                .text(inc_countries[i]));
                                        }
                                    }
                                })
                            } else if (exec_countries != '' && jobsearch_is_loc_editor != 'jobsearch-location-sett-editor') {
                                /*
                                * code will execute if "Exclude countries selected" filter option will be selected
                                * */
                                var _exec_flag = false;
                                jQuery.each(_result_countries, function (index, element) {
                                    if (element != "") {
                                        if (exec_countries.indexOf(element.name) == -1) {
                                            /*
                                            * code will execute if Country Name is from save in metavalue
                                            * */

                                            if (jobsearch_sloc_country == element.name) {
                                                selector.append(jQuery("<option></option>")
                                                    .attr("data-index", index)
                                                    .attr("code", element.code)
                                                    .attr("selected", "selected")
                                                    .attr("value", element.name)
                                                    .text(element.name));
                                                _exec_flag = true;
                                            } else if (contry_preselct == 'by_contry' && contry_presel_contry_code == element.code && ajax_flag == false && _exec_flag == false) {
                                                selector.append(jQuery("<option></option>")
                                                    .attr("data-index", index)
                                                    .attr("code", element.code)
                                                    .attr("selected", "selected")
                                                    .attr("value", element.name)
                                                    .text(element.name));

                                            } else {
                                                selector.append(jQuery("<option></option>")
                                                    .attr("data-index", index)
                                                    .attr("code", element.code)
                                                    .attr("value", element.name)
                                                    .text(element.name));
                                            }
                                        }
                                    }
                                })
                            } else {
                                var pres_selected_saved_contry = api_scrapper.getCountryCode(jobsearch_sloc_country);
                                jQuery.each(_result_countries, function (index, element) {
                                    if (element != "") {
                                        /*
                                        * code will execute if Preselect Country option will be selected
                                        * */
                                        
                                        if (jobsearch_sloc_type != 2 && jobsearch_sloc_type != 3) {

                                            var _option_select = '';
                                            if (jobsearch_sloc_country != '') {
                                                if (api_scrapper.stripslashes(jobsearch_sloc_country) == api_scrapper.stripslashes(element.name)) {
                                                    selector.append(jQuery("<option></option>")
                                                        .attr("data-index", index)
                                                        .attr("code", element.code)
                                                        .attr("selected", "selected")
                                                        .attr("value", element.name)
                                                        .text(api_scrapper.stripslashes(element.name)));
                                                } else {
                                                    selector.append(jQuery("<option></option>")
                                                        .attr("data-index", index)
                                                        .attr("code", element.code)
                                                        .attr("value", element.name)
                                                        .text(api_scrapper.stripslashes(element.name)));
                                                }
                                            } else {
                                                selector.append(jQuery("<option></option>")
                                                    .attr("data-index", index)
                                                    .attr("code", element.code)
                                                    .attr("value", element.name)
                                                    .text(api_scrapper.stripslashes(element.name)));
                                            }

                                        } else if (jobsearch_is_loc_editor == 'jobsearch-location-sett-editor') {
                                            selector.append(jQuery("<option></option>")
                                                .attr("data-index", index)
                                                .attr("code", element.code)
                                                .attr("value", element.name)
                                                .text(api_scrapper.stripslashes(element.name)));
                                        }


                                                                            }
                                });
                                                            }
                            /*
                            * Initialize Selectize
                            * */

                            if (jobsearch_is_admin == '' || ajax_flag == true) {
                                if (jobsearch_sloc_type == 0 || jobsearch_sloc_type == 1) {
                                    selector.selectize({
                                        placeholder: 'Select Country',
                                    });
                                }
                            }
                        });
                        request.fail(function (jqXHR, textStatus) {

                        });
                    },
                    predictByIP: function () {
                        var request = jQuery.ajax({
                            url: "https://ipinfo.io/json",
                            dataType: "json"
                        });
                        request.done(function (result) {
                            if (result != '') {
                                api_scrapper.readCountryFile(jQuery('#countryId'), result.country);
                            } else {
                                /*
                                * Second Request will be sent if first request will fail.
                                * */
                                api_scrapper.apiSecondRequest();
                            }
                        });
                        request.fail(function (jqXHR, textStatus) {
                            api_scrapper.apiSecondRequest();
                        });
                    },
                    shuffleArray: function (a) {
                        var j, x, i;
                        for (i = a.length - 1; i > 0; i--) {
                            j = Math.floor(Math.random() * (i + 1));
                            x = a[i];
                            a[i] = a[j];
                            a[j] = x;
                        }
                        return a;
                    },
                    apiSecondRequest: function () {
                        var request = jQuery.ajax({
                            url: "http://ip-api.com/json",
                            dataType: "json"
                        });
                        request.done(function (result) {
                            api_scrapper.readCountryFile(jQuery('#countryId'), result.countryCode);
                            api_scrapper.readStateFile(result.countryCode, jQuery('#stateId'))
                        });
                        request.fail(function (jqXHR, textStatus) {

                        });
                    },
                    compareStrings: function (a, b) {
                        a = a.toLowerCase();
                        b = b.toLowerCase();
                        return (a < b) ? -1 : (a > b) ? 1 : 0;
                    },
                    getBulkCitiesByStates: function (preselected_states, jobsearch_sloc_city) {

                        jQuery('.cities').html('');
                        jQuery.ajax({
                            url: jobsearch_plugin_vars.ajax_url,
                            method: "POST",
                            data: {
                                preselected_states: JSON.parse(preselected_states),
                                _nonce: 'bbfe67d8b2',
                                action: 'jobsearch_get_selected_states_cities',
                            },
                            dataType: 'json',
                            success: function (response) {
                                jQuery.each(response.all_cities, function (index, city_name) {
                                    if (jobsearch_sloc_city == city_name) {
                                        jQuery('.cities')
                                            .append(jQuery("<option></option>")
                                                .attr("value", city_name)
                                                .attr("selected", "selected")
                                                .text(city_name));
                                    } else {
                                        jQuery('.cities')
                                            .append(jQuery("<option></option>")
                                                .attr("value", city_name)
                                                .text(city_name));

                                    }
                                });

                                if (jobsearch_is_admin == '' || ajax_flag == true) {
                                    setTimeout(function () {
                                        jQuery('.cities').selectize({
                                            sortField: 'text'
                                        });
                                    }, 100)
                                }
                            }
                        });
                    }
                };
                /*
                * Scrapper Events end
                * */

                                jQuery(window).on('load', function () {
                    //
                                            totl_countries_detail = JSON.parse('[{"country_code":"AF","country_name":"Afghanistan"},{"country_code":"AL","country_name":"Albania"},{"country_code":"DZ","country_name":"Algeria"},{"country_code":"AD","country_name":"Andorra"},{"country_code":"AO","country_name":"Angola"},{"country_code":"AI","country_name":"Anguilla"},{"country_code":"AG","country_name":"Antigua and Barbuda"},{"country_code":"AR","country_name":"Argentina"},{"country_code":"AM","country_name":"Armenia"},{"country_code":"AU","country_name":"Australia"},{"country_code":"AT","country_name":"Austria"},{"country_code":"AZ","country_name":"Azerbaijan"},{"country_code":"BS","country_name":"Bahamas"},{"country_code":"BH","country_name":"Bahrain"},{"country_code":"BD","country_name":"Bangladesh"},{"country_code":"BB","country_name":"Barbados"},{"country_code":"BY","country_name":"Belarus"},{"country_code":"BE","country_name":"Belgium"},{"country_code":"BZ","country_name":"Belize"},{"country_code":"BJ","country_name":"Benin"},{"country_code":"BM","country_name":"Bermuda"},{"country_code":"BT","country_name":"Bhutan"},{"country_code":"BO","country_name":"Bolivia"},{"country_code":"BA","country_name":"Bosnia and Herzegovina"},{"country_code":"BW","country_name":"Botswana"},{"country_code":"BR","country_name":"Brazil"},{"country_code":"BN","country_name":"Brunei Darussalam"},{"country_code":"BG","country_name":"Bulgaria"},{"country_code":"BF","country_name":"Burkina Faso"},{"country_code":"BI","country_name":"Burundi"},{"country_code":"KH","country_name":"Cambodia"},{"country_code":"CM","country_name":"Cameroon"},{"country_code":"CA","country_name":"Canada"},{"country_code":"CV","country_name":"Cape Verde"},{"country_code":"KY","country_name":"Cayman Islands"},{"country_code":"CF","country_name":"Central African Republic"},{"country_code":"TD","country_name":"Chad"},{"country_code":"CL","country_name":"Chile"},{"country_code":"CN","country_name":"China"},{"country_code":"CO","country_name":"Colombia"},{"country_code":"KM","country_name":"Comoros"},{"country_code":"CG","country_name":"Congo"},{"country_code":"CR","country_name":"Costa Rica"},{"country_code":"HR","country_name":"Croatia (Hrvatska)"},{"country_code":"CU","country_name":"Cuba"},{"country_code":"CY","country_name":"Cyprus"},{"country_code":"CZ","country_name":"Czech Republic"},{"country_code":"DK","country_name":"Denmark"},{"country_code":"DJ","country_name":"Djibouti"},{"country_code":"DM","country_name":"Dominica"},{"country_code":"DO","country_name":"Dominican Republic"},{"country_code":"EC","country_name":"Ecuador"},{"country_code":"EG","country_name":"Egypt"},{"country_code":"SV","country_name":"El Salvador"},{"country_code":"GQ","country_name":"Equatorial Guinea"},{"country_code":"ER","country_name":"Eritrea"},{"country_code":"EE","country_name":"Estonia"},{"country_code":"ET","country_name":"Ethiopia"},{"country_code":"FO","country_name":"Faroe Islands"},{"country_code":"FJ","country_name":"Fiji"},{"country_code":"FI","country_name":"Finland"},{"country_code":"FR","country_name":"France"},{"country_code":"GF","country_name":"French Guiana"},{"country_code":"PF","country_name":"French Polynesia"},{"country_code":"TF","country_name":"French Southern Territories"},{"country_code":"GA","country_name":"Gabon"},{"country_code":"GM","country_name":"Gambia"},{"country_code":"GE","country_name":"Georgia"},{"country_code":"DE","country_name":"Germany"},{"country_code":"GH","country_name":"Ghana"},{"country_code":"GR","country_name":"Greece"},{"country_code":"GL","country_name":"Greenland"},{"country_code":"GD","country_name":"Grenada"},{"country_code":"GP","country_name":"Guadeloupe"},{"country_code":"GU","country_name":"Guam"},{"country_code":"GT","country_name":"Guatemala"},{"country_code":"GN","country_name":"Guinea"},{"country_code":"GW","country_name":"Guinea-Bissau"},{"country_code":"GY","country_name":"Guyana"},{"country_code":"HT","country_name":"Haiti"},{"country_code":"HN","country_name":"Honduras"},{"country_code":"HK","country_name":"Hong Kong"},{"country_code":"HU","country_name":"Hungary"},{"country_code":"IS","country_name":"Iceland"},{"country_code":"IN","country_name":"India"},{"country_code":"IM","country_name":"Isle of Man"},{"country_code":"ID","country_name":"Indonesia"},{"country_code":"IR","country_name":"Iran"},{"country_code":"IQ","country_name":"Iraq"},{"country_code":"IE","country_name":"Ireland"},{"country_code":"IL","country_name":"Israel"},{"country_code":"IT","country_name":"Italy"},{"country_code":"CI","country_name":"Ivory Coast"},{"country_code":"JE","country_name":"Jersey"},{"country_code":"JM","country_name":"Jamaica"},{"country_code":"JP","country_name":"Japan"},{"country_code":"JO","country_name":"Jordan"},{"country_code":"KZ","country_name":"Kazakhstan"},{"country_code":"KE","country_name":"Kenya"},{"country_code":"KI","country_name":"Kiribati"},{"country_code":"KP","country_name":"North Korea"},{"country_code":"KR","country_name":"South Korea"},{"country_code":"XK","country_name":"Kosovo"},{"country_code":"KW","country_name":"Kuwait"},{"country_code":"KG","country_name":"Kyrgyzstan"},{"country_code":"LA","country_name":"Lao"},{"country_code":"LV","country_name":"Latvia"},{"country_code":"LB","country_name":"Lebanon"},{"country_code":"LS","country_name":"Lesotho"},{"country_code":"LR","country_name":"Liberia"},{"country_code":"LY","country_name":"Libyan Arab Jamahiriya"},{"country_code":"LI","country_name":"Liechtenstein"},{"country_code":"LT","country_name":"Lithuania"},{"country_code":"LU","country_name":"Luxembourg"},{"country_code":"MK","country_name":"Macedonia"},{"country_code":"MG","country_name":"Madagascar"},{"country_code":"MW","country_name":"Malawi"},{"country_code":"MY","country_name":"Malaysia"},{"country_code":"MV","country_name":"Maldives"},{"country_code":"ML","country_name":"Mali"},{"country_code":"MT","country_name":"Malta"},{"country_code":"MH","country_name":"Marshall Islands"},{"country_code":"MQ","country_name":"Martinique"},{"country_code":"MR","country_name":"Mauritania"},{"country_code":"MU","country_name":"Mauritius"},{"country_code":"MX","country_name":"Mexico"},{"country_code":"FM","country_name":"Micronesia, Federated States of"},{"country_code":"MD","country_name":"Moldova"},{"country_code":"MC","country_name":"Monaco"},{"country_code":"MN","country_name":"Mongolia"},{"country_code":"ME","country_name":"Montenegro"},{"country_code":"MS","country_name":"Montserrat"},{"country_code":"MA","country_name":"Morocco"},{"country_code":"MZ","country_name":"Mozambique"},{"country_code":"MM","country_name":"Myanmar"},{"country_code":"NA","country_name":"Namibia"},{"country_code":"NR","country_name":"Nauru"},{"country_code":"NP","country_name":"Nepal"},{"country_code":"NL","country_name":"Netherlands"},{"country_code":"AN","country_name":"Netherlands Antilles"},{"country_code":"NC","country_name":"New Caledonia"},{"country_code":"NZ","country_name":"New Zealand"},{"country_code":"NI","country_name":"Nicaragua"},{"country_code":"NE","country_name":"Niger"},{"country_code":"NG","country_name":"Nigeria"},{"country_code":"MP","country_name":"Northern Mariana Islands"},{"country_code":"NO","country_name":"Norway"},{"country_code":"OM","country_name":"Oman"},{"country_code":"PK","country_name":"Pakistan"},{"country_code":"PW","country_name":"Palau"},{"country_code":"PS","country_name":"Palestine"},{"country_code":"PA","country_name":"Panama"},{"country_code":"PG","country_name":"Papua New Guinea"},{"country_code":"PY","country_name":"Paraguay"},{"country_code":"PE","country_name":"Peru"},{"country_code":"PH","country_name":"Philippines"},{"country_code":"PL","country_name":"Poland"},{"country_code":"PT","country_name":"Portugal"},{"country_code":"PR","country_name":"Puerto Rico"},{"country_code":"QA","country_name":"Qatar"},{"country_code":"RE","country_name":"Reunion"},{"country_code":"RO","country_name":"Romania"},{"country_code":"RU","country_name":"Russian Federation"},{"country_code":"RW","country_name":"Rwanda"},{"country_code":"KN","country_name":"Saint Kitts and Nevis"},{"country_code":"LC","country_name":"Saint Lucia"},{"country_code":"VC","country_name":"Saint Vincent and the Grenadines"},{"country_code":"WS","country_name":"Samoa"},{"country_code":"SM","country_name":"San Marino"},{"country_code":"ST","country_name":"Sao Tome and Principe"},{"country_code":"SA","country_name":"Saudi Arabia"},{"country_code":"SN","country_name":"Senegal"},{"country_code":"RS","country_name":"Serbia"},{"country_code":"SC","country_name":"Seychelles"},{"country_code":"SL","country_name":"Sierra Leone"},{"country_code":"SG","country_name":"Singapore"},{"country_code":"SK","country_name":"Slovakia"},{"country_code":"SI","country_name":"Slovenia"},{"country_code":"SB","country_name":"Solomon Islands"},{"country_code":"SO","country_name":"Somalia"},{"country_code":"ZA","country_name":"South Africa"},{"country_code":"ES","country_name":"Spain"},{"country_code":"LK","country_name":"Sri Lanka"},{"country_code":"SH","country_name":"St. Helena"},{"country_code":"PM","country_name":"St. Pierre and Miquelon"},{"country_code":"SD","country_name":"Sudan"},{"country_code":"SR","country_name":"Suriname"},{"country_code":"SJ","country_name":"Svalbard and Jan Mayen Islands"},{"country_code":"SZ","country_name":"Swaziland"},{"country_code":"SE","country_name":"Sweden"},{"country_code":"CH","country_name":"Switzerland"},{"country_code":"SY","country_name":"Syrian Arab Republic"},{"country_code":"TW","country_name":"Taiwan"},{"country_code":"TJ","country_name":"Tajikistan"},{"country_code":"TZ","country_name":"Tanzania"},{"country_code":"TH","country_name":"Thailand"},{"country_code":"TG","country_name":"Togo"},{"country_code":"TK","country_name":"Tokelau"},{"country_code":"TO","country_name":"Tonga"},{"country_code":"TT","country_name":"Trinidad and Tobago"},{"country_code":"TN","country_name":"Tunisia"},{"country_code":"TR","country_name":"Turkey"},{"country_code":"TM","country_name":"Turkmenistan"},{"country_code":"TV","country_name":"Tuvalu"},{"country_code":"UG","country_name":"Uganda"},{"country_code":"UA","country_name":"Ukraine"},{"country_code":"AE","country_name":"United Arab Emirates"},{"country_code":"GB","country_name":"United Kingdom"},{"country_code":"US","country_name":"United States"},{"country_code":"UM","country_name":"United States minor outlying islands"},{"country_code":"UY","country_name":"Uruguay"},{"country_code":"UZ","country_name":"Uzbekistan"},{"country_code":"VU","country_name":"Vanuatu"},{"country_code":"VE","country_name":"Venezuela"},{"country_code":"VN","country_name":"Vietnam"},{"country_code":"VI","country_name":"Virgin Islands (U.S.)"},{"country_code":"WF","country_name":"Wallis and Futuna Islands"},{"country_code":"YE","country_name":"Yemen"},{"country_code":"ZM","country_name":"Zambia"},{"country_code":"ZW","country_name":"Zimbabwe"}]');
                                            totl_preselected_states_saved = '""';

                    
                    var _single_country_code = '';

                    if (jobsearch_sloc_type == '2' || jobsearch_sloc_type == '3') {
                        _single_country_code = jQuery("#countryId").val();
                    } else {
                        if (jobsearch_sloc_country != 0 && contry_preselct != 'by_contry') {
                            _single_country_code = api_scrapper.getCountryCode(jobsearch_sloc_country);
                        }
                    }

                    /*
                    * If location type is single country (cities)
                    * */

                    if (jobsearch_sloc_type == 4) {
                        api_scrapper.getBulkCitiesByStates(totl_preselected_states_saved, jobsearch_sloc_city);
                    }

                    
                                        api_scrapper.readCountryFile(jQuery('#countryId'), '');

                    
                    if (jobsearch_sloc_state != "") {
                        api_scrapper.readStateFile(_single_country_code, jQuery("#stateId"))
                    }

                    if ((jobsearch_sloc_type == 2 || jobsearch_sloc_type == 3) && jobsearch_is_loc_editor != 'jobsearch-location-sett-editor') {
                        if (_single_country_code != "") {
                            api_scrapper.readStateFile(_single_country_code, jQuery("#stateId"))
                        }
                        if (jobsearch_sloc_city != "") {
                            setTimeout(function () {
                                console.info("done first");
                                jQuery('#stateId').trigger('change');
                            }, 4000);
                        }
                    }

                                        /*
                    * Pre select Country
                    * */
                                                        });
                
                /*
                 *countries change event
                 **/

                 jQuery(document).on('change', '#countryId', function () {
                    var _this = jQuery(this);
                    //console.log(_this.val());
                    if (_this.val() != 0 && _this.val() != undefined) {
                        var _country_code = '';
                        if (inc_countries != "") {
                            _country_code = api_scrapper.getCountryCode(_this.val());
                        } else {
                            _country_code = jobsearch_is_admin == 1 && _this.find('option:selected').attr("code") != undefined ? _this.find('option:selected').attr("code") : api_scrapper.getCountryCode(_this.val());
                        }
                        api_scrapper.readStateFile(_country_code, jQuery("#stateId"));
                    }
                });

                /*
                * state change event
                * */

                jQuery(document).on('change', '#stateId', function () {
                    var _this = jQuery(this), _single_country_detail;
                    if (jobsearch_sloc_type == 1) {
                        _single_country_detail = jQuery("#countryId").find('option:selected').val();

                    } else if (jobsearch_sloc_type == '2' || jobsearch_sloc_type == '3') {
                        _single_country_detail = jQuery("#countryId").val();
                    } else {
                        if (jobsearch_sloc_country != 0 && contry_preselct != 'by_contry') {
                            _single_country_detail = api_scrapper.getCountryCode(jobsearch_sloc_country);
                        }
                    }

                    if (_this.val() != 0 && _this.val() != undefined) {
                        if(jQuery('.vc_ui-panel-window-inner').find('.jobsearch-vcloc-dropdwn-con').length>0){
                            _single_country_detail = jQuery(".location2-countries").val();
                        }
                        api_scrapper.readCityOnlyFiles(_single_country_detail, _this.val(), jQuery('#cityId'));
                    }
                });
            </script>
                <div class="jobsearch-employer-dasboard jobsearch-typo-wrap">

        {"id":139,"date":"2017-12-15T11:24:06","date_gmt":"2017-12-15T11:24:06","guid":{"rendered":"https:\/\/careerfy.net\/hireright\/?page_id=609"},"modified":"2017-12-15T11:24:06","modified_gmt":"2017-12-15T11:24:06","slug":"post-new-job","status":"publish","type":"page","link":"https:\/\/gumsum.com\/globalstage1\/post-new-job\/","title":{"rendered":"Post New Job"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row css=&#8221;.vc_custom_1513600322559{padding-top: 70px !important;}&#8221;][vc_column]            <form autocomplete=\"off\" id=\"job-posting-form\"\r\n                  method=\"post\"  class=\"user-logform-err jobsearch-uverify-emp\"                  enctype=\"multipart\/form-data\">\r\n                <div class=\"jobsearch-employer-box-section\">\r\n\r\n                                            <div class=\"jobsearch-profile-title\">\r\n                                                            <h2>Post a New Job<\/h2>\r\n                                                    <\/div>\r\n                        <nav class=\"jobsearch-employer-jobnav\">\r\n                            <ul>\r\n                                <li class=\"active\">\r\n                                    <a href=\"javascript:void(0);\">\r\n                                        <i class=\"jobsearch-icon jobsearch-briefcase-1\"><\/i>\r\n                                        <span>Job Detail<\/span>\r\n                                    <\/a>\r\n                                <\/li>\r\n                                                                <li>\r\n                                    <a href=\"javascript:void(0);\">\r\n                                        <i class=\"jobsearch-icon jobsearch-checked\"><\/i>\r\n                                        <span>Confirmation<\/span>\r\n                                    <\/a>\r\n                                <\/li>\r\n                            <\/ul>\r\n                        <\/nav>\r\n                                                <script>\r\n                                jQuery(document).ready(function () {\r\n                                    var todayDate = new Date().getDate();\r\n                                    jQuery('#jobsearch_job_application_deadline').datetimepicker({\r\n                                        timepicker: true,\r\n                                        format: 'd-m-Y',\r\n                                                                                minDate: new Date(new Date().setDate(todayDate)),\r\n                                        maxDate: new Date(new Date().setDate(todayDate + 30)),\r\n                                        scrollInput: false,\r\n                                        scrollMonth: false,\r\n                                                                            });\r\n                                });\r\n                            <\/script>\r\n                            <ul class=\"jobsearch-row jobsearch-employer-profile-form\">\r\n                                                                <li class=\"jobsearch-column-12\">\r\n                                    <label>Job Title *<\/label>                                    <input id=\"ad-posting-title\"\r\n                                           class=\"jobsearch-req-field\" value=\"\" \r\n                                           name=\"job_title\" type=\"text\"\r\n                                           placeholder=\"Example: php developer\">\r\n                                    <span class=\"field-error\"><\/span>\r\n                                <\/li>\r\n                                                                <li class=\"jobsearch-column-12\">\r\n                                    <label>Job Description *<\/label>                                    <div id=\"wp-job_detail-wrap\" class=\"wp-core-ui wp-editor-wrap tmce-active\"><link rel='stylesheet' id='dashicons-css' href='https:\/\/gumsum.com\/globalstage1\/wp-includes\/css\/dashicons.min.css?ver=6.9.4' type='text\/css' media='all' \/>\n<link rel='stylesheet' id='editor-buttons-css' href='https:\/\/gumsum.com\/globalstage1\/wp-includes\/css\/editor.min.css?ver=6.9.4' type='text\/css' media='all' \/>\n<div id=\"wp-job_detail-editor-tools\" class=\"wp-editor-tools hide-if-no-js\"><div class=\"wp-editor-tabs\"><button type=\"button\" id=\"job_detail-tmce\" aria-pressed=\"true\" class=\"wp-switch-editor switch-tmce\" data-wp-editor-id=\"job_detail\">Visual<\/button>\n<button type=\"button\" id=\"job_detail-html\" class=\"wp-switch-editor switch-html\" data-wp-editor-id=\"job_detail\">Code<\/button>\n<\/div>\n<\/div>\n<div id=\"wp-job_detail-editor-container\" class=\"wp-editor-container\"><div id=\"qt_job_detail_toolbar\" class=\"quicktags-toolbar hide-if-no-js\"><\/div><textarea class=\"jobsearch-req-field wp-editor-area\" rows=\"20\" autocomplete=\"off\" cols=\"40\" name=\"job_detail\" id=\"job_detail\"><\/textarea><\/div>\n<\/div>\n\n                                    <span class=\"field-error\"><\/span>\r\n                                <\/li>\r\n                                                                    <li class=\"jobsearch-column-6\">\r\n                                        <label>Email Address *<\/label>\r\n                                        <input type=\"email\" name=\"reg_user_email\" required class=\"jobsearch-req-field\">\r\n                                        <span class=\"field-error\"><\/span>\r\n                                    <\/li>\r\n                                                                            <li class=\"jobsearch-column-6\">\r\n                                            <label>Username *<\/label>\r\n                                            <input type=\"text\" name=\"reg_user_uname\" required class=\"jobsearch-req-field\">\r\n                                            <span class=\"field-error\"><\/span>\r\n                                        <\/li>\r\n                                                                            <li class=\"jobsearch-column-6\">\r\n                                        <label>Company Name *<\/label>\r\n                                        <input type=\"text\" name=\"pt_user_organization\" required class=\"jobsearch-req-field\">\r\n                                    <\/li>\r\n                                                                        <li class=\"jobsearch-column-4\">\r\n                                        <label>Application Deadline *<\/label>                                        <input type=\"text\" id=\"jobsearch_job_application_deadline\"\r\n                                               class=\"job-aplication-deadline\"\r\n                                               name=\"application_deadline\" >\r\n                                    <\/li>\r\n                                                                            <li class=\"jobsearch-column-4\">\r\n                                            <label>Job Type<\/label>                                            <div class=\"jobsearch-profile-select\">\r\n                                                                                                    <select id=\"job-type-multi\" name=\"job_type[]\"\r\n                                                            class=\"selectize-select\" multiple=\"\"\r\n                                                            placeholder=\"Select Job Types\">\r\n                                                                                                                    <option value=\"124\" >Contract<\/option>\r\n                                                                                                                        <option value=\"24\" >Freelance<\/option>\r\n                                                                                                                        <option value=\"39\" >Full time<\/option>\r\n                                                                                                                        <option value=\"1436\" >Intern<\/option>\r\n                                                                                                                        <option value=\"36\" >Part time<\/option>\r\n                                                                                                                        <option value=\"43\" >Temporary<\/option>\r\n                                                                                                                <\/select>\r\n                                                                                                <\/div>\r\n                                        <\/li>\r\n                                                                            <li class=\"jobsearch-column-12\">\r\n                                                                                <div class=\"jobseach-skills-con\">\r\n                                                                                        <label>Required Skills<\/label>                                            <ul id=\"job-skills\" class=\"jobseach-job-skills\">\r\n                                                                                            <\/ul>\r\n                                                                                                <div class=\"suggested-skills-con\">\r\n                                                        <label>Suggested Skills<\/label>\r\n                                                                                                                <ul class=\"suggested-skills all-suggs-skills\">\r\n                                                                                                                            <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('illustrations');\">illustrations<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('copyriting');\">copyriting<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('VoIP');\">VoIP<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('System admin');\">System admin<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('with the ability to analyze complex data sets');\">with the ability to analyze complex data sets<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('communicate data insights to both technical &amp; non-technical');\">communicate data insights to both technical &amp; non-technical<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('government operations and utilities preferred');\">government operations and utilities preferred<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('Possess a higher level of computer proficiency');\">Possess a higher level of computer proficiency<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('ajex');\">ajex<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('.net');\">.net<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('Access');\">Access<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('Access Database');\">Access Database<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('Account Management');\">Account Management<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('Accounting');\">Accounting<\/li>\r\n                                                                                                                                <li class=\"skills-cloud\" onclick=\"return jobsearch_add_skill_tolist('Accounting Software');\">Accounting Software<\/li>\r\n                                                                                                                        <\/ul>\r\n                                                    <\/div>\r\n                                                                                            <\/div>\r\n                                        <script>\r\n                                            jQuery(document).on('change', '#job-sector', function () {\r\n                                                var sector_id = jQuery(this).val();\r\n                                                var skills_area_con = jQuery('.suggested-skills-con');\r\n                                                skills_area_con.find('.no-sugge-skills').hide();\r\n                                                skills_area_con.find('.all-suggs-skills').hide();\r\n                                                skills_area_con.find('.suggested-skills').hide();\r\n                                                if (skills_area_con.find('.suggested-skills-sector-' + sector_id).length > 0) {\r\n                                                    skills_area_con.find('.suggested-skills-sector-' + sector_id).show();\r\n                                                } else {\r\n                                                    skills_area_con.find('.all-suggs-skills').show();\r\n                                                }\r\n                                            });\r\n                                            jQuery(document).on('change', '#job-sector-multi', function () {\r\n                                                var sector_ids = jQuery(this).val();\r\n                                                var skills_area_con = jQuery('.suggested-skills-con');\r\n                                                skills_area_con.find('.no-sugge-skills').hide();\r\n                                                skills_area_con.find('.all-suggs-skills').hide();\r\n                                                skills_area_con.find('.suggested-skills').hide();\r\n                                                if (sector_ids.length > 0) {\r\n                                                    for (var sec_i = 0; sec_i <= sector_ids.length; sec_i++) {\r\n                                                        var sector_id = sector_ids[sec_i];\r\n                                                        skills_area_con.find('.suggested-skills-sector-' + sector_id).show();\r\n                                                    }\r\n                                                } else {\r\n                                                    skills_area_con.find('.all-suggs-skills').show();\r\n                                                }\r\n                                            });\r\n                                        <\/script>\r\n                                    <\/li>\r\n                                                                        <li class=\"jobsearch-column-6\">\r\n                                        <label>Job Apply Type<\/label>                                        <div class=\"jobsearch-profile-select\">\r\n                                            <select id=\"jobsearch_job_apply_type\"                                                    class=\"selectize-select\"\r\n                                                    name=\"job_apply_type\">\r\n                                                                                                    <option value=\"internal\" >Internal<\/option>\r\n                                                                                                        <option value=\"external\" >External URL<\/option>\r\n                                                                                                    <option value=\"with_email\" >By Email<\/option>\r\n                                                                                            <\/select>\r\n                                        <\/div>\r\n                                    <\/li>\r\n                                                                    <li id=\"job-apply-external-url\" class=\"jobsearch-column-6\"\r\n                                        style=\"display: none;\">\r\n                                        <label>External URL for Apply Job *<\/label>\r\n                                        <input type=\"text\" name=\"job_apply_url\"\r\n                                               class=\"external-url-input\" >\r\n                                    <\/li>\r\n                                                                    <li id=\"job-apply-by-email\" class=\"jobsearch-column-6\"\r\n                                        style=\"display: none;\">\r\n                                        <label>Job Apply Email *<\/label>\r\n                                        <input type=\"text\" name=\"job_apply_email\"\r\n                                               class=\"apply-email-input\"\r\n                                            value=\"\">\r\n                                    <\/li>\r\n                                                                        <li class=\"jobsearch-column-12\">\r\n                                        <label>Salary<\/label>                                        <div class=\"salary-type\">\r\n                                            <div class=\"jobsearch-profile-select\">\r\n                                                <select name=\"job_salary_type\" class=\"selectize-select\">\r\n                                                                                                                <option value=\"type_1\" >Monthly<\/option>\r\n                                                                                                                        <option value=\"type_2\" >Weekly<\/option>\r\n                                                                                                                        <option value=\"type_3\" >Hourly<\/option>\r\n                                                                                                                        <option value=\"type_4\" >Fixed<\/option>\r\n                                                                                                                        <option value=\"type_5\" >Yearly<\/option>\r\n                                                                                                                        <option value=\"negotiable\" >Negotiable<\/option>\r\n                                                                                                            <\/select>\r\n                                            <\/div>\r\n                                        <\/div>\r\n\r\n                                        <div class=\"salary-input salary-input-fordev\"\r\n                                             style=\"display: block;\">\r\n                                                                                        <div class=\"min-salary\">\r\n                                                <span>&#36;<\/span>\r\n                                                <input type=\"number\" min=\"0\" step=\"1\" onkeypress=\"return isNumberKey(this, event);\" placeholder=\"Min\"\r\n                                                       name=\"job_salary\" value=\"\">\r\n                                            <\/div>\r\n                                            <div class=\"max-salary\">\r\n                                                <span>&#36;<\/span>\r\n                                                <input type=\"number\" min=\"0\" step=\"1\" onkeypress=\"return isNumberKey(this, event);\" placeholder=\"Max\"\r\n                                                       name=\"job_max_salary\" value=\"\">\r\n                                            <\/div>\r\n                                        <\/div>\r\n                                    <\/li>\r\n                                                                <\/ul>\r\n                                            <\/div>\r\n\r\n                \r\n                <div class=\"jobsearch-employer-box-section custom_fields_skillid\">\r\n                <div class=\"jobsearch-profile-title\"><h2>Other Information<\/h2><\/div>\r\n                <ul class=\"jobsearch-row jobsearch-employer-profile-form\">        <li class=\"jobsearch-column-6\">\r\n            <label>Career Level<\/label>                    <div class=\"jobsearch-profile-select\">\r\n                        <input type=\"hidden\" name=\"career-level[]\" value=\"\" \/>\r\n                        <select multiple=\"multiple\" name=\"career-level[]\"\r\n                            placeholder=\"Career Level\"\r\n                            class=\" selectize-select\">\r\n                            <option value=\"\">Career Level<\/option><option  value=\"entry-level\"> Entry-level<\/option><option  value=\"intermediate-or-experienced(senior-staff)\">Intermediate or experienced (senior staff)<\/option><option  value=\"first-level-management\">First-level management<\/option><option  value=\"middle-management\">Middle management<\/option><option  value=\"executive-or-senior-management\">Executive or senior management<\/option>                        <\/select>\r\n                                            <\/div>\r\n                            <\/li>\r\n                <li class=\"jobsearch-column-6\">\r\n            <label>Experience *<\/label>                    <div class=\"jobsearch-profile-select\">\r\n                        <input type=\"hidden\" name=\"experience\" value=\"\" \/>\r\n                        <select name=\"experience\"\r\n                            placeholder=\"Experience\"\r\n                            class=\"Experience selectize-select\" required=\"required\">\r\n                            <option value=\"\">Experience<\/option><option  value=\"intern\">Intern<\/option><option  value=\"fresher\">Fresher<\/option><option  value=\"less-than-1-year\">Less Than 1 Year<\/option><option  value=\"2-years\">2 Years<\/option><option  value=\"3-years\">3 Years<\/option><option  value=\"4-years\">4 Years<\/option><option  value=\"5-years\">5 Years<\/option><option  value=\"6-years\">6 Years<\/option><option  value=\"7-years\">7 Years<\/option><option  value=\"8-years\">8 Years<\/option><option  value=\"9-years\">9 Years<\/option><option  value=\"10-years+\">10 Years +<\/option>                        <\/select>\r\n                                            <\/div>\r\n                            <\/li>\r\n                <li class=\"jobsearch-column-6\">\r\n            <label>Industry *<\/label>                    <div class=\"jobsearch-profile-select\">\r\n                        <input type=\"hidden\" name=\"industry\" value=\"\" \/>\r\n                        <select name=\"industry\"\r\n                            placeholder=\"Industry\"\r\n                            class=\" selectize-select\" required=\"required\">\r\n                            <option value=\"\">Industry<\/option><option  value=\"management\">Management<\/option><option  value=\"finance\">Finance<\/option><option  value=\"banking\">Banking<\/option><option  value=\"information-technology(it)\">Information Technology (IT)<\/option><option  value=\"healthcare\">Healthcare<\/option><option  value=\"education\">Education<\/option><option  value=\"accounting\">Accounting<\/option><option  value=\"pharmaceutical\">Pharmaceutical<\/option><option  value=\"engineering\">Engineering<\/option><option  value=\"real-estate\"> Real Estate<\/option><option  value=\"higher-education\">Higher Education<\/option><option  value=\"sales\">Sales<\/option><option  value=\"government\">Government<\/option><option  value=\"energy\">Energy<\/option><option  value=\"retail\">Retail<\/option><option  value=\"manufacturing\">Manufacturing<\/option><option  value=\"architecture\">Architecture<\/option><option  value=\"human-resources\">Human Resources<\/option><option  value=\"nonprofit\">Nonprofit<\/option><option  value=\"transportation\">Transportation<\/option><option  value=\"hospitality\">Hospitality<\/option>                        <\/select>\r\n                                            <\/div>\r\n                            <\/li>\r\n                <li class=\"jobsearch-column-6\">\r\n            <label>Qualifications *<\/label>                    <div class=\"jobsearch-profile-select\">\r\n                        <input type=\"hidden\" name=\"qualifications\" value=\"\" \/>\r\n                        <select name=\"qualifications\"\r\n                            placeholder=\"Qualifications\"\r\n                            class=\"qualifications selectize-select\" required=\"required\">\r\n                            <option value=\"\">Qualifications<\/option><option  value=\"certificate\">Certificate<\/option><option  value=\"diploma\">Diploma <\/option><option  value=\"associate\">Associate<\/option><option  value=\"degree-bachelor\">Degree Bachelor<\/option><option  value=\"masters-degree\">Master\u2019s Degree<\/option><option  value=\"medical\">Medical<\/option><option  value=\"doctorate\">Doctorate<\/option>                        <\/select>\r\n                                            <\/div>\r\n                            <\/li>\r\n        \r\n                <\/ul>\r\n                <\/div>            <div class=\"jobsearch-employer-box-section\">\r\n                                    <div class=\"jobsearch-profile-title\"><h2>Apply Job Questions<\/h2><\/div>\r\n                                    <div class=\"jobsearch-applyquests-dash\">\r\n                    <div class=\"dash-applyquests-apendcon\">\r\n                                            <\/div>\r\n                                            <div class=\"addnew-questtypes-btnscon\">\r\n                            <div class=\"select-questype-hding\"><strong>Select Question Type<\/strong><\/div>\r\n                            <div class=\"addnew-questtypes-btnsiner\">\r\n                                                                    <a href=\"javascript:void();\" class=\"aplyquest-type-slectbtn active-type-itm\" data-type=\"dropdown\">\r\n                                        <i class=\"jobsearch-icon jobsearch-list\"><\/i><span>Dropdown<\/span>\r\n                                    <\/a>\r\n                                                                        <a href=\"javascript:void();\" class=\"aplyquest-type-slectbtn\" data-type=\"checkboxes\">\r\n                                        <i class=\"jobsearch-icon jobsearch-check-square\"><\/i><span>Checkboxes<\/span>\r\n                                    <\/a>\r\n                                                                        <a href=\"javascript:void();\" class=\"aplyquest-type-slectbtn\" data-type=\"number\">\r\n                                        <i class=\"jobsearch-icon jobsearch-newspaper\"><\/i><span>Number<\/span>\r\n                                    <\/a>\r\n                                                                        <a href=\"javascript:void();\" class=\"aplyquest-type-slectbtn\" data-type=\"text\">\r\n                                        <i class=\"jobsearch-icon jobsearch-paper\"><\/i><span>Text<\/span>\r\n                                    <\/a>\r\n                                                                        <a href=\"javascript:void();\" class=\"aplyquest-type-slectbtn\" data-type=\"textarea\">\r\n                                        <i class=\"jobsearch-icon jobsearch-credit-card\"><\/i><span>Textarea<\/span>\r\n                                    <\/a>\r\n                                                                        <a href=\"javascript:void();\" class=\"aplyquest-type-slectbtn\" data-type=\"upload\">\r\n                                        <i class=\"jobsearch-icon jobsearch-upload\"><\/i><span>Upload Field<\/span>\r\n                                    <\/a>\r\n                                                                <\/div>\r\n                            <div class=\"addnew-aplyquestbtn-con\">\r\n                                <button class=\"add-new-applyquestbtn\">Add new Question<\/button>\r\n                            <\/div>\r\n                        <\/div>\r\n                                        <\/div>\r\n            <\/div>\r\n            <div class=\"jobsearch-employer-box-section\">                <script type=\"text\/javascript\">\r\n                    var jobsearch_sloc_country = \"\";\r\n                    var jobsearch_sloc_state = \"\";\r\n                    var jobsearch_sloc_city = \"\";\r\n                    var jobsearch_is_admin = \"\";\r\n                <\/script>\r\n                                <div class=\"jobsearch-profile-title location_address_skillid\">\r\n                    <h2>Address \/ Location<\/h2>\r\n                <\/div>\r\n                                <ul class=\"jobsearch-row jobsearch-employer-profile-form\" style=\"background:none; padding:0;\">\r\n                                                <li class=\"jobsearch-column-6\" data-randid=\"52749745\" style=\"display: inline-block;\">\r\n                                <label>Country<\/label>                                <div id=\"jobsearch-gdapilocs-contrycon\" data-val=\"\"\r\n                                    class=\"jobsearch-profile-select\">\r\n                                    <select name=\"jobsearch_field_location_location1\"\r\n                                            data-randid=\"52749745\"\r\n                                            class=\"countries\"\r\n                                            id=\"countryId\">\r\n                                        <option value=\"\">Select Country<\/option>\r\n                                    <\/select>\r\n                                <\/div>\r\n                            <\/li>\r\n                                                                            <li class=\"jobsearch-column-6\" data-randid=\"52749745\" style=\"display: inline-block;\">\r\n                                <label>State<\/label>                                                                <div id=\"jobsearch-gdapilocs-statecon\" data-val=\"\"\r\n                                    class=\"jobsearch-profile-select\">\r\n                                    <select name=\"jobsearch_field_location_location2\"\r\n                                            data-randid=\"52749745\"\r\n                                            class=\"states\"\r\n                                            id=\"stateId\">\r\n                                        <option value=\"\">Select State<\/option>\r\n                                    <\/select>\r\n                                <\/div>\r\n                            <\/li>\r\n                                                                            <li class=\"jobsearch-column-6\" data-randid=\"52749745\" style=\"display: inline-block;\">\r\n                                <label>City<\/label>                                <div id=\"jobsearch-gdapilocs-citycon\" data-val=\"\"\r\n                                    class=\"jobsearch-profile-select\">\r\n                                    <select name=\"jobsearch_field_location_location3\"\r\n                                            data-randid=\"52749745\"\r\n                                            class=\"cities order-alpha\"\r\n                                            id=\"cityId\">\r\n                                        <option value=\"\">Select City<\/option>\r\n                                    <\/select>\r\n                                <\/div>\r\n                            <\/li>\r\n                                                    <li class=\"jobsearch-column-6\" >\r\n                            <label>Postal Code<\/label>                            <input type=\"hidden\" name=\"jobsearch_location_old_postalcode\" value=\"\">\r\n                            <input id=\"jobsearch_loc_postalcode_52749745\" type=\"text\" name=\"jobsearch_field_location_postalcode\" placeholder=\"Postal Code\" value=\"\">\r\n                        <\/li>\r\n                                            <li class=\"jobsearch-column-12\" >\r\n                        <label>Full Address<\/label>                                                    <div class=\"jobsearch_searchloc_div\">\r\n                                <span class=\"loc-loader\"><\/span>\r\n                                <input type=\"text\" id=\"jobsearch_location_address_52749745\"\r\n                                    name=\"jobsearch_field_location_address\"\r\n                                    class=\"jobsearch_search_location_field \"\r\n                                    placeholder=\"Enter a location\"\r\n                                    value=\"\">\r\n                            <\/div>\r\n                                                <input id=\"check_loc_addr_52749745\" type=\"hidden\" value=\"\">\r\n                    <\/li>\r\n\r\n                    \r\n                    <li class=\"jobsearch-column-4 dash-maploc-latfield\" >\r\n                        <label>Latitude<\/label>                        <input type=\"text\" id=\"jobsearch_location_lat_52749745\" name=\"jobsearch_field_location_lat\" value=\"38.90253\" \/>                    <\/li>\r\n                    <li class=\"jobsearch-column-4 dash-maploc-lngfield\" >\r\n                        <label>Longitude<\/label>                        <input type=\"text\" id=\"jobsearch_location_lng_52749745\" name=\"jobsearch_field_location_lng\" value=\"-77.039386\" \/>                    <\/li>\r\n                    <li class=\"jobsearch-column-4 dash-maploc-zoomfield\" >\r\n                        <label>Zoom<\/label>                        <input type=\"text\" id=\"jobsearch_location_zoom_52749745\" name=\"jobsearch_field_location_zoom\" value=\"12\" \/>                    <\/li>\r\n                                        <li class=\"jobsearch-column-12\" >\r\n                        <div class=\"jobsearch-profile-map\">\r\n                            <div id=\"jobsearch-map-52749745\"\r\n                                style=\"width: 100%; height: 250px;\"><\/div>\r\n                        <\/div>\r\n                        <span class=\"jobsearch-short-message\" >For the precise location, you can drag and drop the pin.<\/span>\r\n                    <\/li>\r\n                <\/ul>\r\n                <\/div>                <script>\r\n                    jQuery(document).ready(function () {\r\n                        const observer = new MutationObserver(function (mutationsList, observer) {\r\n                            for (const mutation of mutationsList) {\r\n                                if (mutation.attributeName == 'autocomplete' && jQuery(mutation.target).attr('autocomplete') == 'off') {\r\n                                    observer.disconnect();\r\n                                    jQuery(mutation.target).attr('autocomplete', 'none');\r\n                                }\r\n                            }\r\n                        });\r\n\r\n                        observer.observe(document.querySelector('select'), { attributes: true });\r\n                        observer.observe(document.querySelector('input'), { attributes: true });\r\n                    });\r\n                                        var map;\r\n                    var currentMarkers;\r\n                                        jQuery('body').on('click', function (e) {\r\n                        var this_dom = e.target;\r\n                        var thisdom_obj = jQuery(this_dom);\r\n                        if (thisdom_obj.parents('#jobsearch-locaddres-suggscon').length > 0) {\r\n                            \/\/\r\n                        } else {\r\n                            jQuery('#jobsearch-locaddres-suggscon').find('.jobsearch_location_autocomplete').hide();\r\n                        }\r\n                    });\r\n                    var geocoder52749745;\r\n                    var _the_adres_input = '';\r\n                    jQuery('#jobsearch_lochiden_addr_52749745').keyup(function () {\r\n                        _the_adres_input = jQuery(this).val();\r\n                        if (_the_adres_input.length > 1) {\r\n                            geocoder52749745.query(_the_adres_input);\r\n                        }\r\n                    });\r\n                    jQuery(document).ready(function () {\r\n                        mapboxgl.accessToken = 'pk.eyJ1Ijoic3VwcG9ydGdsb2JhbGp1cGl0ZXIiLCJhIjoiY2w0eWE2bmVoMDhiMTNqcDh4cXUxNzl5aSJ9.HUIHz6DwoMO9WvpoHs8eYQ';\r\n                                                map = new mapboxgl.Map({\r\n                            container: 'jobsearch-map-52749745',\r\n                            style: 'mapbox:\/\/styles\/mapbox\/streets-v11',\r\n                            center: [-77.039386, 38.90253],\r\n                            scrollZoom: false,\r\n                            zoom: 12                        });\r\n                        currentMarkers = [];\r\n                        geocoder52749745 = new MapboxGeocoder({\r\n                            accessToken: mapboxgl.accessToken,\r\n                            marker: false,\r\n                            \/\/flyTo: false,\r\n                            mapboxgl: mapboxgl\r\n                        });\r\n                        var selected_contries = jobsearch_plugin_vars.sel_countries_json;\r\n                        if (selected_contries != '') {\r\n                            var selected_contries_tojs = jQuery.parseJSON(selected_contries);\r\n                            var sel_countries_str = selected_contries_tojs.join();\r\n                            geocoder52749745['countries'] = sel_countries_str;\r\n                        }\r\n                        document.getElementById('jobsearch_location_address_52749745').appendChild(geocoder52749745.onAdd(map));\r\n\r\n                        \/\/\r\n                        var predictionsDropDown = jQuery('<div class=\"jobsearch_location_autocomplete\"><\/div>').appendTo(jQuery('#jobsearch-locaddres-suggscon'));\r\n                        geocoder52749745.on('results', function (predictions) {\r\n                            \/\/console.log(obj);\r\n                            \/\/console.log(obj.features);\r\n                            var predic_line_html = '';\r\n                            if (typeof predictions.features !== 'undefined' && predictions.features.length > 0) {\r\n\r\n                                var predFeats = predictions.features;\r\n                                jQuery.each(predFeats, function (i, prediction) {\r\n                                    var placename_str = prediction.place_name;\r\n                                    var toshow_placename_str = placename_str.split(_the_adres_input).join('<strong class=\"jobsearch-color\">' + _the_adres_input + '<\/strong>');\r\n                                    predic_line_html += '<div class=\"jobsearch_google_suggestions\"><i class=\"icon-location-arrow\"><\/i> ' + toshow_placename_str + '<span style=\"display:none\">' + placename_str + '<\/span><\/div>';\r\n                                });\r\n                            }\r\n                            predictionsDropDown.empty();\r\n                            predictionsDropDown.append(predic_line_html);\r\n                            predictionsDropDown.show();\r\n                        });\r\n                        \/\/\r\n                        predictionsDropDown.delegate('div', 'click', function () {\r\n                            var predic_loc_val = jQuery(this).find('span').html();\r\n                            jQuery('#jobsearch_lochiden_addr_52749745').val(predic_loc_val);\r\n                            var map_center_coords = [];\r\n                            var map_addrapi_uri = 'https:\/\/api.mapbox.com\/geocoding\/v5\/mapbox.places\/' + encodeURI(predic_loc_val) + '.json?access_token=pk.eyJ1Ijoic3VwcG9ydGdsb2JhbGp1cGl0ZXIiLCJhIjoiY2w0eWE2bmVoMDhiMTNqcDh4cXUxNzl5aSJ9.HUIHz6DwoMO9WvpoHs8eYQ';\r\n                            jobsearch_common_getJSON(map_addrapi_uri, function (new_loc_status, new_loc_response) {\r\n                                if (typeof new_loc_response === 'object') {\r\n                                    map_center_coords = new_loc_response.features[0].geometry.coordinates;\r\n                                    if (map_center_coords !== 'undefined') {\r\n                                        map.flyTo({\r\n                                            center: map_center_coords,\r\n                                        });\r\n                                    }\r\n                                }\r\n                                if (map_center_coords.length > 1) {\r\n                                    var map_center_lng = map_center_coords[0];\r\n                                    var map_center_lat = map_center_coords[1];\r\n                                    document.getElementById(\"jobsearch_location_lat_52749745\").value = map_center_lat;\r\n                                    document.getElementById(\"jobsearch_location_lng_52749745\").value = map_center_lng;\r\n                                    \/\/ remove markers\r\n                                    if (currentMarkers !== null) {\r\n                                        for (var i = currentMarkers.length - 1; i >= 0; i--) {\r\n                                            currentMarkers[i].remove();\r\n                                        }\r\n                                    }\r\n                                    \/\/\r\n                                    var new_marker = new mapboxgl.Marker({\r\n                                        draggable: true\r\n                                    }).setLngLat(map_center_coords).addTo(map);\r\n                                    currentMarkers.push(new_marker);\r\n                                    new_marker.on('dragend', function () {\r\n                                        var lngLat = new_marker.getLngLat();\r\n                                        document.getElementById(\"jobsearch_location_lat_52749745\").value = lngLat.lat;\r\n                                        document.getElementById(\"jobsearch_location_lng_52749745\").value = lngLat.lng;\r\n                                    });\r\n                                }\r\n                            });\r\n                            predictionsDropDown.hide();\r\n                        });\r\n\r\n                        \/\/\r\n                        map.addControl(new mapboxgl.NavigationControl({\r\n                            showCompass: false\r\n                        }), 'top-right');\r\n                        var marker = new mapboxgl.Marker({\r\n                            draggable: true\r\n                        }).setLngLat([-77.039386, 38.90253]).addTo(map);\r\n                        currentMarkers.push(marker);\r\n\r\n                        function onDragEnd52749745() {\r\n                            var lngLat = marker.getLngLat();\r\n                            document.getElementById(\"jobsearch_location_lat_52749745\").value = lngLat.lat;\r\n                            document.getElementById(\"jobsearch_location_lng_52749745\").value = lngLat.lng;\r\n                        }\r\n\r\n                        marker.on('dragend', onDragEnd52749745);\r\n\r\n                        function onZoomMap52749745(objZoom) {\r\n                            if (typeof objZoom.target._easeOptions.zoom !== 'undefined') {\r\n                                var getZoomLvel = objZoom.target._easeOptions.zoom;\r\n                                document.getElementById(\"jobsearch_location_zoom_52749745\").value = getZoomLvel;\r\n                            }\r\n                        }\r\n\r\n                        map.on('zoom', onZoomMap52749745);\r\n                    });\r\n                                    <\/script>\r\n                                <script>\r\n                    jQuery(document).ready(function () {\r\n                        if (jQuery('.location_location1').length > 0) {\r\n                            jQuery('.location_location1').trigger('change');\r\n                        }\r\n                    });\r\n                <\/script>\r\n                                            <input type=\"hidden\" name=\"pt_user_role\" value=\"jobsearch_employer\">\r\n                                                <input type=\"hidden\" name=\"user_job_posting\" value=\"1\">\r\n                                        <div class=\"terms-priv-chek-con\">\r\n                    <p>\r\n                        <input type=\"checkbox\" name=\"terms_cond_check\" >\r\n                        <span class=\"terms-priv-check-inner\">\r\n                            By clicking checkbox, you agree to our <a href=\"https:\/\/gumsum.com\/globalstage1\/terms-and-conditions\/\" target=\"_blank\">Terms and Conditions<\/a> and <a href=\"https:\/\/gumsum.com\/globalstage1\/privacy-policy\/\" target=\"_blank\">Privacy Policy<\/a>                        <\/span>\r\n                    <\/p>\r\n                <\/div>\r\n                                            <input type=\"submit\" class=\"jobsearch-employer-profile-submit jobsearch-postjob-btn\" value=\"Post Job\">\r\n                            <div class=\"jobsearch-postjob-msglodrcon\" style=\"display: inline-block; width: 100%;margin: 10px 0 0;\"><\/div>            <\/form>\r\n                <\/div>\r\n            <div class=\"jobsearch-modal fade\" id=\"jobsearch-modal-verify-empregacc\">\r\n            <div class=\"modal-inner-area\">&nbsp;<\/div>\r\n            <div class=\"modal-content-area\">\r\n                <div class=\"modal-box-area\">\r\n                    <div class=\"jobsearch-modal-title-box\">\r\n                        <h2>Account Activation<\/h2>\r\n                        <span class=\"modal-close\"><i class=\"fa fa-times\"><\/i><\/span>\r\n                    <\/div>\r\n                    <div class=\"jobsearch-send-message-form\">\r\n                        <form autocomplete=\"off\" method=\"post\" class=\"emp-activeacc-submit-form\">\r\n                            <div class=\"jobsearch-user-form\">\r\n                                                                <p>Before you can post job, you must activate your account with the code sent to your email address. If you did not receive this email, please check your junk\/spam folder.<\/p>\r\n                                                                <ul class=\"email-fields-list\">\r\n                                    <li>\r\n                                        <label>\r\n                                            Your Email:\r\n                                        <\/label>\r\n                                        <div class=\"input-field\">\r\n                                            <input type=\"text\" autocomplete=\"off\" name=\"user_email\" readonly>\r\n                                        <\/div>\r\n                                    <\/li>\r\n                                    <li>\r\n                                        <label>\r\n                                            Activation Code:\r\n                                        <\/label>\r\n                                        <div class=\"input-field\">\r\n                                            <input type=\"text\" autocomplete=\"off\" name=\"activ_code\">\r\n                                        <\/div>\r\n                                    <\/li>\r\n                                    <li>\r\n                                        <div class=\"input-field-submit\">\r\n                                            <input type=\"hidden\" name=\"pt_user_role\" value=\"jobsearch_employer\">\r\n                                            <input type=\"hidden\" name=\"_nonce\" value=\"bbfe67d8b2\">\r\n                                            <input type=\"hidden\" name=\"action\" value=\"jobsearch_verify_user_email_addr_onreg\">\r\n                                            <input type=\"submit\" value=\"Activate Account\"\/>\r\n                                            <span class=\"loader-box\"><\/span>\r\n                                        <\/div>\r\n                                    <\/li>\r\n                                <\/ul>\r\n                                <div class=\"message-opbox\" style=\"display: none; float: left;width: 100%;margin: 10px 0 0;\"><\/div>\r\n                            <\/div>\r\n                        <\/form>\r\n                    <\/div>\r\n\r\n                <\/div>\r\n            <\/div>\r\n        <\/div>\r\n        [\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row css=&#8221;.vc_custom_1513600322559{padding-top: 70px !important;}&#8221;][vc_column][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":1,"featured_media":-1,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-139","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Post New Job - Global Jupiter<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/gumsum.com\/globalstage1\/post-new-job\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Post New Job - Global Jupiter\" \/>\n<meta property=\"og:description\" content=\"[vc_row css=&#8221;.vc_custom_1513600322559{padding-top: 70px !important;}&#8221;][vc_column][\/vc_column][\/vc_row]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/gumsum.com\/globalstage1\/post-new-job\/\" \/>\n<meta property=\"og:site_name\" content=\"Global Jupiter\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/gumsum.com\/globalstage1\/post-new-job\/\",\"url\":\"https:\/\/gumsum.com\/globalstage1\/post-new-job\/\",\"name\":\"Post New Job - Global Jupiter\",\"isPartOf\":{\"@id\":\"https:\/\/gumsum.com\/globalstage1\/#website\"},\"datePublished\":\"2017-12-15T11:24:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/gumsum.com\/globalstage1\/post-new-job\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/gumsum.com\/globalstage1\/post-new-job\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/gumsum.com\/globalstage1\/post-new-job\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/gumsum.com\/globalstage1\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Post New Job\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/gumsum.com\/globalstage1\/#website\",\"url\":\"https:\/\/gumsum.com\/globalstage1\/\",\"name\":\"Global Jupiter\",\"description\":\"HR Business Partner\",\"publisher\":{\"@id\":\"https:\/\/gumsum.com\/globalstage1\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/gumsum.com\/globalstage1\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/gumsum.com\/globalstage1\/#organization\",\"name\":\"gumsum.com\/gj\",\"url\":\"https:\/\/gumsum.com\/globalstage1\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/gumsum.com\/globalstage1\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/gumsum.com\/globalstage1\/wp-content\/uploads\/2022\/03\/GLogo.png\",\"contentUrl\":\"https:\/\/gumsum.com\/globalstage1\/wp-content\/uploads\/2022\/03\/GLogo.png\",\"width\":1710,\"height\":345,\"caption\":\"gumsum.com\/gj\"},\"image\":{\"@id\":\"https:\/\/gumsum.com\/globalstage1\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Post New Job - Global Jupiter","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/gumsum.com\/globalstage1\/post-new-job\/","og_locale":"en_US","og_type":"article","og_title":"Post New Job - Global Jupiter","og_description":"[vc_row css=&#8221;.vc_custom_1513600322559{padding-top: 70px !important;}&#8221;][vc_column][\/vc_column][\/vc_row]","og_url":"https:\/\/gumsum.com\/globalstage1\/post-new-job\/","og_site_name":"Global Jupiter","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/gumsum.com\/globalstage1\/post-new-job\/","url":"https:\/\/gumsum.com\/globalstage1\/post-new-job\/","name":"Post New Job - Global Jupiter","isPartOf":{"@id":"https:\/\/gumsum.com\/globalstage1\/#website"},"datePublished":"2017-12-15T11:24:06+00:00","breadcrumb":{"@id":"https:\/\/gumsum.com\/globalstage1\/post-new-job\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gumsum.com\/globalstage1\/post-new-job\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/gumsum.com\/globalstage1\/post-new-job\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/gumsum.com\/globalstage1\/"},{"@type":"ListItem","position":2,"name":"Post New Job"}]},{"@type":"WebSite","@id":"https:\/\/gumsum.com\/globalstage1\/#website","url":"https:\/\/gumsum.com\/globalstage1\/","name":"Global Jupiter","description":"HR Business Partner","publisher":{"@id":"https:\/\/gumsum.com\/globalstage1\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gumsum.com\/globalstage1\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/gumsum.com\/globalstage1\/#organization","name":"gumsum.com\/gj","url":"https:\/\/gumsum.com\/globalstage1\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gumsum.com\/globalstage1\/#\/schema\/logo\/image\/","url":"https:\/\/gumsum.com\/globalstage1\/wp-content\/uploads\/2022\/03\/GLogo.png","contentUrl":"https:\/\/gumsum.com\/globalstage1\/wp-content\/uploads\/2022\/03\/GLogo.png","width":1710,"height":345,"caption":"gumsum.com\/gj"},"image":{"@id":"https:\/\/gumsum.com\/globalstage1\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/gumsum.com\/globalstage1\/wp-json\/wp\/v2\/pages\/139","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gumsum.com\/globalstage1\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/gumsum.com\/globalstage1\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/gumsum.com\/globalstage1\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gumsum.com\/globalstage1\/wp-json\/wp\/v2\/comments?post=139"}],"version-history":[{"count":0,"href":"https:\/\/gumsum.com\/globalstage1\/wp-json\/wp\/v2\/pages\/139\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/gumsum.com\/globalstage1\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/gumsum.com\/globalstage1\/wp-json\/wp\/v2\/media?parent=139"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}