Is there any way to call a JAVASCRIPT function in PHP in AJAX

Answers were Sorted based on User's Feedback



Is there any way to call a JAVASCRIPT function in PHP in AJAX..

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

Is there any way to call a JAVASCRIPT function in PHP in AJAX..

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

Is there any way to call a JAVASCRIPT function in PHP in AJAX..

Answer / ravi

No

Is This Answer Correct ?    16 Yes 9 No

Is there any way to call a JAVASCRIPT function in PHP in AJAX..

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

Post New Answer

More PHP Interview Questions

Which is the best institute in Chennai to learn PHP? Please help.

0 Answers   BPO,


What is difference between php and html?

0 Answers  


How do you format and output a number with leading zero's?

3 Answers  


How to Calculate Internal links & External Link in Website.(For Example YAHOO WEBSITE)

1 Answers  


What is preg_match?

0 Answers  






How to Retrieve a Cookie Value?

0 Answers  


What does it mean when it says the csrf token is invalid?

0 Answers  


How can we submit from without a submit button?

0 Answers  


What are the advantages of using php?

0 Answers  


Tell me can the value of a constant change during the script's execution?

0 Answers  


What is cookie in php with example?

0 Answers  


What is the difference between print() and echo()?

0 Answers  


Categories