I have a button with the code below. When I click on this button it will show one popup which has a continue button that takes you to the next page. I want to go to the page directly without the popup showing when I click on the button.
How to make button not to show the popup when we click on it?
<span>Next</span>
If you don't want the popup to show, then get rid of the onclick handler. I'm assuming the popup you're referring to is ConfirmModalPopUp.
This part
onclick="javascript:return ConfirmModalPopUp('phone');"
remove it.
Related
There is a button called "Leave a Tip" on a webpage. When the user clicks that button, a pop-up appears asking them to enter the tip they want to leave.
I want a way to bypass having to click on the button in order to get the pop-up to appear.
Is there a way a customer can click on a link that takes them to the page where the pop-up automatically displays (and they don't have to scroll down the page to find the button and click on it)?
I have created a confirmation pop up modal using javascript in Django's Html page,
my Html template is generating delete links using for loop,
so my logic is I have used target the clicked Html element using the window event and then I fetch the value of href, store it in a variable, and then apply that value to the yes button of pop modal, and also set the href value of delete link to '#', so it should not work.
now my problem is the modal is working properly, but after finishing the task, when clicked on the browser back button, again the modal is appearing.enter image description here
In my click event in my code behind i am doing some inserts into databases, emails, but when i click the button i also want to close the tab after it does all this.
I have tried response.writing a script to close the window but that doesnt work. have tried the below but also doesnt work
this.ClientScript.RegisterClientScriptBlock(this.GetType(), "Close", "window.close()", True)
Have also tried the add attribute on button click to close the window but i dont want to add the attribute on the button click i want to execute the attribute on button click.
If i also try the add attribute on the page load, it will close the window but will not carry out the code behind function
OK, here's my situation. I have modal region with a chart. There are checkboxes corresponding to each line on the chart. I want the end user to be able to click a checkbox and have the corresponding line on the chart appear/disappear. Here's where I am:
User opens page two
There is a button "open chart" at the top of the page
When that is pressed, chart opens
User hits a checkbox, the page is submitted with a dynamic action
The modal region disappears
When I open the modal region back up, the line has indeed disappeared like it was supposed to.
My problem is number 5 above. I need that modal region to stay open after the dynamic action on the checkbox submits the page.
So far, I have tried another action (under the submit page on checkbox change action) that opens the modal region. But, that isn't working. Any help is greatly appreciated.
If you used the wizard to build the page then it's likely that when you submit the page the close dialog process is being triggered. In that case, to stop that from happening either delete the process or put a condition on it (request contained in value) and select the buttons you want to close it.
Found my answer. The solution was to forget about the modal region and make a modal page. Now, when I check/uncheck a box, I can call a dynamic action to resubmit the modal page without it disappearing. Thank you for your help!
How do I get the "back" button seen in my demo to NOT close the modal window?
If this can't be prevented, then at least provide them with a confirmation box alerting them the window is trying to close and ask them if they want to continue.
I'm using a javascript back button link and forward button link to control the user's history inside a modal/lightbox window.
Here's a demo of what is happening... When you begin, the second page will have a link to the modal window, so click that, then click the "back" button in the window as it will take you BACK to the start page. That's the issue I'm having as I don't want this to happen.
http://www.apus.edu/_test/evan/modal/start.htm
Back Button
Foward Button
If you can see where they are in the page (ie: the start page having a static back / forward button ) why not just make the back button a javascript:void(0)? If you aren't going to have a defined front location, use server side to store their start place, and once they have reached it, disable the back option.