Git Product home page Git Product logo

Comments (3)

fabien-d avatar fabien-d commented on July 23, 2024

This is not an alertify.js issue. This is a form handling/submission issue. Without changing your code, the following would work.

Pass the event object from the markup:

- onclick='return xFunction();'
+ onclick='return xFunction(event);'

Add the event object as a parameter:

- xFunction = function() {
+ xFunction = function(event) {

Now the preventDefault() will stop the form from submitting so you'll have to submit it programmatically when the dialog is confirmed.

- $('#conf1').click();
+ $('form').submit();

you can look at a quick "working" example on CodePen: https://codepen.io/fabien-d/pen/c2874e38af19af131d088afc75bdf2d2

from alertify.js.

TeeeeJay avatar TeeeeJay commented on July 23, 2024

Thank you so much for your reply yes its working i guess, but i have something wrong in my php as when i submit the form i cant get the POST to query the DB, maybe i will just use the browser alert with return true and return false better for my time.
Thank you so much again.

from alertify.js.

TeeeeJay avatar TeeeeJay commented on July 23, 2024

Fabien it worked Perfectlyyy Thank you so muchhh it was my mistake first the things you corrected for me then in submitting the forms, i had so many forms on a single page it was a mess
Thank you so much again you are the best

from alertify.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.