Variable dans script htm - HTML/CSS - Programmation
Marsh Posté le 14-04-2015 à 14:56:25
j ai bien l invite de votre pseudo mais ca m affiche pseudo il prend pas la variable ....
<script>
var pseudo = prompt("votre pseudo ?" );
$(document).ready(function() {
$("#webcam" ).scriptcam({
chatWindow:'chatWindow',
onError:onError,
promptWillShow:promptWillShow,
showMicrophoneErrors:false,
onWebcamReady:onWebcamReady,
connected:chatStarted,
setVolume:setVolume,
timeLeft:timeLeft,
loginName: ' ".$pseudo." ',
chatRoom:'room1'
});
Marsh Posté le 14-04-2015 à 15:00:49
Code :
|
Marsh Posté le 14-04-2015 à 14:20:54
bonjour a tous , j ai un peu de mal a integrer une variable dans une page html
voila le bout de code
<script>
$(document).ready(function() {
$("#webcam" ).scriptcam({
chatWindow:'chatWindow',
onError:onError,
promptWillShow:promptWillShow,
showMicrophoneErrors:false,
onWebcamReady:onWebcamReady,
connected:chatStarted,
setVolume:setVolume,
timeLeft:timeLeft,
loginName:'pseudo1',
chatRoom:'room1'
});
</script>
je voudrais faire une page d authentification avant d appeler ma page .
donc mettre en variable le login et la room
quelqu un a une idée ? merci d avance