Is there any way to call a JAVASCRIPT function in PHP in AJAX
Answers were Sorted based on User's Feedback
Answer / arya
<?php
$str = '<script language="javascript">
function get_pop_up()
{
alert("This is a way to call JAVASCRIPT function in PHP");
}
</script>
<input type="button" name="Click" value="Click"
onclick="get_pop_up();">
';
echo $str;
?>
| Is This Answer Correct ? | 15 Yes | 3 No |
Answer / ashiq
yes , who say no
definite their is way to call javascript function when
calling ajax, ajax execute php script and with in the ajax
commmand we can call after ajax function which execute the
javascript function code
examaple
if (request.readyState == 4)
{
if (request.status == 200)
{
data=request.responseText;
document.getElementById
(_dynCont).innerHTML=data;
try
{
jSFromAjax
(varbol=true,varStr='');
}
catch(ex){}
}
}
this is the function that execute the js with ajax
| Is This Answer Correct ? | 14 Yes | 4 No |
Answer / guest_shah
in php u can call javascript function in onlclick or onchange
event of html tag.or u can call like
?><script language='javascript'>
javascriptfunction
</script>
<?
| Is This Answer Correct ? | 3 Yes | 13 No |
Why did you choose this particular career path?
Is php outdated 2019?
what is this error "Call to unsupported or undefined function mysql_connect();" and when you will get this?
What is lamp in php?
What are the encryption functions available in PHP?
What is rest api in php?
What is meant by session in php?
Write down the code for save an uploaded file using php?
How to get number of days between two given dates using PHP?
What are magic constants in php?
How can we get ip address of a client in php?
What is if isset ($_ post submit )) in php?