CINXE.COM
Chem R&D 2025 | Chemistry Research and Development Conference | Chemistry Conference
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js'></script> <script> $(document).ready(function() { var Participants; var registration_price; var registration_category; var Final_Reg_price = 0; var socialnetwork = 0; var No_of_Socialnetworking = 0; var No_of_accompanying = 0; var accompanying_price = 0; var accommodation_price = 0; var accommodation_category = ""; var No_of_days = 0; var total_price = 0; var discount_code = ""; var discount_applied = false; var discount_reg_price = 0; var discount_acc_price = 0; var discount_price = 0; var Live; var before_discount_total = 0; var discountedPrice = 0; var discount_category = ""; var check_in_date = ""; var check_out_date = ""; var Sponsor_price = 0; var Sponsor_category; var Sponsor_others; var Sponsor_disount = 0; var Sponsor_disount_code; var Sponsor_disount_applied = false; var Sponsor_disounted_price; var sponsorship_price; var form_reg_radio = $("input[id='reg_radio']").map(function() { return $(this).attr('name'); }).get(); var reg_radio_value = 'r2'; $("input[name='" + reg_radio_value + "']").prop("disabled", false); $("input[type='radio']").each(function() { var name = $(this).attr("name"); if (!reg_radio_value.includes(name)) { (reg_radio_value); $(this).prop("disabled", true); $("input[name='r5']").prop("disabled", false); } }); if (form_reg_radio.includes(reg_radio_value)) { $("input[name='" + form_reg_radio + "']").prop("disabled", true); } $("input[name='reg_check'][value='live']").prop("checked", true); $("input[name='reg_check'][value='not live']").prop("disabled", true); Live = $("input[name='reg_check'][value='live']").val(); check_box(); // $("#socialnetwork").val("0"); if (Participants != 0) { Participants = $("#participants_id").val(); getReg_price(); } if (No_of_Socialnetworking != 0) { No_of_Socialnetworking = $("#socialnetwork").val(); getSocial_networking_price(); } if (accompanying_price != 0) { accompanying_price = $("#accompanying").val(); get_accompanying_value(); } total(); $("input[name='reg_check'][value='live']").change(function() { check_box(); }); $('#participants_id').change(function() { getParticipants_value(); }); $('input[type=radio][name="r2"]').change(function() { getReg_price(); }); $('#socialnetwork').change(function() { getSocial_networking_price(); }); $('#accompanying').change(function() { get_accompanying_value(); }); $('input[type=radio][name=r5]').change(function() { get_accommodation_value(); }); $('#numberof_days').change(function() { number_of_days(); checkincheckout(); }); $('#amount').change(function() { Sponsor_price = $("#amount").val(); if (Sponsor_others) { Sponsor_price = $("#amount").val(); if ((Sponsor_price != "") && (Sponsor_disount_applied)) { spn_discount(); } } }); $('#discountregistration').change(function() { if (this.checked) { $('#display_discountinput').css("display", "block"); } else { $('#display_discountinput').css("display", "none"); } }); $('#form-check input[type="checkbox"]').change(function() { $('#collapseExample').toggle(this.checked); }); $('#extra_accommodation').change(function() { if (this.checked) { $('#acd_extrabox').css("display", "block"); } else { $('#acd_extrabox').css("display", "none"); } if ($('#extra_accommodation').prop('checked')) { number_of_days(); } }); $("#dateof_accommodation").on("change", function() { checkincheckout(); }); $("#spn_discount_code").change(function() { Sponsor_disount_code = $("#spn_discount_code").val(); if (Sponsor_disount_code != "") { Sponsor_disount_applied = true; spn_discount(); } }) function check_box() { if ($("input[name='reg_check'][value='live']").prop("checked")) { $.ajax({ type: "POST", url: "env_dev.php", data: { live: Live, }, success: function(result) { if (result == "Success") { $("input[name='r2']:first").prop("checked", true).trigger("click"); } getReg_price(); } }); } else { $("input[name='r2']").prop("checked", false); registration_price = 0; total(); if (discount_applied == true) { discount(); } } } function getParticipants_value() { Participants = $("#participants_id").val(); total(); if (discount_applied == true) { discount(); } } function getReg_price() { registration_category = $('input[type=radio][name="r2"]:checked').attr("data-value"); $.ajax({ type: "POST", url: "env_dev.php", data: { category: registration_category, }, success: function(result) { registration_price = result; total(); if (discount_applied == true) { discount(); } } }); } function getSocial_networking_price() { No_of_Socialnetworking = $('#socialnetwork').val(); $.ajax({ type: "POST", url: "env_dev.php", data: { numberof_persons_socialnetwork: No_of_Socialnetworking, }, success: function(response) { socialnetwork = response; total(); if (discount_applied == true) { discount(); } } }); } function get_accompanying_value() { No_of_accompanying = $('#accompanying').val(); $.ajax({ type: "POST", url: "env_dev.php", data: { noof_accompanying: No_of_accompanying, }, success: function(response) { accompanying_price = response; total(); if (discount_applied == true) { discount(); } } }); } function get_accommodation_value() { accommodation_category = $('input[type=radio][name=r5]:checked').attr("data-value"); if ((accommodation_category == "Single Occupancy") || (accommodation_category == "Double Occupancy")) { $("#acd_extrabox").css("display", "block"); number_of_days(); } else { window.location.href = "index.php"; $("#acd_extrabox").css("display", "none"); total(); } } function number_of_days() { if ($('input[name=r5]').is(':checked')) { var number_of_days = parseInt($('#numberof_days :selected').text()); No_of_days = (isNaN(number_of_days)) ? 0 : number_of_days; $('.show_check_in_and_check_out_div').css("display", "block"); if (No_of_days < 2) { $('.datesecond').css("display", "none"); } else { $('.datesecond').css("display", "block"); } } else { $(".show_check_in_and_check_out_div").css("display", "none"); No_of_days = 0; total(); } $.ajax({ type: "POST", url: "env_dev.php", data: { Accommodation_type: accommodation_category, numberofdays: No_of_days }, success: function(result) { accommodation_price = result; total(); if (discount_applied == true) { discount(); } } }); } function checkincheckout() { // Define the toInputFormat function before calling it Date.prototype.toInputFormat = function() { var yyyy = this.getFullYear().toString(); var mm = (this.getMonth() + 1).toString(); // getMonth() is zero-based var dd = this.getDate().toString(); var weekday = new Array(7); weekday[0] = "Sunday"; weekday[1] = "Monday"; weekday[2] = "Tuesday"; weekday[3] = "Wednesday"; weekday[4] = "Thursday"; weekday[5] = "Friday"; weekday[6] = "Saturday"; var n = weekday[this.getDay()]; var checkoutdayname = (mm[1] ? mm : "0" + mm[0]) + "-" + (dd[1] ? dd : "0" + dd[0]) + "-" + yyyy; $("#checkoutdate").attr('data', checkoutdayname); $("#showcheckin").html(checkin_date); $("#showcheckout").html(checkoutdayname); check_out_date = checkoutdayname; total(); if (discount_applied == true) { discount(); } return (mm[1] ? mm : "0" + mm[0]) + "-" + (dd[1] ? dd : "0" + dd[0]) + "-" + yyyy; }; var checkin_date = $("#dateof_accommodation :selected").val(); check_in_date = checkin_date; if ((checkin_date == '')) { alert("Please select starting date of accommodation"); check_in_date = ""; check_out_date = ""; } else if (No_of_days == '') { alert("Please select No of nights"); $("#dateof_accommodation").val("0"); $("#numberof_days").focus(); check_in_date = ""; check_out_date = ""; $("#show_check_in_check_out").hide(); $("#checkoutdate").val("check out date"); } else { if (checkin_date != "0") { var clientDate = new Date(checkin_date); var utc = clientDate.toUTCString(); var date = new Date(utc); var days = parseInt(No_of_days, 10); if (!isNaN(date.getTime())) { date.setDate(date.getDate() + 0 + days); check_out_date = date.toInputFormat() $("#show_check_in_check_out").show(); // $("#checkoutdate").val(check_out_date); } else { alert("Invalid Date"); } } else { check_out_date = ""; check_in_date = ""; $("#show_check_in_check_out").hide(); $("#checkoutdate").val("check out date"); } } total(); } $(".discountcheck").click(function(e) { e.preventDefault(); discount_code = $("#discount_code").val(); if (discount_code == '') { alert("Please Enter Discount Code"); } else if (discount_applied == true) { alert("Discount Code Already Applied"); } else { discount(); } }); function discount() { discount_code = $("#discount_code").val(); var ajaxurl = "payment.php"; var dataString = 'reg_price=' + Final_Reg_price + '&accommodation_price=' + accommodation_price + '&total_price=' + total_price + '&discount_code=' + discount_code + '&accompanying_totalprice=' + accompanying_price + '&socialnetwork_price=' + socialnetwork; $.ajax({ url: ajaxurl, type: "POST", data: dataString, success: function(data) { var jsonData = JSON.parse(data); if (typeof jsonData === "object") { // Update the HTML content in the appropriate element $('#jsonpResult').html(jsonData.html); $("#showdiscountcode").html(discount_code); discount_category = jsonData.discount_category; if (jsonData.discount_category == "registration") { $(".reg_discountsec").css("display", "block"); $(".discountsec").css("display", "block"); $("#registrationdiscount").html(jsonData.discountedPrice); discountedPrice = jsonData.discountedPrice; discount_reg_price = jsonData.discount_price; discount_price = jsonData.discount_price; $("#showdiscount_price").html(jsonData.discountedPrice); } else if (jsonData.discount_category == "accommodation") { $(".acc_discountsec").css("display", "block"); $(".discountsec").css("display", "block"); discountedPrice = jsonData.discountedPrice; discount_acc_price = jsonData.discount_price; discount_price = jsonData.discount_price; $("#showdiscount_price").html(jsonData.discountedPrice); $("#accommodationdiscount").html(jsonData.discountedPrice); } else { $(".acc_discountsec").css("display", "block"); $(".reg_discountsec").css("display", "block"); $(".discountsec").css("display", "block"); discountedPrice = jsonData.discountedPrice; discount_acc_price = jsonData.acc_discount_price; discount_reg_price = jsonData.reg_discount_price; discount_price = jsonData.discount_price; $("#showdiscount_price").html(jsonData.discountedPrice); $("#registrationdiscount").html(jsonData.reg_discountedPrice); $("#accommodationdiscount").html(jsonData.acc_discountedPrice); } if (jsonData.html != "<h2>The code entered is not valid. Please enter a valid code.</h2>") { discount_applied = true; } else { $(".acc_discountsec").css("display", "none"); $(".reg_discountsec").css("display", "none"); $(".discountsec").css("display", "none"); } total_price = jsonData.final_price; total(); } else { console.log("No HTML data received or HTML data is empty."); total(); } return false; } }); } function spn_discount() { var ajaxurl = "sponsor_discount.php"; Sponsor_price = $("#amount").val(); var dataString = 'amount=' + Sponsor_price + '&discount_code=' + Sponsor_disount_code; $.ajax({ url: ajaxurl, type: "POST", data: dataString, success: function(data) { var jsonData = JSON.parse(data); if (typeof jsonData === "object") { // Update the HTML content in the appropriate element $('#jsonpResult').html(jsonData.html); $("#amount").val(jsonData.final_price); Sponsor_disounted_price = jsonData.discountedPrice; // $("#showdiscountcode").html(discount_code); if (jsonData.html != "<h2>The code entered is not valid. Please enter a valid code.</h2>") {} total(); } else { console.log("No HTML data received or HTML data is empty."); total(); } return false; } }); } $('select[name=session]').change(function() { Sponsor_category = $(this).val(); $.ajax({ url: 'env_dev.php', type: 'POST', data: { Sponsor_category: Sponsor_category, }, success: function(response) { Sponsor_price = response; if (response == "others") { $("#amount").val(''); $('#amount').prop('readonly', false); Sponsor_others = true; if ((Sponsor_disount_applied == true) && (Sponsor_others)) { $('#jsonpResult').html(""); alert("Please enter amount"); spn_discount(); } } else { $("#amount").val(Sponsor_price); $('#amount').prop('readonly', true); if (Sponsor_disount_applied == true) { spn_discount(); } } }, error: function(xhr, status, error) { console.error("error = ", error); // Handle error response if needed } }); }); function total() { if ((Participants !== "") && (registration_price !== "") && (registration_category !== "") && (No_of_Socialnetworking !== "") && (socialnetwork !== "")) { Final_Reg_price = parseInt((Participants * registration_price)); if (discount_applied == false) { total_price = parseInt(Final_Reg_price) + parseInt(socialnetwork) + parseInt(accompanying_price) + parseInt(accommodation_price); } before_discount_total = parseInt(Final_Reg_price) + parseInt(socialnetwork) + parseInt(accompanying_price) + parseInt(accommodation_price); } $("#show_registration_price").html(Final_Reg_price); $("#shownumberof_participants").html(Participants); $("#showgsocialnetworking_price").html(socialnetwork); $("#show_accompanying_price").html(accompanying_price); $("#showselected_numberofdays").html(No_of_days); $("#showaccommodation_price").html(accommodation_price); $("#showtotalprice").html(total_price); $("#displayprice").html(total_price); $("#showcheckin").html(check_in_date); $("#showcheckout").html(check_out_date); $("#checkoutdate").val(check_out_date); if (discount_code != "") { $("#show_discounts_code").show(); } else { $("#show_discounts_code").hide(); } } $("#reg_form").submit(function(e) { e.preventDefault(); // Prevent the form from submitting normally if ((accommodation_category != "") && (check_in_date == "") && (check_out_date == "")) { $("#dateof_accommodation").focus().css("border-color", "red"); alert("Please select No of Days and starting date of accommodation"); } else { var formDataArray = $(this).serializeArray(); // Additional values in JavaScript var additionalData = { reg_type: "Standard Registration", participants: Participants, before_discount_reg_price: Final_Reg_price, registration_category: registration_category, before_discount_acc_price: accommodation_price, accommodation_category: accommodation_category, No_of_acc_days: No_of_days, showcheckin_date: check_in_date, showcheckout_date: check_out_date, total_price: total_price, socialnetwork_price: socialnetwork, no_of_socialnetworking: No_of_Socialnetworking, accompanying_priceonly: accompanying_price, noof_accompanying: No_of_accompanying, discount_registrationprice: discount_reg_price, discount_accom: discount_acc_price, discount_price: discount_price, discount_code: discount_code, before_discount_total: before_discount_total, discountedPrice: discountedPrice, discount_category: discount_category, }; // Merge form data and additional data var postData = formDataArray.concat($.map(additionalData, function(value, key) { return { name: key, value: value }; })); // AJAX request $.ajax({ url: 'register_payment.php', type: 'POST', data: { data: postData }, success: function(response) { window.location.href = 'register_payment.php'; // var datasuccessturn = $(response).find('#successturn').text(); // if (datasuccessturn == 1) { // window.location.href = 'register_payment.php'; // } else { // alert("Please try again after some time"); // } }, error: function(xhr, status, error) { console.error("error = ", error); // Handle error response if needed } }); } }); $("#sponsor_form").submit(function(e) { e.preventDefault(); var isValid = true; // Iterate over the form elements $(this).find(":input[required]").each(function() { if ($(this).val().trim() === "") { isValid = false; // Optionally, you can highlight the invalid field or display an error message $(this).addClass("error"); // Add a CSS class for styling } else { $(this).removeClass("error"); } }); if (isValid) { var formData = new FormData(this); // Create FormData object formData.append("spn_discount_code", Sponsor_disount_code); formData.append("spn_discounted_price", Sponsor_disounted_price); formData.append("sponsorship_price", Sponsor_price); var url = 'sponsor_payment.php'; // URL to submit the form data $.ajax({ type: 'POST', url: url, data: formData, processData: false, contentType: false, success: function(response) { window.location.href = 'sponsor_payment.php'; }, error: function(xhr, status, error) {} }); } else { // Display an error message or perform other actions to indicate invalid fields alert('Please fill all required fields.'); } }); $("#reg_subscribe").submit(function(e) { e.preventDefault(); var isValid = true; // Iterate over the form elements $(this).find(":input[required]").each(function() { if ($(this).val().trim() === "") { isValid = false; // Optionally, you can highlight the invalid field or display an error message $(this).addClass("error"); // Add a CSS class for styling } else { $(this).removeClass("error"); } }); if (isValid) { // var formData = new FormData(this); // Create FormData object var formDataArray = $(this).serialize(); // formData.append("spn_discount_code", Sponsor_disount_code); // formData.append("spn_discounted_price", Sponsor_disounted_price); var url = 'subscribe_payment.php'; // URL to submit the form data $.ajax({ type: 'POST', url: 'subscribe_payment.php', data: formDataArray, success: function(response) { window.location.href = 'subscribe_payment.php'; }, error: function(xhr, status, error) {} }); } else { // Display an error message or perform other actions to indicate invalid fields alert('Please fill all required fields.'); } }); }); </script><!DOCTYPE html> <html lang="en"> <head> <!-- New Event http://www.templatemo.com/tm-486-new-event --> <title>Chem R&D 2025 | Chemistry Research and Development Conference | Chemistry Conference</title> <meta name="keywords" content="Chemistry conference, advanced chemistry conference, chemistry research conference, Chemistry research and development conference, chemistry meeting usa, chemistry conference boston, chemistry conference speakers, chemistry conference sponsor " /> <meta name="description" content="CHEM R&D 2025 invites you to take advantage of the event through various sponsorship opportunities to best suit your needs and fit your budget." /> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link rel="shortcut icon" href="images/favicon.png" type="image/x-icon"> <link rel="stylesheet" href="css/animate.css"> <link rel="stylesheet" href="css/font-awesome.min.css"> <link rel="stylesheet" href="css/owl.theme.css"> <link rel="stylesheet" href="css/owl.carousel.css"> <!-- Main css --> <link rel="stylesheet" href="css/style.css"> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> <!-- Google Font --> <link href='https://fonts.googleapis.com/css?family=Poppins:400,500,600' rel='stylesheet' type='text/css'> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-ZQC5Q7141Y"></script> <script> window.dataLayer = window.dataLayer || []; function gtag() { dataLayer.push(arguments); } gtag('js', new Date()); gtag('config', 'G-ZQC5Q7141Y'); </script> </head> <body data-spy="scroll" data-offset="50" data-target=".navbar-collapse"> <!-- ========================= PRE LOADER ============================== --> <!-- <div class="preloader"> <div class="sk-rotating-plane"></div> </div> --> <nav class="navbar navbar-expand-lg custom-navbar fixed-top bg-dark"> <div class="container"> <a class="navbar-brand" href="./"> <!-- CHEM R&D --> <img src="images/logo.png" alt="CHEM R&D 2025"> </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <a href="https://en.wikipedia.org/wiki/History_of_chemistry" class="text-primary w-100 text-center" target="_blank"><b>History of Chemistry</b></a> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav me-auto mb-2 mb-lg-0"> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> About </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="about">Conference Info</a></li> <li><a class="dropdown-item" href="visa-information">Visa Information</a></li> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Experts </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="experts">Committee</a></li> <li><a class="dropdown-item" href="speakers">Speakers</a></li> </ul> </li> <li class="nav-item"> <a class="nav-link" href="important-dates">Dates</a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Abstract </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="abstract_submission">ABSTRACT SUBMISSION</a></li> <li><a class="dropdown-item" href="scientific_topics">SCIENTIFIC TOPICS</a></li> <li><a class="dropdown-item" href="review-process">REVIEW PROCESS</a></li> <li><a class="dropdown-item" href="guidelines">GUIDELINES</a></li> <!-- <li><a class="dropdown-item" href="poster-guidelines">POSTER GUIDELINES</a></li> --> </ul> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false"> Sponsors </a> <ul class="dropdown-menu"> <li><a class="dropdown-item" href="become_a_sponsor">BECOME A SPONSOR</a></li> <li><a class="dropdown-item" href="exhibition">EXHIBITION</a></li> </ul> </li> <li class="nav-item"> <a class="nav-link" href="venue-and-hospitality">Venue</a> </li> <li class="nav-item align-self-center"> <a class="btn btn-danger px-4 mx-4" href="registration_form">Register</a> </li> </ul> </div> </div> </nav> <div class="col-sm-12 py-2 text-center text-white fw-bold header-dates" style="position: absolute; top: 70px; background-color: #0089ff;"> <div class="container"> <div class="row"> <div class="col-sm-6 pt-2"><a href="abstract_submission" class="text-white"><i class="fa fa-file-o"></i> <span style="color: #000; ">Second Round of Abstract Submission Ends:</span> December 16, 2024</a></div> <div class="col-sm-6 pt-2"><a href="registration_form" class="text-white"><i class="fa fa-ticket"></i> <span style="color: #000; ">Early Bird Registration Extended up to: </span>November 30, 2024</a> </div> </div> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <div class="breadcumb-area mt-7"> <div class="container"> <div class="row"> <div class="breadcumb-content mt-5"> <h1>Become a Sponsor</h1> <ul> <li><a href="./">Home</a></li> <li><i class="fa fa-angle-right"></i></li> <li>Become a Sponsor</li> </ul> </div> </div> </div> </div> <section id="main-container" class="main-container py-5"> <div class="container"> <div class="row"> <div class="col-lg-12"> <!-- <h3 class="column-title"></h3>--> <p class="text-big font-accent text-spacing-40"></p> <div class="row"> <div class="col-md-6"> <h4>Download the <span class="form"><a href="pdfs/ChemR&D-2025-Sponsorship.pdf" target="_blank" title="Click here for Sponsorship Guide" style="color:#ff0081;">Sponsorship Guide</a></span></h4><br /> <div><small><strong>Note:</strong> <span style="color:#ff0000;">All Fields are mandatory</span></small></div> <form class="row g-3 mt-3 needs-validation" novalidate id="sponsor_form"> <div class="col-md-6 mt-1"> <label class="form-label mt-2">Title</label> </div> <div class="col-md-6 mt-1"> <select class="form-select" name="title" required> <option value="Dr.">Dr.</option> <option value="Mr.">Mr.</option> <option value="Mrs.">Mrs.</option> <option value="Ms.">Ms.</option> </select> </div> <div class="col-md-6 mt-1"> <label class="form-label mt-2">Name</label> </div> <div class="col-md-6 mt-1"> <input type="text" class="form-control" placeholder="Enter your name" name="name" required> </div> <div class="col-md-6 mt-1"> <label class="form-label mt-2">Email</label> </div> <div class="col-md-6 mt-1"> <input type="email" class="form-control" placeholder="Enter your email" name="email" required> </div> <div class="col-md-6 mt-1"> <label class="form-label mt-2">Organization</label> </div> <div class="col-md-6 mt-1"> <input type="text" class="form-control" placeholder="Enter your organization" name="organization" required> </div> <div class="col-md-6 mt-1"> <label class="form-label mt-2">Telephone</label> </div> <div class="col-md-6 mt-1"> <input type="text" class="form-control" placeholder="Enter your telephone" name="telephone" required> </div> <div class="col-md-6 mt-1" style="display: none;"> <label class="form-label mt-2">Subject</label> <input type="text" class="form-control" placeholder="Enter your subject" name="subject"> </div> <div class="col-md-6 mt-1"> <label class="form-label mt-2">City</label> </div> <div class="col-md-6 mt-1"> <input type="text" class="form-control" placeholder="Enter your city" name="city" required> </div> <div class="col-md-6 mt-1"> <label for="inputState" class="form-label mt-2">Country</label> </div> <div class="col-md-6 mt-1"> <select class="form-select" name="country" data-country="US"> <option value="Select Any" selected="selected">Select country</option> <option value="United States">United States</option> <option value="United Kingdom">United Kingdom</option> <option value="Afghanistan">Afghanistan</option> <option value="Albania">Albania</option> <option value="Algeria">Algeria</option> <option value="American Samoa">American Samoa</option> <option value="Andorra">Andorra</option> <option value="Angola">Angola</option> <option value="Anguilla">Anguilla</option> <option value="Antarctica">Antarctica</option> <option value="Antigua and Barbuda">Antigua and Barbuda</option> <option value="Argentina">Argentina</option> <option value="Armenia">Armenia</option> <option value="Aruba">Aruba</option> <option value="Australia">Australia</option> <option value="Austria">Austria</option> <option value="Azerbaijan">Azerbaijan</option> <option value="Bahamas">Bahamas</option> <option value="Bahrain">Bahrain</option> <option value="Bangladesh">Bangladesh</option> <option value="Barbados">Barbados</option> <option value="Belarus">Belarus</option> <option value="Belgium">Belgium</option> <option value="Belize">Belize</option> <option value="Benin">Benin</option> <option value="Bermuda">Bermuda</option> <option value="Bhutan">Bhutan</option> <option value="Bolivia">Bolivia</option> <option value="Bosnia and Herzegovina">Bosnia and Herzegovina</option> <option value="Botswana">Botswana</option> <option value="Bouvet Island">Bouvet Island</option> <option value="Brazil">Brazil</option> <option value="British Indian Ocean Territory">British Indian Ocean Territory</option> <option value="Brunei Darussalam">Brunei Darussalam</option> <option value="Bulgaria">Bulgaria</option> <option value="Burkina Faso">Burkina Faso</option> <option value="Burundi">Burundi</option> <option value="Cambodia">Cambodia</option> <option value="Cameroon">Cameroon</option> <option value="Canada">Canada</option> <option value="Canadian Nunavut Territory">Canadian Nunavut Territory</option> <option value="Cape Verde">Cape Verde</option> <option value="Cayman Islands">Cayman Islands</option> <option value="Central African Republic">Central African Republic</option> <option value="Chad">Chad</option> <option value="Chile">Chile</option> <option value="China">China</option> <option value="Christmas Island">Christmas Island</option> <option value="Cocos (Keeling Islands)">Cocos (Keeling Islands)</option> <option value="Colombia">Colombia</option> <option value="Comoros">Comoros</option> <option value="Congo">Congo</option> <option value="Cook Islands">Cook Islands</option> <option value="Costa Rica">Costa Rica</option> <option value="Cote D'Ivoire (Ivory Coast)">Cote D'Ivoire (Ivory Coast)</option> <option value="Croatia (Hrvatska)">Croatia (Hrvatska)</option> <option value="Cuba">Cuba</option> <option value="Cyprus">Cyprus</option> <option value="Czech Republic">Czech Republic</option> <option value="Denmark">Denmark</option> <option value="Djibouti">Djibouti</option> <option value="Dominica">Dominica</option> <option value="Dominican Republic">Dominican Republic</option> <option value="East Timor">East Timor</option> <option value="Ecuador">Ecuador</option> <option value="Egypt">Egypt</option> <option value="El Salvador">El Salvador</option> <option value="Equatorial Guinea">Equatorial Guinea</option> <option value="Eritrea">Eritrea</option> <option value="Estonia">Estonia</option> <option value="Ethiopia">Ethiopia</option> <option value="Falkland Islands (Malvinas)">Falkland Islands (Malvinas)</option> <option value="Faroe Islands">Faroe Islands</option> <option value="Fiji">Fiji</option> <option value="Finland">Finland</option> <option value="France">France</option> <option value="France, Metropolitan">France, Metropolitan</option> <option value="French Guiana">French Guiana</option> <option value="French Polynesia">French Polynesia</option> <option value="French Southern Territories">French Southern Territories</option> <option value="Gabon">Gabon</option> <option value="Gambia">Gambia</option> <option value="Georgia">Georgia</option> <option value="Germany">Germany</option> <option value="Ghana">Ghana</option> <option value="Gibraltar">Gibraltar</option> <option value="Greece">Greece</option> <option value="Greenland">Greenland</option> <option value="Grenada">Grenada</option> <option value="Guadeloupe">Guadeloupe</option> <option value="Guam">Guam</option> <option value="Guatemala">Guatemala</option> <option value="Guinea">Guinea</option> <option value="Guinea-Bissau">Guinea-Bissau</option> <option value="Guyana">Guyana</option> <option value="Haiti">Haiti</option> <option value="Heard and McDonald Islands">Heard and McDonald Islands</option> <option value="Honduras">Honduras</option> <option value="Hong Kong">Hong Kong</option> <option value="Hungary">Hungary</option> <option value="Iceland">Iceland</option> <option value="India">India</option> <option value="Indonesia">Indonesia</option> <option value="Iran">Iran</option> <option value="Iraq">Iraq</option> <option value="Ireland">Ireland</option> <option value="Israel">Israel</option> <option value="Italy">Italy</option> <option value="Jamaica">Jamaica</option> <option value="Japan">Japan</option> <option value="Jordan">Jordan</option> <option value="Kazakhstan">Kazakhstan</option> <option value="Kenya">Kenya</option> <option value="Kiribati">Kiribati</option> <option value="Korea (North)">Korea (North)</option> <option value="Korea (South)">Korea (South)</option> <option value="Kuwait">Kuwait</option> <option value="Kyrgyzstan">Kyrgyzstan</option> <option value="Laos">Laos</option> <option value="Latvia">Latvia</option> <option value="Lebanon">Lebanon</option> <option value="Lesotho">Lesotho</option> <option value="Liberia">Liberia</option> <option value="Libya">Libya</option> <option value="Liechtenstein">Liechtenstein</option> <option value="Lithuania">Lithuania</option> <option value="Luxembourg">Luxembourg</option> <option value="Macau">Macau</option> <option value="Macedonia">Macedonia</option> <option value="Madagascar">Madagascar</option> <option value="Malawi">Malawi</option> <option value="Malaysia">Malaysia</option> <option value="Maldives">Maldives</option> <option value="Mali">Mali</option> <option value="Malta<">Malta</option> <option value="Marshall Islands">Marshall Islands</option> <option value="Martinique">Martinique</option> <option value="Mauritania">Mauritania</option> <option value="Mauritius">Mauritius</option> <option value="Mayotte">Mayotte</option> <option value="Mexico">Mexico</option> <option value="Micronesia">Micronesia</option> <option value="Moldova">Moldova</option> <option value="Monaco">Monaco</option> <option value="Mongolia">Mongolia</option> <option value="Montserrat">Montserrat</option> <option value="Morocco">Morocco</option> <option value="Mozambique">Mozambique</option> <option value="Myanmar">Myanmar</option> <option value="Namibia">Namibia</option> <option value="Nauru">Nauru</option> <option value="Nepal">Nepal</option> <option value="Netherlands">Netherlands</option> <option value="Netherlands Antilles">Netherlands Antilles</option> <option value="New Caledonia">New Caledonia</option> <option value="New Zealand">New Zealand</option> <option value="Nicaragua">Nicaragua</option> <option value="Niger">Niger</option> <option value="Nigeria">Nigeria</option> <option value="Niue">Niue</option> <option value="Norfolk Island">Norfolk Island</option> <option value="Northern Mariana Islands">Northern Mariana Islands</option> <option value="Norway">Norway</option> <option value="Oman">Oman</option> <option value="Pakistan">Pakistan</option> <option value="Palau">Palau</option> <option value="Panama">Panama</option> <option value="Papua New Guinea">Papua New Guinea</option> <option value="Paraguay">Paraguay</option> <option value="Peru">Peru</option> <option value="Philippines">Philippines</option> <option value="Pitcairn">Pitcairn</option> <option value="Poland">Poland</option> <option value="Portugal">Portugal</option> <option value="Qatar">Qatar</option> <option value="Reunion">Reunion</option> <option value="Romania">Romania</option> <option value="Russian Federation">Russian Federation</option> <option value="Rwanda">Rwanda</option> <option value="S. Georgia and S. Sandwich Isls.">S. Georgia and S. Sandwich Isls.</option> <option value="Saint Kitts and Nevis">Saint Kitts and Nevis</option> <option value="Saint Lucia">Saint Lucia</option> <option value="Saint Vincent and The Grenadines">Saint Vincent and The Grenadines</option> <option value="Samoa">Samoa</option> <option value="San Marino">San Marino</option> <option value="Sao Tome and Principe">Sao Tome and Principe</option> <option value="Saudi Arabia">Saudi Arabia</option> <option value="Senegal">Senegal</option> <option value="Seychelles">Seychelles</option> <option value="Sierra Leone">Sierra Leone</option> <option value="Singapore">Singapore</option> <option value="Slovak Republic">Slovak Republic</option> <option value="Slovenia">Slovenia</option> <option value="Solomon Islands">Solomon Islands</option> <option value="Somalia">Somalia</option> <option value="South Africa">South Africa</option> <option value="Spain">Spain</option> <option value="Sri Lanka">Sri Lanka</option> <option value="St. Helena">St. Helena</option> <option value="St. Pierre and Miquelon">St. Pierre and Miquelon</option> <option value="Sudan">Sudan</option> <option value="Suriname">Suriname</option> <option value="Svalbard and Jan Mayen Islands">Svalbard and Jan Mayen Islands</option> <option value="Swaziland">Swaziland</option> <option value="Sweden">Sweden</option> <option value="Switzerland">Switzerland</option> <option value="Syria">Syria</option> <option value="Taiwan">Taiwan</option> <option value="Tajikistan">Tajikistan</option> <option value="Tanzania">Tanzania</option> <option value="Thailand">Thailand</option> <option value="Togo">Togo</option> <option value="Tokelau">Tokelau</option> <option value="Tonga">Tonga</option> <option value="Trinidad and Tobago">Trinidad and Tobago</option> <option value="Tunisia">Tunisia</option> <option value="Turkey">Turkey</option> <option value="Turkmenistan">Turkmenistan</option> <option value="Turks and Caicos Islands">Turks and Caicos Islands</option> <option value="Tuvalu">Tuvalu</option> <option value="US Minor Outlying Islands">US Minor Outlying Islands</option> <option value="Uganda">Uganda</option> <option value="Ukraine">Ukraine</option> <option value="United Arab Emirates">United Arab Emirates</option> <option value="United Kingdom">United Kingdom</option> <option value="United States">United States</option> <option value="Uruguay">Uruguay</option> <option value="Uzbekistan">Uzbekistan</option> <option value="Vanuatu">Vanuatu</option> <option value="Vatican City State (Holy See)">Vatican City State (Holy See)</option> <option value="Venezuela">Venezuela</option> <option value="Viet Nam">Viet Nam</option> <option value="Virgin Islands (British)">Virgin Islands (British)</option> <option value="Wallis and Futuna Islands">Wallis and Futuna Islands</option> <option value="Western Sahara">Western Sahara</option> <option value="Yemen">Yemen</option> <option value="Yugoslavia">Yugoslavia</option> <option value="Zaire">Zaire</option> <option value="Zambia">Zambia</option> <option value="Zimbabwe">Zimbabwe</option> </select> </div> <!-- <div class="col-md-4"> <label for="inputZip" class="form-label mt-2">Website URL</label> <input type="text" class="form-control" id="inputZip" placeholder="Enter your website URL" name="website_url"> </div> <div class="col-md-4"> <label for="inputZip" class="form-label mt-2">Product Details</label> <textarea class="form-control" id="inputZip" placeholder="Enter your product details" rows="1" name="product_details"></textarea> </div> --> <div class="col-md-6 mt-1"> <label for="inputState" class="form-label mt-2">Sponsorship Category</label> </div> <div class="col-md-6 mt-1"> <select id="session" name="session" class="form-select" required> <option value="">Select </option> <option value="Platinum">Platinum </option> <option value="Gold">Gold</option> <option value="Silver">Silver</option> <option value="Exhibitor">Exhibitor</option> <option value="Conference Tote Bags">Conference Tote Bags</option> <option value="Conference Name Tags">Conference Name Tags</option> <option value="Conference Notepad and Pens">Conference Notepad and Pens</option> <option value="Others">Others</option> </select> </div> <div class="col-md-6 mt-1"> <label for="inputAddress2" class="form-label mt-2">Amount</label> </div> <div class="col-md-6 mt-1"> <input type="text" class="form-control" id="amount" name="amount" placeholder="Enter your amount" required> </div> <div class="col-md-6 mt-1"> <label for="inputAddress2" class="form-label mt-2">Upload Your Logo <span class="text-danger">[ .jpg, .gif, .png ]</span></label> </div> <div class="col-md-6 mt-1"> <input type="file" class="form-control" id="logo_path" name="logo_path" required> </div> <div class="col-md-12 mt-1 my-3"> <div class="form-check" id="form-check"> <input class="form-check-input" type="checkbox" data-toggle="collapse" href="#collapseExample"> <label class="form-check-label"> Have a promo code </label> </div> <div class="collapse my-3" id="collapseExample"> <div class="col-md-12 d-flex"> <div class="input-group mb-3"> <input type="text" class="form-control" id="spn_discount_code" name="spn_discount_code" placeholder="Enter discount code"> <span class="btn btn-success">Apply</span> </div> </div> </div> <h2 id="jsonpResult"></h2> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary">Submit</button> <button type="reset" class="btn btn-danger">Reset</button> </div> </form> </div> <div class="col-md-6 d-flex justify-content-center align-self-center"> <a href="pdfs/ChemR&D-2025-Sponsorship.pdf" target="_blank"><img src="images/sponser-guide-img.png" class="img-fluid"></a> </div> </div> </div><!-- Col end --> </div><!-- Content row end --> </div><!-- Container end --> </section> <!-- ========================= FOOTER SECTION ============================== --> <footer class="pt-5"> <div class="container"> <div class="row"> <div class="col-md-3 col-sm-3 quicklinks"> <img src="images/footer-logo.png" alt="CHEM R&D 2025" class="img-fluid"> </div> <div class="col-md-5 col-sm-5"> <img src="images/usg-logo-footer.png" alt="usg logo" class="img-fluid"> <p><strong>USG United Scientific Group</strong><br /> A non-profit organization<br /> 8105, Suite 112, Rasor Blvd<br /> PLANO, TX 75024<br /> +1-469-854-2280/81<br /> <a href="mailto:chem@uniscigroup.org">chem@uniscigroup.org</a> </p> </div> <div class="col-md-4"> <div class="contact_detail"> <div class="section-title"> <h2>Subscribe Us</h2> </div> <form id="enqform" name="enqform" method="post" data-form-type="subscribe" action=""> <input name="enqname" type="text" class="form-control mb-3" id="enqname" placeholder="Name"> <input name="enqemail" type="email" class="form-control mb-3" id="enqemail" placeholder="Email"> <div class="col-md-6 col-sm-10"> <button class="form-control" onclick="return enquiry();">Subscribe</button> </div> </form> <div id="enqmsg" class="text-dark"></div> </div> </div> </div> </div> <div class="col-sm-12 text-center copy-right"> <p class="wow fadeInUp" data-wow-delay="0.6s">Copyright © <script type="text/javascript"> var year = new Date(); document.write(year.getFullYear()); </script> <a href="https://www.unitedscientificgroup.org/" target="_blank" class="text-dark fw-bold">USG United Scientific Group</a> All Right Reserved<br /> <a href="https://unitedscientificgroup.org/privacy-policy">Privacy Policy</a> | <a href="https://unitedscientificgroup.org/conferences-terms-and-conditions">Terms of Service</a> </p> </div> </footer> <!-- Back top --> <a href="#back-top" class="go-top"><i class="fa fa-angle-up"></i></a> <!-- ========================= SCRIPTS ============================== --> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script> function enquiry() { event.preventDefault(); var name = document.enqform.enqname.value; var email = document.enqform.enqemail.value; if (document.enqform.enqname.value == "") { alert("Please enter your Name"); document.enqform.enqname.focus(); return false; } if (document.enqform.enqemail.value == "") { alert("Please enter your Email"); document.enqform.enqemail.focus(); return false; } var id = document.enqform.enqemail.value; //The regular expression for a valid e-mail address var re = /^.+\@.+\..{2,4}$/gi; if (!id.match(re)) { //If it is NOT a match //flag++; //errors = errors + "Invalid E-Mail\n"; alert("Not a valid e-mail address"); document.enqform.enqemail.focus(); return false; } if (window.XMLHttpRequest) // code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp = new XMLHttpRequest(); else // code for IE6, IE5 xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4 && xmlhttp.status == 200) document.getElementById("enqmsg").innerHTML = xmlhttp.responseText; } xmlhttp.open("GET", "enqMessage.php?q=" + email + "&n=" + name, true); xmlhttp.send(); document.enqform.reset(); return false; } $(document).ready(function() { $("#program_form").on("submit", function(event) { event.preventDefault(); $.ajax({ url: "ajax_forms.php", type: "post", data: $(this).serialize(), success: function(data) { $('#program_form')[0].reset(); var downloadfile = $("#abstarct2024_download").attr('href'); $(".close").trigger("click"); window.open(downloadfile, '_parent'); // var newtab = window.open(); // newtab.location.href = "password.php"; } }); return false; }); $("#contactForm").submit(function(event) { // cancels the form submission event.preventDefault(); submitForm(); }); function submitForm() { // Initiate Variables With Form Content var name = $("#name").val(); var email = $("#email").val(); var message = $("#message").val(); if (email != '') { $.ajax({ type: "POST", url: "contact_process.php", data: "name=" + name + "&email=" + email + "&message=" + message, success: function(text) { if (text == "Submitted Successfully") { formSuccess(); $("#contactForm")[0].reset(); } else { formError(); submitMSG(false, text); } } }); } } function formSuccess() { $("#msgSubmit").removeClass("hidden"); } function formError() { $("#contactForm").removeClass("hidden").addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() { $("#msgSubmit").removeClass("hidden"); }); } function submitMSG(valid, msg) { var msgClasses; if (valid) { msgClasses = "h3 text-center tada animated text-success"; } else { msgClasses = "h3 text-center text-danger"; } $("#msgSubmit").removeClass().addClass(msgClasses).text(msg); } function AajaxLogin() { // event.preventDefault(); $(".error").text(""); $('#password-info').removeClass("error"); var password = $('#Alogin-password').val(); var actionString = 'loginbook'; if (password == "") { $('#password-info').addClass("error"); $(".error").text("required"); } else { // show loader $('#loaderId').show(); $.ajax({ url: 'ajax-login-abstracts.php', type: 'POST', data: { password: password, action: actionString }, async: false, success: function(response) { if (response.trim() == 'error') { $('#login-success-message').hide(); $('#ajaxloader').hide(); $('#login-error-message').html( "Invalid Attempt. Try Again."); $('#login-error-message').show(); } else { $('.demo-container').html(response); var urlt = 'test'; window.open('https://catalysis.unitedscientificgroup.org/abstracts/' + $.trim(response), '_blank'); //register_window.dialog("close"); //$("#login-dialog").dialog("close"); } } }); this.close(); } // endif return false; } $("#sign-up").submit(function(event) { // cancels the form submission event.preventDefault(); sign_upsubmitForm(); }); function sign_upsubmitForm() { // Initiate Variables With Form Content var name = $("#sign-up-name").val(); var email = $("#sign-up-email").val(); var organization = $("#sign-up-organization").val(); var job = $("#sign-up-job").val(); var message = $("#sign-up-message").val(); if (email != '') { $.ajax({ type: "POST", url: "sign-up-process.php", data: "name=" + name + "&email=" + email + "&message=" + message + "&organization=" + organization + "&job=" + job, success: function(text) { if (text == "Submitted Successfully") { sign_upformSuccess(); $("#sign-up")[0].reset(); } else { sign_upformError(); sign_upsubmitMSG(false, text); } } }); } } function sign_upformSuccess() { $("#sign-upmsg").removeClass("hidden"); } function sign_upformError() { $("#sign-up").removeClass("hidden").addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() { $("#sign-upmsg").removeClass("hidden"); }); } function sign_upsubmitMSG(valid, msg) { var msgClasses; if (valid) { msgClasses = "h3 text-center tada animated text-success"; } else { msgClasses = "h3 text-center text-danger"; } $("#sign-upmsg").removeClass().addClass(msgClasses).text(msg); } $("#book_form").on("submit", function(event) { event.preventDefault(); $.ajax({ url: "ajax_forms.php", type: "post", data: $(this).serialize(), success: function(data) { $('#book_form')[0].reset(); var downloadfile = 'https://catalysis.unitedscientificgroup.org/password'; $(".close").trigger("click"); window.location.href = downloadfile; //window.open(downloadfile, '_blank'); } }); return false; }); $('#parentHorizontalTab').easyResponsiveTabs({ type: 'default', //Types: default, vertical, accordion width: 'auto', //auto or any width like 600px fit: true, // 100% fit in a container tabidentify: 'hor_1', // The tab groups identifier activate: function(event) { // Callback function if tab is switched var $tab = $(this); var $info = $('#nested-tabInfo'); var $name = $('span', $info); $name.text($tab.text()); $info.show(); } }); // $("#sessionid").change(function() { // $("#subsessions").hide(); // if ($(this).val() == "Organic, Structural and Organometallic Chemistry") { // $("#Organic").removeAttr("style"); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Inorganic Chemistry and Biochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").removeAttr("style"); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemical Biology and Chemical Synthesis") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#ChemicalBiologyandChemicalSynthesis").removeAttr("style"); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Physical Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").removeAttr("style"); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Analytical and Bioanalytical Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").removeAttr("style"); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Pharmaceutical and Medicinal Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").removeAttr("style"); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Polymer Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").removeAttr("style"); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Nuclear and Radio Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").removeAttr("style"); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Nano Science and Materials Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").removeAttr("style"); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemical Engineering and Industrial Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").removeAttr("style"); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Surface Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").removeAttr("style"); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Supramolecular Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").removeAttr("style"); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Theoretical and Computational Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").removeAttr("style"); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Food Chemistry and Biochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").removeAttr("style"); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Forensic Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").removeAttr("style"); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Green Chemistry and Sustainability") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").removeAttr("style"); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Environmental and Geo Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").removeAttr("style"); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Photochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").removeAttr("style"); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemical Kinetics and Catalysis") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").removeAttr("style"); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Petrochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").removeAttr("style"); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Thermochemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").removeAttr("style"); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Pure and Applied Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").removeAttr("style"); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Electrochemistry and Corrosion") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").removeAttr("style"); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemistry of Energy") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").removeAttr("style"); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemistry of Transition Elements") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").removeAttr("style"); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Natural Products Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").removeAttr("style"); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Chemistry in Clinical Research, Diagnostics and Nanotherapeutics") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").removeAttr("style"); // $("#EmergingTrendsFutureScopeofChemistry").hide(); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Emerging Trends and Future Scope of Chemistry") { // $("#Organic").hide(); // $("#InorganicChemistryBiochemistry").hide(); // $("#PhysicalChemistry").hide(); // $("#AnalyticalBioanalyticalChemistry").hide(); // $("#PharmaceuticalMedicinalChemistry").hide(); // $("#PolymerChemistry").hide(); // $("#NuclearRadioChemistry").hide(); // $("#NanoScienceMaterialsChemistry").hide(); // $("#ChemicalEngineeringIndustrialChemistry").hide(); // $("#SurfaceChemistry").hide(); // $("#SupramolecularChemistry").hide(); // $("#TheoreticalComputationalChemistry").hide(); // $("#FoodChemistryBiochemistry").hide(); // $("#ForensicChemistry").hide(); // $("#GreenChemistrySustainability").hide(); // $("#EnvironmentalGeoChemistry").hide(); // $("#Photochemistry").hide(); // $("#ChemicalKineticsCatalysis").hide(); // $("#Petrochemistry").hide(); // $("#Thermochemistry").hide(); // $("#PureAppliedChemistry").hide(); // $("#ElectrochemistryCorrosion").hide(); // $("#ChemistryofEnergy").hide(); // $("#ChemistryofTransitionElements").hide(); // $("#NaturalProductsChemistry").hide(); // $("#ChemistryinClinicalResearchDiagnosticsNanotherapeutics").hide(); // $("#EmergingTrendsFutureScopeofChemistry").removeAttr("style"); // $("#subsessions").removeAttr("style"); // } else if ($(this).val() == "Select") {} // }); }); </script> <script src="js/easyResponsiveTabs.js"></script> </body> </html>