Seeking guidance in jQuery as I aim to modify the text of the "Sign Up Now" button post closing the alert box. I'm contemplating creating a function that triggers once the alert box shuts down, but my attempts so far have been fruitless. Any assistance on this matter will be highly valued!
Below is my HTML:
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="css/reset.css">
<link type="text/css" rel="stylesheet" href="css/normalize.css">
<link type="text/css" rel="stylesheet" href="css/style.css">
<title>Relaxr Blog Page</title>
<meta name="description" content="Relaxr Landing Page"/>
...
And my CSS:
* {
-moz-box-sizing: border-box; /* Firexfox */
-webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
...
}
...
Finally, here's my jQuery:
$('.signupnow')
.on('click', function (){
alert("We are not currently taking sign ups");
});
$('.read-more1').on('click',function (){
$('.additionaltext1').slideDown();
});
...