I'm not really good at JS. I want to check current step number. Tried this: ``` js $("body").on('click', ".btn-next", function() { var activeTabNo = $("li.active").data("step"); alert(activeTabNo); }); ``` but no luck.