|
@@ -7,16 +7,16 @@ $(document).on("click", ".likeSee__state__filter--item", function (event) {
|
|
|
$(this).addClass("active");
|
|
|
});
|
|
|
|
|
|
-
|
|
|
+const urlParams = new URLSearchParams(window.location.search);
|
|
|
+let id = urlParams.get('cid');
|
|
|
+console.log(id);
|
|
|
|
|
|
function get_data() {
|
|
|
$.ajax({
|
|
|
method: "GET",
|
|
|
- // url: `json/cases-${id}.json`,
|
|
|
- // url: `json/cases-${id}.json`,
|
|
|
- url:`json/Columns.json`,
|
|
|
+ url: `json/Columns-${id}.json`,
|
|
|
+ // url:`json/Columns.json`,
|
|
|
dataType: "json",
|
|
|
-
|
|
|
})
|
|
|
|
|
|
.done(function (msg) {
|