/* Inside jqmpcc_fi */ $("#plant_id").change(function() { $("#state_name").val(""); $("#threat").val(""); $(".camp_year").html(""); $("#tradedtypeAll").prop("checked", true); $("#tradedtypeHighlyTraded").prop("checked", false); $("#tradedtypeHighlyTradedGroup").hide(); toMakeItSmall = false; proceedFurther(); }); $("#state_name").change(function() { $("#plant_id").val(""); $(".camp_year").html(""); toMakeItSmall = true; proceedFurther(); }); $("#threat").change(function() { $("#plant_id").val(""); $(".camp_year").html(""); toMakeItSmall = true; proceedFurther(); }); $("input[name=tradedtype]").click(function() { $("#plant_id").val(""); $(".camp_year").html(""); if(this.value == "Traded" || this.value == "Highly Traded") { $("#tradedtypeHighlyTradedGroup").show(); } else { $("#tradedtypeHighlyTradedGroup").hide(); } if(this.value != "Traded" && this.value != "Highly Traded") { $("#tradedtypeHighlyTraded").prop("checked", false); } toMakeItSmall = true; proceedFurther(); }); $(".moredetails a").click(function() { var myId = this.id; var id = myId.substring(1); $("#d" + id).slideToggle(250, function() { var getThisHtml = $(".moredetails a").html(); if(getThisHtml == "Details.....") $(".moredetails a").html("Less Details...."); else if(getThisHtml == "Less Details....") $(".moredetails a").html("Details....."); }); }); /* Exit jqmpcc_fi */