All Questions
295 questions
0
votes
0
answers
42
views
Why JQuery UI sortable doesn't work in the if condition?
I want to create drag and drop funcionality with unordered list. So basically I check in the if condition if the list contains any items and if the list is not null, if I don't check then I get a ...
2
votes
1
answer
137
views
Jquery Datepicker element displaying date in incorrect format and messed up styling
I am having a problem with my datepicker element that is driving me crazy. I am using the following code to create the datepicker element in index.cshtml:
@using ChartDataStructures;
@model UpToDate
@{...
0
votes
1
answer
1k
views
How to open the file in link in MS edge using jquery or javascipt?
Below is the code handled, to open file link in the browser.
Here when I try to load the file link in the MS Edge browser.the file is not opening when
I click on the link from MS Edge browser
.this ...
0
votes
1
answer
261
views
Opening second time popup is displaying at bottom of page
I am displaying one popup when user click on button.
First time when user click at that time, that popup is opening perfectly and displayed at top.
Now user submit form and click on Save button which ...
1
vote
2
answers
229
views
jquery load event not triggering on iframe when loading pdf - Even when it does trigger fine in seperate project
I am having a very weird problem that I cannot figure out. I am trying to add a loading dialog box to a page that generates a pdf. I coded the web page in a separate project, and the dialog box ...
0
votes
1
answer
223
views
How to implement this jQuery UI Autocomplete functionality example correctly?
I have been trying to implement different examples of jQuery Autocomplete functionality, but none of them work.
The latest one that I have tried implementing is the following example, which seems to ...
0
votes
2
answers
5k
views
Uncaught TypeError: Cannot read properties of undefined (reading 'target') & (reading 'value')
After JQuery Version Upgrades to 3.5.0 from 2.14, I am receiving the following error, but I did not fully understand what the problem is,there is radio = event.target The error I received in the ...
0
votes
1
answer
1k
views
jQuery show loader while page get reloading
I have created functionality using jQuery, so when user click on button it will make clear filter on that page and reload page.
While clearing filter loader is showing on page, but when reload page ...
1
vote
1
answer
246
views
Button focus on JQuery Dialog doesn't work when showing from code behind the page - asp.net / c#
I am calling the confirmDialog method from code behind which works fine but for some reasons the focus is not set on the cancel button. Focus is set when i click on the modal gray area outside pop up.
...
0
votes
1
answer
827
views
ASP.NET Core MVC autocomplete partial view not showing result
I have a partial view that will not show the result that it gets from the controller. This is in ASP.NET Core MVC 2.1.
The base for the code is from here.
Here is the partial view:
@model City
<!--...
0
votes
0
answers
824
views
jquery-ui.min.js takes too much time to load
jquery-ui.min.js takes too much time as per google page speed insights. is there any solution to reduce this time and improve performance of my page?.... I have loaded it as defer still it is showing ...
0
votes
0
answers
80
views
How to resolve jquery version not less than 4.00
I have some libraries, but when i try to inspect or debug i always get this annoying misconflict jquery libraries. The problem is stating must use latest of Bootstrap version 4.00 not less. This ...
0
votes
1
answer
415
views
how to deserialize Json-Object in asp.net
I am able to get the element to Code-Behind by Using the Ajax-Call But I am unable to Deserialize
the element in Code-Behind in asp.net
This is my Ajax call
function responseData2() {
var ...
1
vote
1
answer
4k
views
highlighting specific days in jQuery datepicker
I have looked through various posts to try and solve my problem such as:
How to highlight some specific days with multiple colors in JQuery Datepick
Although none work for my own specific needs. I am ...
0
votes
3
answers
1k
views
Populating jQuery Datepicker with specific dates
I am trying to make an asp.net mvc view for a user to use the jQuery UI Datepicker to select only from a specific number of available dates like the picture below.
So far I have used the controller ...