[Solved] Load php function onClick [closed]


Replace your javascript with this one

$("#Readtok").click(function(){  //here t is small letter in ReadTok
    $("#tokentype").load('../process/read_token_type.php');
});

Because your button id is id="Readtok"

3

solved Load php function onClick [closed]