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

    Diving In with a Question about the <img>Tag

    What happens if you remove the leading'/'? src="photos/The_Clan.JPG"
  2. O

    pyscript not showing

    Only one <html></html> - you have two. <meta-charset ... does not need to be closed with </meta-charset>. Put the code before the <meta-charset> after the <meta-charset> so that it appears in the <head>. See how that works for ya.
  3. O

    col-md with video not appearing inside content div

    Missing a closing bracket here: <div class="container theme-showcase" role="main"<h1>Text</h1> After the words role="main" Might want to rethink this.
  4. O

    Answered HTML sub-pages

    Look up the base tag = HTML base tag
  5. O

    JavaScript JQuery troubleshooting - needed advise and hint

    Thank you for the feedback. Not everyone on this site does that.
  6. O

    Moving UL to right side of page

    You should post your CSS, stylingsheet.css is on your computer and we can't use it.
  7. O

    JavaScript JQuery troubleshooting - needed advise and hint

    I looked at strm_dspl.text and got a function(e) and I know that isn't correct.
  8. O

    JavaScript Click on instance of image to trigger event

    I would use maps to the image instead. Read this whole page to see what can help you: HTML Image Maps
  9. O

    Need some help with HTML code to

    You say that you can't use jquery, good that's a crap solution. Can you use raw Javascript? What date picker are you using? There is something called a date range picker where two calendars are displayed side-by-side and it will give you the number of days ... between the entered dates. You can...
  10. O

    Where am I going wrong?

    I changed a few things, but this almost works. One problem - I added the div for adult jedi and this will not work if it is selected first. any other selection and things work. <!DOCTYPE html> <html> <head> <title>Table Example</title> <style> .myDiv{ display:none; padding:10px...
  11. O

    Where am I going wrong?

    Do you want to show the "Choose rank" select in a box with a border of a unique color? For starters, you have more than one $(document).ready(function(){...}. Can I give you the solution with raw JS and not the over-bloated jquery?
  12. O

    PHP Simple powerful PHP library for data sanitization

    I'm not programming right now, so do not have a chance to test this, but if it does what you say, then it is a godsend.
  13. O

    How do I create a bunch of cascading select inputs that in the end show one specific set of divs?

    I think I talked about learning code from W3Schools. This was taken from that site under the title: How TO - Cascading Dropdown List JS is one way if the choices are not many, then communicating with a PHP/DB would be used. <!DOCTYPE html> <html> <head> <title>Table Example</title> </head>...
  14. O

    How do I assign a style with a select option and send style to JSON and then display in html table?

    OK, this will be done server-side with PHP. PHP will read the data from the DB and construct a JSON file. It will check for the presence of one of the three words and use that to determine the style and send that info in the same file. JS will read that and change the style of as many elements...
  15. O

    How do I assign a style with a select option and send style to JSON and then display in html table?

    Dear Mr/Mrs/Ms. Mortal, I have a hard time trying to understand what you're asking, not just here but in every question I read. After investing time I ask myself "Why do they want to do that?". My hang-up is your use of Json, but I think I got it with this question. You're not...
  16. O

    JavaScript Can't get past size five...

    Javascript needs html to show itself working. HTML need CSS. Please post all of it.
  17. O

    JavaScript Can't get past size five...

    Because your posted code does nothing I went to your website and just hit the start button. It hung up on the Generating Galaxy page. It never gets off the ground.
  18. O

    I can't find what I'm doing wrong here.

    Your codepen is 404, Please post code here using the </> icon
  19. O

    Altering Boostrap 5 button background colours.

    bootstrap is horrible to read and more so to maintain. It is known as bootcrap in the programming world. It is easy at first - therein lies the horror (que Jason). You have time to learn the real thing. Do it. I like w3schools.com for the way they teach. It's free
Back
Top Bottom