diff --git a/html5/verto/demo/verto.js b/html5/verto/demo/verto.js
index 65d23bb03c..a39dc991ec 100644
--- a/html5/verto/demo/verto.js
+++ b/html5/verto/demo/verto.js
@@ -371,8 +371,10 @@ $(document).ready(function() {
 
     if (window.location.hash) {
 	var hash = window.location.hash.substring(1);
-	$("#ext").val(hash);
-	$("#callbtn").trigger("click");
+	if (hash && !hash.contains("page-")) {
+	    $("#ext").val(hash);
+	    $("#callbtn").trigger("click");
+	}
     }
 
 });