Answers for "Alert.alert"

3

js alert

// Alert used to display a message to the user.
alert("Hello, World!"); // Displays Hello, World! to the user.
// You can also use:
window.alert("Hello, World!"); // Also displays Hello, World! to the user.
Posted by: Guest on August-10-2021
0

change size of alert bootstrap

In Bootstrap (v4 and v5), use this width modifier (w-25, w-50, w-75):

<div class="alert alert-danger w-50" role="alert">
  Here is some text!
</div>
Posted by: Guest on January-28-2021
7

bootstrap alerts

<div class="alert alert-warning alert-dismissible fade show" role="alert">
  <strong>Holy guacamole!</strong> You should check in on some of those fields below.
  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
    <span aria-hidden="true">&times;</span>
  </button>
</div>
Posted by: Guest on April-16-2020
4

js alert

alert("Hello! I am an alert box!!");
Posted by: Guest on April-03-2020
7

javascript alert

alert("string");
Posted by: Guest on May-30-2020
1

how to make alert in javascript

alert("Alert")
Posted by: Guest on December-30-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language