html

  1. B

    JavaScript Help with constants file

    I have a global constants file where I added a links node to it but I'm not sure how to translate that from the constants file into the html file or possibly ts file. constants file export const GlobalConstants = { AOApiPath...
  2. P

    JavaScript Function is undefined after dynamically including <script> to external JS with function

    I have an HTML file that contains a page that, upon clicking a button, should do the following: 1) A <div> panel opens up 2) That <div> panel contains <script src="scripts/record_update.js"></script> 3) The external .js file "record_update.js" contains only one function: officialRecordUpdate()...
  3. F

    How to hide 2D-API Canvas element (like the bakground) but keep the drawing visible, so that "you can draw n the webpage"

    Any ideas, maybe it is enough setting some alfa-value? Also anyone knows what this context are saved as in the DOM, I mean if text are textnodes what are lines in this API then, or is it completely separate and only accessible throughout the canvas element? Excuse me for my bad English.
  4. A

    load file from index.html

    I am new to the forums, and although I have done web design in HTML, Java Script and CGI it has been awhile, about 20 years in fact. I have don very little with CSS. Please bear with me as I will likely have several questions. I do have extensive experience with Visual Basic, I have had Java and...
  5. Cooldude100

    Python How do I get paid ads on my website.

    I am making a payment website using stripe. It is sort like paypal or venmo. But you don't need any transaction fees. The way I hope to accomplish this is with ads. I am using anvil but there is no ad option.
  6. Cooldude100

    Python I need devs for my project.

    Hello, my name is Grayson. I am looking for devs to help me create a payment Api for a website called Fruit surf. They will get half of the revenue from the website as long as they are a dev. Please help me. Also they must use python and know pyscript.
  7. Cooldude100

    Python Py-script chatgpt payment api

    I am having troubles with trying to figure out how to use a payment Api. So, I asked ChatGPT to help me. Here is the code: import jsonfrom http.server import BaseHTTPRequestHandler, HTTPServerclass PaymentHandler(BaseHTTPRequestHandler): def _send_response(self, status_code, data)...
  8. Cooldude100

    pyscript not showing

    I am using pyscript and typed in this code <!DOCTYPE html> <html> <link rel="stylesheet" href="https://pyscript.net/latest/pyscript.css" /> <script defer src="https://pyscript.net/latest/pyscript.js"></script> <body> <title>Making transactions so much easier! Fruit Surf</title>...
  9. Cooldude100

    How to transfer visa and Mastercard with sqlite

    Hello. I am making a money transferring software like Venmo or PayPal and I was wandering if anyone could help me get the code for the transactions. I am using SQLite and not flask. If anyone can help, please do.
  10. Cooldude100

    How to change my html name

    So, my html name is fruit surf (It is not public yet). I was wondering how I change the weird filename explaining where the website is on my computer to https and how to change the domain name to .fruit. And I don't mean the title tag. Please help with this.
  11. Cooldude100

    How do I implement a python widget into an html website?

    Hello, my name is Grayson. I am a beginner coder. I was wondering if there was a command that could make a widget in my html website that was a python script. Just wondering.
  12. Cooldude100

    Invalid syntax on html?

    Hello, my name is Grayson. I am a beginner coder who is twelve years old. I took this code from a website: <!DOCTYPE Html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> And it put out this error: File "C:\Users\grays\OneDrive\Desktop\Test.html", line 1...
  13. M

    Node.JS Code Assistance

    I'm currently working on a project where I need to implement a table filter using checkboxes, and I'm facing some challenges. I've managed to set up the basic functionality, but I'm struggling with a couple of specific requirements. I'm reaching out to the community for some guidance and...
  14. S

    JavaScript Get the value of html element within the 'dd itemprop'

    I am trying to get the value of the notarisation_url value within the 'dd itemprop' I tried this javascript code, but its not working. It retruns undefined. const els = [document.getElementsById('wrap')]; props = els.filter(x => !!x.getAttribute('notarisation_url')); console.log(props) I...
  15. B

    Moving UL to right side of page

    So this is my page as it stands now ( I know it's silly, it's just for practice): I want to move the Related menu in the top right corner to the side of the article so it's next to the aqua boxes, with the menu items running down the right side of the page. How can I do this? Any help would...
  16. S

    Web animations | A few questions?

    Hi, I need help for a project, where states are to be mapped graphically, see the picture in the attachment. It is about the fact that when states and variables in javascript change, this should be displayed graphically. Until now I have done it so that there is a picture for all possible...
  17. D

    Need some help with HTML code to

    hello, i am not good at HTML coding, i have always done a google search for what i need done and copy/pasted into the sites to get them to do what i want. So i am asking for some help to write a code that will make this work. the webpage that i am working on is a HTML, i am unable to use...
  18. ijndsfijkansmf

    school project being stupid, columns and rows not working.

    this is due in like a week or two and I've tried using chatgpt but it doesn't work. I've got like a background image and I have it so that when the image finishes it goes back to the normal background colour, which is white. I'm trying to put some writing next to an image which is in the middle...
  19. malusuda

    Help with padding

    <!DOCTYPE html> <html> <head> <style> .cart { background-color: rgb(255, 216, 20); padding-left: 20; padding-right: 20; padding-top: 5px; padding-bottom: 5px; border-radius: 12.5px; transition: 0.15s; border: none; } .cart:hover { background-color:goldenrod; } </style> </head>...
  20. C

    Saving dropdown options to server

    So far, I have the following code: <!DOCTYPE html> <html> <head> <title>Company HR</title> <style> h1 { font-family: verdana; text-align: center; font-size: 50px; } table, th, td, select { border: 1px solid black...
Top Bottom