I am attempting to improve an old calendar page I built using free “internet code” nearly 15 years ago. When the seven-column by six-row calendar displays, moving the mouse cursor over any one of the days displayed shows a “More Info” link, and clicking that link pops up a new window. The effective JS code: url looks like ‘2022-11-27.html’ ‘striing’
Tag: popup
How do I toggle CSS features with JS functions
I want to run my function which then starts displaying a CSS element, I currently have CSS HTML JS (the function is called within another function, the calling of the function itself works) I’ve tried to chnange the id’s to classes, the order of .popUpNames .show and the regular .popUpNames https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_popup I tried extrapolating it from this website, but to
how to display js 1 time a day?
I have a code show popup on the website, I want this popup only show 1 once/day for user. I use the code below to show the popup: For functions theme flatsome: For js: Please help me, thanks. Answer
HTML form. How to enable button to close popup window after a valid dropdown selection is made
It should be really simple but I can’t figure it out, so any help would be gratefully received. I have a very simple pop-up with a form dropdown with some disabled options and some valid options. What I need to achieve is for the ‘Accept’ button to be disabled until a valid option is selected from the dropdown (values 12,13,14,15),
Edit button to edit a task in a To-Do List not functioning properly
I’m making your typical to-do list practice project, which is structured in a way most of you are probably familiar with. You have projects, and within each project the user adds tasks via a popup form. each task has a button to delete or edit the specific task. When the user clicks edit on a task, a popup form is
JavaScript function will open div tag; second JavaScript function does not close it however
I have been browsing here and looking at similar problems, however none of the solutions seem to work. This is also my first posted question. This is just a pseudo code but I ran this and it works(or doesn’t work) exactly how mine does. I do not understand why the closeEmail function is not working. Answer Your code isn’t working
How to render VueJS templates dynamically inside custom element
I’m using Vue to build an app with Esri’s Mapping API. Via the Esri API, I’m able to set a popup template content using an object: and a function However, I would like the getTemplate function to return a Vue component rendered in the innerHTML instead of hard coded html. I have a component: and suspect it has something to
How to add konami code in a website based on html?
I was asked to implement the Konami Code in a website I’m currently working on. It should do the following: Change Background Image Play sound Bring some pop-up What’s the easiest way to achieve this using javascript? Answer Place the code below in a file js/konami.js and reference it in the body of your html file like this: <script src=”js/konami.js”></script>
How to show a popup modal in codeIgniter?
I have written a javascript click function to a class to display a popup when the relevant class be clicked. When i just put an alert it gives me the correct output. but the popup modal is doesn’t show up Model I am using following model function And i am calling that method in the following controller funtion Controller Here
Auto-closing a popup with a file to download
I have a file, named download.php, which contains a file to be downloaded, so it has the following headers (declared with PHP): download.php is opened as a popup with jQuery by an other page. Now I want download.php to self-close (using JavaScript) after some seconds (so I’m secure that download started) but I didn’t manage to write working code. Here