Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Zakwan@MTH

    JavaScript Errors In My Javascript Code

    Hey There! The error [variable name] is not defined happens because the variable hasn’t been declared yet. You can fix this by using either let or const depending on your needs: Use let if you plan to change the value later. Use const if the value should stay the same throughout the program...
  2. Zakwan@MTH

    Linking a CSS background-image

    Hey There ! You can easily set a background image for your page using CSS. Just add a background-image property to your CSS, Iam including an example code so you can have an better understanding body { background-image: url('path-to-your-image.jpg'); background-size: cover...
  3. Zakwan@MTH

    Sticky columns with scrollable columns not overlapping

    Hey there! It looks like you’re almost there. To fix the scrollbar issue, ensure your table is wider than the container by setting its width to something like 150%. For the sticky columns overlapping, adding a z-index: 2 and a background: white should resolve that and make things clean. Do get...
  4. Zakwan@MTH

    Node.JS Failed fetch

    Hey there! The "Failed to fetch" error usually means there’s an issue with your frontend talking to the backend. First, double-check that your backend is running at http://localhost:3000/upload and that it’s accessible. If it’s all good, the problem could be a CORS issue—browsers block requests...
  5. Zakwan@MTH

    JavaScript What’s the best way to implement a feature-rich JavaScript Data Grid?

    Hey there! I've worked with Syncfusion Data Grid before, and it's honestly a great option. It’s packed with features like sorting, filtering, paging, and exporting, and it’s pretty straightforward to set up. The documentation is solid too, which makes life easier. If you’re exploring other...
  6. Zakwan@MTH

    QuickTime Video

    Hey There! The .mov format is not supported by the newer-browsers, that's why its not loading up. You can try changing the videos to .Mp4 format and updating the code Here is an example on how you can do this:- <video controls width="640" height="360"> <source...
  7. Zakwan@MTH

    Flutter web

    Hi there! I have figured out a solution to your problem. Please follow the steps listed below : 1. Make sure the google_mobile_ads plugin is corre dependencies: google_mobile_ads: ^3.0.0 # Use the latest version ctly added in your pubspec.yaml file : Then, run: flutter pub get 2. The...
  8. Zakwan@MTH

    JavaScript Google drive pictures are not showed in website

    Hello there! Lets figure something about this, If you can share the screenshot of the logs that appear in the browser, maybe we can catch the error from there Thanks!
  9. Zakwan@MTH

    JavaScript Google drive pictures are not showed in website

    Hi there! It sounds like you're doing a great job so far! The issue with Google Drive images is that their default sharing links don't work directly as image sources. You need to make sure the images are publicly accessible and then modify the link to be "direct." Here's how you can fix it: Go...
  10. Zakwan@MTH

    Hello to all the nice people of codeforum!!

    So I have some great expectations from this forum !! ill try my best to learn from you guys and help you out wherever needed thanks !
Back
Top Bottom