Hi folks, finished my Twitch project and would appreciate any feedback. There’s a text field that will let you add your own streams to the list, and I plan to add a “remove” button in the near future. Let me know if there’s anything broken with that feature.
You forgot to add an event
parameter to your form submit’s callback.
$("#addForm").submit(function(event) {
// you forgot this ^
// ...
};
You might also want to add target="_blank"
to your <a>
s.
looks great, I’d second what @kevcomedia said - definitely target=_blank with the links, otherwise they open in the same codepen window.