Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Lyndsey

Privileged
  • Joined

  • Last visited

  1.    zaeemali2 reacted to a post in a topic: Useful links for designers/developers
  2.    Sarbjit Grewal reacted to a post in a topic: Useful links for designers/developers
  3.    vabsy reacted to a post in a topic: Useful links for designers/developers
  4. You can target the input by something other than an ID, e.g. a class or data-* attribute that will likely not be dynamic.
  5.    Megahosts reacted to a post in a topic: Useful links for designers/developers
  6.    RobDoyle reacted to a post in a topic: Music while working
  7.    Lyndsey reacted to a post in a topic: What have you been up to?
  8.    pdsubraa reacted to a post in a topic: Welcome Jack on the mod team!
  9. Lyndsey replied to Jack's topic in Frontend
    I assume that tree shaking with Webpack 2.0 would handle unused polyfills since they are individually exported modules?
  10. You can use data-* attributes to achieve this in a much more compact way. This is an example: <!-- data-ref corresponds to the target form to be displayed --> <input id="windowFront" class="js-radio-button" name="window" value="Front" type="radio" data-form="#damageChips"> <!-- target form to be displayed when the radio is changed --> <div id="damageChips" class="form-section js-form-section"> ... </div> // jQuery var $radioButtons = $('.js-radio-button'); var $forms = $('.js-form-section'); $radioButtons.change(function() { var $this = $(this); var targetForm = $this.data('form'); $forms.hide(); $(targetForm).show(); }); Fiddle demo: https://jsfiddle.net/usjoL467/4/
  11.    Lyndsey reacted to a post in a topic: General JavaScript
  12.    Lyndsey reacted to a post in a topic: General JavaScript
  13. Lyndsey replied to predatorx's topic in Frontend
    You may want to check out the 'Let's Learn ES6' video series. I have the book version, too, which you can find here.
  14. Lyndsey replied to predatorx's topic in Frontend
    I'll check that out!
  15.    Lyndsey reacted to a post in a topic: Learn ES6
  16. Hi Lee, Welcome to the forum. Feel free to ask any questions
  17.    Lyndsey reacted to a post in a topic: General JavaScript
  18. Lyndsey replied to predatorx's topic in Frontend
    FreeCodeCamp is good, and it's free. You'll find lots of content there
  19. Lyndsey replied to predatorx's topic in Frontend
    This is true and it is the reason I'd learn the fundamentals first, in particular es5's Array methods which are used heavily. I'd also learn functions, scope and how callbacks work before attempting es6.io.
  20. Lyndsey replied to predatorx's topic in Frontend
    es6 is JavaScript. It's an update to the language. Personally, I'd start learning the fundamentals of JavaScript: Types / Primitives Conditionals Loops Arrays (in particular array methods such as forEach, map, filter, reduce, every. Mozilla Developer Network is a great resource) Functions Scope etc You can learn all of the above using resources such as Treehouse, Codeschool, Codecademy, FreeCodeCamp, plus many others. You'll also find some of these links useful: https://github.com/lukehoban/es6features https://github.com/addyosmani/es6-equivalents-in-es5 https://es6.io/ (paid course. I wouldn't do this unless you're comfortable with JavaScript fundamentals)
  21. Lyndsey replied to Jack's topic in Frontend
    The documentation is easy to follow, which helps. Also, I've been finding the test-first approach OK so far. Writing the test before the implementation means I'm writing less code and it's so much nicer to read. Although, I'm not sure if this is more related to functional programming as I've recently been learning a lot about it and have been trying to implement the methodologies as much as possible. JavaScript is so awesome right now, though!
  22. Lyndsey replied to Jack's topic in Frontend
    I've been using Jest for a while now and I have to say I'm really enjoying it. I find it's much faster than Mocha/Chai and it's extendable too which means I can create my own methods for validating data.
  23. If you're looking for a path to front-end learning, I think this is quite useful: https://frontendmasters.gitbooks.io/front-end-handbook-2017/content/
  24. Lyndsey replied to teodora's topic in Frontend
    That course looks good, thanks for that, Jack! Minified files are typically related to the distributed app so I wouldn't normally version those.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.