Klajdi Dosti
Klajdi Dosti

Reputation: 174

how to execute first php function than javascript function onclicking/submiting a submit button

i have this input field:

<input type="submit"  name="rregjistro" value="Rregjistro Tani Te Dhenat" onclick="openmodal()" >

I want first to execute POST script in PHP and than to open a modal popup using a javascript function.

Can you please help me! Thanks in advance!

Upvotes: 3

Views: 261

Answers (2)

pedrouan
pedrouan

Reputation: 12910

It is not possible to click using PHP because form submission is the action on the client's side, i.e in your browser. Events in the browser like this can be executed by javascript or other client language.

<form ... >
<input type="submit"  name="rregjistro" value="Rregjistro" />
<!-- remove onclick attribute for now -->

</form>

<div id="myResult"></div>

<script>
$(function(){
    $("input[name=rregjistro]").click(function(){
        // url needs to belong to your domain
        $.ajax({url: "/your_url_path", success: function(result){
            $("#myResult").html(result);
            open();
        }});
    });
});
</script>

Upvotes: 4

parnas
parnas

Reputation: 721

You would still need to start with a javascript function first.

In jquery that would be something like that:

function open() {
  $.post('http://url', $('#form').serialize(), function() {
    alert('popup goes here');
  })
)

Upvotes: 0

Related Questions