Jump to content

[SOLVED] painting VARs in functions.


unistake

Recommended Posts

Hi again!

I also have a problem with 'echoing' variables within a text string.

I am trying to get the output here to say: 'this is the qualifier! £25'

 

<html>
<body>

<script type="text/javascript">
function calc() {
    var fb = freebet;
text.innerHTML = 'this is the qualifier! £' + fb;
}
</script>


<form name='calcform'>
  <input name="freebet" type="text" id="freebet" value="25">
   <input type="submit" name="button" id="button" onClick="return calc();">
<span id="text"></span>
</form>

</body>
</html>

 

any ideas? thanks

Link to comment
https://forums.phpfreaks.com/topic/169146-solved-painting-vars-in-functions/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.