[Solved] Having some problems, not sure if it’s even possible [closed]

Introduction Having problems can be frustrating, especially when you’re not sure if it’s even possible to solve them. Fortunately, there are many resources available to help you find a solution. This guide will provide you with tips and tricks to help you troubleshoot and find a solution to your problem. We’ll also discuss the importance … Read more

[Solved] how to convert HTML website to wordpress?

If you are looking to convert your existing HTML website to WordPress, you have come to the right place. WordPress is a powerful content management system (CMS) that allows you to easily create and manage a website. Converting your HTML website to WordPress can be a daunting task, but with the right guidance and resources, … Read more

[Solved] What does this HTML and JS do? [closed]

When you click on the first button it fires an onclick event attribute. You’ve told the event to find an element by the ID of ‘msg’. Which is the <p> tag above. It finds it and then replaces the innerHTML value of “Now you see me” with the string ‘Gone!’. Pretty much the same thing … Read more

[Solved] Create Code Snippet (easy to cut and paste) from Web Form [closed]

something like this, using val() to get the input from the user: HTML: name:<input type=”text” id=”name” /> <br /> price:<input type=”text” id=”price”/> <br /> description:<input type=”text” id=”description”/> <br /> url for event:<input type=”text” id=”url_for_event” /> <br /> <button id=”create-html”>create html</button> <div id=”result”></div> JS: $( “#create-html” ).click(function() { var name=”<p class=”name”>” + $(“#name”).val() + ‘</p>’; var … Read more

[Solved] How to disable radio button After 1 Click

First thing, I’d clean up the HTML code a bit… I assume the four radio buttons are all possible answers to one question, in which case they should all have the same name (not value) so that you can only choose one answer; then in the script I’d would need to use more information than … Read more

[Solved] My login php script that redirects to each user page [closed]

Sounds like you are wanting to use Query Strings. There are plenty of resources online to help you out. Here are some examples: https://lightignite.com/help-your-customers-fill-out-web-forms-with-url-query-strings/ http://richard.jp.leguen.ca/tutoring/soen287/tutorials/query-strings-and-forms/ 0 solved My login php script that redirects to each user page [closed]

[Solved] how can i do the following on my website? [closed]

try this but im not sure it works. JSFiddle – link EDIT: Html <body> <div id=”box”> <a href=”https://stackoverflow.com/questions/23628933/javascript:show();” >Link</a> </div> <div id=”box2″> <iframe src=”” id=”frame” width=100% height=100%></iframe> <div id=”close”><input type=”button” onclick=”closeIframe()” value=”X” /></div> </div> </body> Javascript function show() { box= document.getElementById(“box”); box.style.visibility=”hidden”; frame=document.getElementById(“box2″); frame.style.visibility=”visible”; } function closeIframe() { box2=document.getElementById(“box2″); box2.style.visibility=”hidden”; box= document.getElementById(“box”); box.style.visibility=”visible”; } CSS … Read more

[Solved] How to connecting the function, createElement and random? [closed]

As per my understanding, you are trying to create ‘n’ no.of random buttons as of in the innerHTML of #demo. If so you need to loop it. Try this function myFunction() { var num = 5; document.getElementById(“demo”).innerHTML = Math.floor(Math.random() * num) var noOfButtons = document.getElementById(“demo”).innerHTML; for (var i = 0; i < noOfButtons; i++) { … Read more

[Solved] Expandable Nav Bar in CSS? [closed]

I can’t visualize the website cause I dont have Java x86 installed in this machine. “So I’m trying to make a growing navbar, where the menu fades in and is dropdown menu in landscape” Maybe another alternative to Javascript is using CSS3 Animation. Read following links: http://www.w3schools.com/cssref/css3_pr_animation-keyframes.asp http://www.w3schools.com/cssref/css3_pr_animation.asp Stopping a CSS3 Animation on last frame … Read more