Ramco Ramco

Ramco Ramco

  • 442
  • 3.4k
  • 523.4k

Notify JS Location

Jun 21 2021 1:56 AM

Hi

  In below code it appears on Top Right not at Top Centre of Main Layout.

@if (TempData["Message"] != null)
        {
            <script type="text/javascript">
            window.onload = function () {
                var message = "@TempData["Message"]";
                $.notify(message, {
                    color: "#D44950",
                    globalposition: 'top center',
                    type: 'success',
                    icon: 'check',
                    animation: true,
                    animationType: 'drop',
                    close: true
                });
            };
            </script>
        }

Thanks


Answers (3)