Turning Form Data to CSV files with JavaScript

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ม.ค. 2025

ความคิดเห็น • 21

  • @rojinbijukchhe44
    @rojinbijukchhe44 ปีที่แล้ว +1

    At present, I am six months into pursuing a Master's degree in Software Development. Your expertise surpasses that of most of my instructors, and for that, I am immensely grateful, Sir.

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  ปีที่แล้ว +1

      Thanks. 😃. Well I guess I have been doing web development work since before half my students were born. You pick up a little knowledge along the way.

  • @voodooaudio9488
    @voodooaudio9488 ปีที่แล้ว +1

    Absolutely the best tutorial channel on TH-cam when it comes to coding and JS. Top notch stuff for those of us who want to know the old school vanilla

  • @amber1862
    @amber1862 2 ปีที่แล้ว +1

    You're my go-to for anything JS. Incredible teaching.

  • @feynthefallen
    @feynthefallen 2 ปีที่แล้ว +1

    Seeing something like that done in vanilla JavaScript again makes me all the more grateful for React et. al.

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  2 ปีที่แล้ว +3

      The code to do this in React would not be any simpler.

    • @feynthefallen
      @feynthefallen 2 ปีที่แล้ว

      @@SteveGriffith-Prof3ssorSt3v3 Not simpler per se, it is doing the same things after all, but a lot more convenient to write. It's a big difference if you write document.getElementById("myButton").addEventListener(... or if you just write ...

    • @raphaelmorgan2307
      @raphaelmorgan2307 ปีที่แล้ว

      @@feynthefallen you can do that with HTML as well. if you right myClickHandler(e) in vanilla JS, you can write . some just prefer to add an event listener in the JS

  • @LancePickup
    @LancePickup 2 ปีที่แล้ว +1

    Thanks!

  • @praveensb4880
    @praveensb4880 ปีที่แล้ว

    Thank you so much. Saved my day

  • @ahmedmoeed2127
    @ahmedmoeed2127 2 ปีที่แล้ว

    Thanks and Appreciated for this video. :)

  • @69152h
    @69152h 20 วันที่ผ่านมา

    Thank you very much for this tutorial, I immediately had a practical use for it. I downloaded the data from the associated repository and changed/extended the form fields according to my needs in order to meet the intended purpose. I have the following question regarding the exported CSV file: is it possible to import it again using an extended HTML form and subsequently edit selected fields?

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  20 วันที่ผ่านมา +1

      @69152h csv files are just text files. You can always import or export text data. You can write JS that will read the data and generate form fields dynamically. You can write JS that will read the data from input fields and generate new data files. The files can be csv, txt, xml, json. Whatever you want.

  • @hashanhemachandra4832
    @hashanhemachandra4832 2 ปีที่แล้ว

    Wow I mean you purely a genius!

  • @shahinza
    @shahinza 2 ปีที่แล้ว

    Excellent, thank you 🙏

  • @rikscc
    @rikscc 8 หลายเดือนก่อน

    Richtig cool 😎

  • @ahmedmoeed2127
    @ahmedmoeed2127 2 ปีที่แล้ว

    can you make a video like how we can make a selector function like jQuery (jQuery use $), something else function name like & or etc. & function accessible on window.& using IIFE. should return DOM elements.

    • @SteveGriffith-Prof3ssorSt3v3
      @SteveGriffith-Prof3ssorSt3v3  2 ปีที่แล้ว

      You can make tutorial requests in the comments here - th-cam.com/video/LCezax2uN3c/w-d-xo.html

  • @fakedevdutt
    @fakedevdutt 8 หลายเดือนก่อน

    I bet If I tell anyone who is doing JS for maybe around 5 Years to make this, most probably they will not able to implement this without any library if they are able to implement it in the first place!

    • @fakedevdutt
      @fakedevdutt 8 หลายเดือนก่อน

      Specially these react guys how has never worked with actual dom and have no understanding of how the things work under the hood.