diff --git a/src/itables/html/datatables_template.html b/src/itables/html/datatables_template.html
index da686119..0a741476 100644
--- a/src/itables/html/datatables_template.html
+++ b/src/itables/html/datatables_template.html
@@ -1,4 +1,29 @@
+
+
+
diff --git a/src/itables/javascript.py b/src/itables/javascript.py
index e61b8598..fa065ebc 100644
--- a/src/itables/javascript.py
+++ b/src/itables/javascript.py
@@ -810,6 +810,14 @@ def html_table_from_template(
output = replace_value(output, 'dt_args["data"] = data;', "")
output = replace_value(output, "const data = [];", "")
+ # ---------------------------hack for pagination jump start---------------------------------
+
+ output = output.replace("jumpPageBtntable_id", "jumpPageBtn"+table_id)
+ output = output.replace("jumpPageInputtable_id", "jumpPageInput"+table_id)
+ output = output.replace("itable_id", table_id)
+
+ # ---------------------------hack for pagination jump end---------------------------------
+
return output