Really don't have much to say,
https://github.com/sdkcodes/codeigniter_bootstrap_alert
Head over to the link, it says it all.
Thanks
https://github.com/sdkcodes/codeigniter_bootstrap_alert
Head over to the link, it says it all.
Thanks
On this blog, I'll share my experiences, coding tips and tutorials and some bits about myself as a software developer and entrepreneur.
So, you've just started your programming journey and it has been a pretty mixed feeling - sometimes feeling extremely excited when your code runs, and the other times , extremely frustrated when you have no idea what's wrong . Well, either ways, I'm happy to welcome you to the brotherhood.1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!DOCTYPE html> <html> <head> <title>Trying Javascript</title> </head> <body> <form> <input type="text" name="username" id="username" placeholder="Input your Username"> <br> <input type="text" name="email" id="email" placeholder="email@example.com"> <button type="button" onclick="showDetails()">Show Details</button> </form> </body> <script> function showDetails(){ var username = document.getElementById('username'); var email = document.getElementById('email'); alert('Your username is: ' + username.value + '\n\ And Your email is: ' + email.value); } </script> </html> |
© Copyright
Let's talk Software