Wikipedia Viewer is up: feedback

So I have finished Wikipedia Viewer project. You can give any review, feedback on it.
here is the link:

If you wrap your input field in <form></form> tags your input field will react to Enter key. You’ll have to also add preventDefault() to your JS code to prevent the page from refreshing.

My version (I added comments to modified parts):

1 Like

Thank you very much @jenovs!!

@jenovs Gone through your version & modified my code. It works for Enter key also now! Learned new things! Again thanks a lot!

Got one problem though: Random button isn’t working anymore!

Add type="button" to your random button:

<button type="button" id="randombtn">Random</button>
1 Like