+ 1
2 values to the button
I want when i click on the it goes to sololearn page and says welcome + name
3 odpowiedzi
+ 2
you can't do it with external page, to do that you should write on sololearn source code but you can alert and then redirect to sololearn
+ 1
<button onClick="clicked()">Redirect Sololearn</button>
<script>
function clicked(){
alert("Welcome to Sololearn");
window.location="https://www.sololearn.com"
}
</script>
0
Can you give me an example