From 15979f9a2ea2f0fa71ee26542e5b1fc563f45cbb Mon Sep 17 00:00:00 2001 From: "Alejandro G. Carlstein Ramos Mejia" Date: Tue, 24 Sep 2019 19:49:19 -0600 Subject: [PATCH] #12: Adding Basic Navigation --- ui.library.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui.library.js b/ui.library.js index ce510ec..d357d2a 100644 --- a/ui.library.js +++ b/ui.library.js @@ -118,8 +118,9 @@ $(function() { next: 'Next', prev: 'Prev', onPageClick: function (event, page) { + //fetch content and render here $(".page").css("display", "none"); - $("#page" + page).css("display", "block"); + $("#page" + page).css("display", "block"); } });