jquery Questions

2

Solved

When I dynamically change the icon, it does not reflect the change on the page, even though in the markup it was changed. Example: <ul data-role="listview" data-autodividers="true" data-filte...
Tamworth asked 27/2, 2013 at 14:56

2

I have a single line textbox. I want to with jquery convert it to multiline but control how many lines that are added to it. I want to also be able to limit the number of characters on each line. ...
Acidulate asked 25/8, 2010 at 18:23

3

Here is my chart creation createChart = function (name, contributions, idArray) { globalIdArray = idArray; var ctx = document.getElementById("myChart"); var myChart = new Chart(ctx, { type: "b...
Marketplace asked 3/2, 2017 at 15:52

5

Solved

I would like to create a select dropdown that contains all values from a column with each value only appearing once. Is there a way to achieve this in JavaScript or jQuery assuming I have a basic...
Azine asked 21/11, 2013 at 21:27

4

I am using select2 for Multiselect option in my form.In the form I am using key controls to traverse thru the form.So If I press tab key it should traverse thru the fields in the forms.When I press...
Cascarilla asked 25/2, 2015 at 12:5

11

Solved

<input name="e_password" id="e_password" type="password" autocomplete="off" /> The above is a password field which for some reason, is automatically filled only in Mozilla (not in Chrome an...
Sharynshashlik asked 25/7, 2015 at 8:45

2

Solved

I am trying to print a modal using window.print() command. The problem I am facing is that for eg. the content on modal is of 1 page long but when i print it shows 2 pages with same content getting...
Vickers asked 23/3, 2020 at 9:14

5

Solved

I just spent 'hours' with the following scenario: (all back to the basics) $('#typo').bind('click' etc ... I had a typo in the selector, but jQuery resolves $('#funny something out there').bi...
Pro asked 16/12, 2013 at 21:52

4

Solved

For an array: ["5","something","","83","text",""] How to remove all non-numeric and empty values from an array? Desired output: ["5","83"]
Morganite asked 3/6, 2014 at 18:47

3

I have been trying to configure and use Mmenu for a while now, and cant seem to figure out how to change the title of the menu, I can't seem to find a way to change it from "Menu", I have tried di...
Ev asked 17/5, 2015 at 11:24

3

Solved

Is there a way to store in a variable a cookie creation date? I'm using the jquery.cookie plugin. If there is not a way, I'm thinking about store in the cookie, as value, the actual time/date. It c...
Serviceberry asked 18/7, 2013 at 11:23

7

Solved

I using default ASP.NET MVC 4 validation bundle in my application. In view I have a date field in the format of "dd/MM/yyyy" and jquery validation failed to validate the format. Then I added the be...
Markup asked 31/12, 2013 at 6:16

7

Solved

I am working on a requirement that I have to clear a select2 dropdown box after form submission through ajax. I have searched & tried few solutions but didn't work though. my select2 code is: ...
Diggins asked 22/3, 2017 at 12:6

2

Solved

I am using Masked Input Plugin from digitalBush for jQuery, which is very simple to use. For some cases, I want to pre-populate data for the client, so for something like this : .mask("123999") ...
Lahr asked 6/7, 2012 at 1:40

3

I have some code I wrote that alerts the user on mobile phones that change to landscape to basically go to portrait. This works great but if the user starts off in landscape it obviously doesnt sho...
Octangular asked 11/6, 2015 at 15:51

9

Solved

The Owl Carousel slider is not working with RTL. I add rtl: true in the configuration. But it's not loading the slider. The slider space is there and navigation is showing. But only the slider cont...
Screech asked 14/8, 2016 at 6:25

2

Solved

Referring to the question i want to move my y-axis scrollbar with mouse wheel Is there any way to do it ? yAxis: { scrollbar: { enabled: true, showFull: false }, } Updated Code Bellow ...
Wool asked 19/9, 2016 at 10:10

5

Solved

Im trying to created a nested list using jquery nestable with drag feature disable throughout the list. Below is my html. <div class="dd" id="nestable"> <ol class="dd-list"> <li cl...
Classless asked 28/5, 2017 at 7:17

10

Solved

I want to change the font-size of one of my select boxes. But it is not working: http://jsfiddle.net/jEADR/3717/ <link href="http://cdnjs.cloudflare.com/ajax/libs/select2/3.2/select2.css" rel...
Humming asked 14/3, 2017 at 14:20

3

Solved

I'm working on travelling website where I used a bootstrap tab. In first tab there is some content and in second tab I showed a full calendar js. All is working fine but when I show full calendar i...
Exequies asked 4/9, 2019 at 20:31

3

Solved

I use jQuery DataTables and get this warning message: DataTables warning: table=userTable - Invalid JSON response A servlet fetch users from MySQL which I want to display in a jQuery Datatable...
Melamine asked 7/11, 2015 at 11:26

4

I have a jQuery slider initialized and then dynamically set min max values depeding on the contents of a json-request. Steps av even 100, min a max are recalculated to even hundred, most of the cas...
Cowled asked 20/1, 2010 at 12:54

3

Solved

I want to play sound, after my page has loaded. Here is my JavaScript code: var playAudio = $("#sound")[0]; playAudio.play(); Here is my HTML code: <audio id="sound"> &l...
Kuntz asked 20/11, 2020 at 12:47

7

Solved

I need to merge JSON objects with same key into one so that it gets an object or array(doesn't matter if result is an object or array) which holds the key and an array for the values example JSON ...
Johnjohna asked 21/12, 2017 at 11:17

2

Solved

Trying to understand why the two cross-browser properties of Javascript Error object, namely "name" and "message", can't be found using the "for ... in" method // error code ... }catch( err ){ ...
Jacklyn asked 27/3, 2013 at 9:20

© 2022 - 2024 — McMap. All rights reserved.