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. O

    JavaScript Call several times a javascript on the same page

    This does work! My question is "Why so many <script></script> tags?", this could have been done in just one set. And You could have saved typing and done this in a loop. FYI MCQ is Multiple Choice Questions. You know where you use the IBM system to answer the ones you don't know. :blush::geek:
  2. O

    HTML & CSS Navigation drop down menu stuck to the left of links

    Josh, I'm giving you a start. Go read up on the various subjects I introduce and try to finish things. In your HTML I closed your </li> in the sub-menu and moved the end tags that encompass the dropdowns I added the headings to the html - look at that. In the CSS I added something you should put...
  3. O

    JavaScript looking for a partner to help build a javascript app for mobile

    Yep, JS with something else, but not said.
  4. O

    JavaScript Returning Values from Local Storage

    try v1 = localStorage.getItem("mcompcont");
  5. O

    JavaScript looking for a partner to help build a javascript app for mobile

    I don't think RAW JavaScript works for cell phones. If that's what you mean by "mobile" in your heading. If you like I'll take a look at your code and let you know if it has problems and maybe if it works. Just post it here using the </> tag.
  6. O

    HTML & CSS HTML Video not working with media query

    Chrome didn't work with inline media queries in the past. Don't know if this is still true.
  7. O

    Page info, date modified

    This will give you that info: document.lastModified;
  8. O

    HTML & CSS Chrome Issue

    Cant fix images - need code
  9. O

    Page info, date modified

    Stolen from W3schools: <!DOCTYPE html> <html> <body> <h1>JavaScript Dates</h1> <h2>Using new Date()</h2> <p>new Date() without arguments, creates a date object with the current date and time:</p> <p id="demo"></p> <script> const d = new Date(); document.getElementById("demo").innerHTML = d...
  10. O

    JavaScript Help on JavaScript replace

    OP you should know that I had to replace the commas and the double quotes in your string. Also, you have two commas before the date 10-Jan-23, I removed one. Read the comments in the code. <body> <p id="demo"></p> <script> str =...
  11. O

    Weird layout results in HTML/CSS

    Please repost this and separate the css from the html - you have multiple things here and why should I read them to separate them? Are they on the same page? One HTML with all the CSS together? And where is the problem - things are the way you programmed them. Maybe show how you want things...
  12. O

    JavaScript Issue displaying calculation into a table

    The first error I found: } else { hourRate = income; weekRate = income * hoursWork; monthRate = income * hoursWork * 4; yearRate = income * 52; S/B yearRate = weekRate * 52; } Next, I removed the .toFixed(2); from the cell.innerHTML lines and...
  13. O

    JavaScript How to close the selection if I click outside?

    This question has been answered here before. Use the search function.
  14. O

    JavaScript changing function call from button to automatic

    Have to see the JS to be sure, but normally you just remove the function and paste its contents after the <script> tag.
  15. O

    JavaScript how to get columns width for html table based on subfile

    Doesn't that happen automatically when no width is given?
  16. O

    HTML & CSS How to Properly refactor your code using Semantic Elements HTML & CSS

    All you have to do is read the code.
  17. O

    media query follow up help, please

    I could not find the site. Googleing it I was told "forallthetime.com" did not exist. I did come to this site and question - click the 'document' and got the site - the same as doing it on my desktop, but I get the hamburger menu on my iphone.
  18. O

    HTML & CSS How to Properly refactor your code using Semantic Elements HTML & CSS

    Hi jmory, Just wondering where you're studying programming because the code you published is wonky. No proper school would use or teach this code. If you are still here we can talk about it. I'll wait for you to reply to this thread.
  19. O

    media query follow up help, please

    I can not find this using my iphone.
  20. O

    Convert excel to HTML file

    Post the code here, please. The link you gave is to your computer; no one can open that but you.
Back
Top Bottom