0

I've included toaster.css, toaster.js and jquery like that:

<script src="Scripts/jquery-2.1.4.js"></script>
<script src="Scripts/toaster.js"></script>
<link rel="stylesheet" type="text/css" href="QtApp/Notifications/toaster.css" />

and i am sure that the paths are correct. But when I try to call toaster.pop(..) or toaster.error(..) the respective functions are called and executed but no popup is shown. Any idea why that happens?

1 Answers1

0

The js file you are referencing looks like it has a typo

<script src="Scripts/toaster.js"></script>

should be

<script src="Scripts/toastr.js"></script>

The same with your css.

When you go to the 'sources' tab in the browser dev tools are you able to navigate to the js and css files?

Ducker
  • 198
  • 1
  • 10