Picture this scenario: I press a button, and then a confirmation pops up using the Visibility
property. In my jQuery code, I have two CSS properties defined.
Here is the code snippet:
$("#success").css({"visibility": "visible"}).delay(3000).css({"visibility": "hidden"});
Can someone please provide me with the correct syntax for achieving this without resorting to using the show/hide property? Thank you.