Boy Pasmo
Boy Pasmo

Reputation: 8491

Jqueryui image reference no error but image not showing

What am I missing here?

I am using ASP.NET MVC 5, downloaded the JqueryUI combined via Nuget package.

As image below, there's no error reference for file css/js but the close button is not showing.

Any help would be much appreciated. Thank you!

enter image description here

EDIT

I have also included the path for bundle.

enter image description here enter image description here

Upvotes: 0

Views: 214

Answers (1)

aleha_84
aleha_84

Reputation: 8539

it looks like you have bootstrap also included into your project. It got conflict with jQuery-UI.

Do this:

$(document).ready(function () {
    if ($.fn.button.noConflict) {
        $.fn.btn = $.fn.button.noConflict();
    }
});

Upvotes: 1

Related Questions