0
votes
0answers
12 views

Mathematical equations with jQuery UI Slider

I have multiple sliders and it updates the total slider accordingly per each slider. When I go to slide another slider it subtracts it again from the original total value and not the updated value ...
1
vote
1answer
14 views

jqueryui Tabs with Tablesorter

I'm using jquery ui tabs with the tablesorter 2.0 plugin to obtain sort abilities on a dynamically populated html table but the sort only happens on the first tab upon page load. The other tabs do not ...
0
votes
1answer
30 views

No result appear in the autocomplete

The action return a JSonResult and the content is correct. I missed something in the autocomplete code ? HTML : <input type="text" class="span12" id="mytextbox" /> The javascript : ...
-1
votes
0answers
34 views

Excel report in javascript/jquery [closed]

Can i create excel report in javascript/jquery for all browser. If yes, please provide me some references... I use var oExcel = new window.ActiveXObject("Excel.Application"); but it gives error ...
-1
votes
0answers
24 views

jquery files confliction stops working

When i added some plugins on page then already existing jquery files starts conflicts,due to this already running functionality stops. How to remove conflictions? ...
0
votes
1answer
51 views

Custom input box behaviour

I have some simple HTML : First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="submit" value="Submit"> ...
1
vote
2answers
61 views

Autocomplete in dynamically added textbox

how to add the auto-complete in this dynamically added Textbox? i have used this way $('#se').autocomplete();, but not getting that. $(document).ready(function() { var counter = 2; ...
-6
votes
1answer
81 views

Jquery popup only display at first time when you enter in page [closed]

I want to display jquery popup only first time when any one enter on that page.if we reload that page then popup will not display.
0
votes
1answer
34 views

back to main page with Jquery Ajax with tabs

i have a tabs with juqery ui like this and the preloaded tab initialize with wordpress posts... normally when i click on a post i can see post content. this is main page: this page show only one ...
1
vote
1answer
81 views

jquery ui ajax tab using aria-control instead of url

In jquery-ui 1.10.3 the url method had been replaced with aria-control method. I can't work out how to use it. I am trying to load data from a file called action.php action.php file sends the ...
-3
votes
1answer
30 views

Pan a div using jquery [closed]

I need a jquery plugin that can create a similar effect to the this http://gallery.artofgregmartin.com/ I am not looking for the photo gallery feature but a plugin that can pan any placed content in ...
0
votes
1answer
81 views

Jquery Exit popup with custom text

I need to use jquery Exit popup in my shoping cart website.If any person try to exit from website then there would be popup of 10% discount to stay him on that page. I searched alot but there are ...
2
votes
1answer
78 views

jQuery UI autocomplete: enforce selection from list without modifications

I am using the custom binding provided in Autocomplete combobox with Knockout JS template / JQuery I need to enforce that the user must select a value in the autocomplete list and after they select ...
0
votes
1answer
53 views

How to access json response to jquery autocomplete inside and outside of jquery autocomplete?

Here is the response I'm getting back (it's working): {"matches":[ {"_core_product_id":"648","finish":"Distressed Green\/Antique Bronze","COUNT(*)":"1"}, ...
0
votes
3answers
54 views

jQuery .show() not working on <span> tag

This seems like it would be pretty straightforward. I have a text box and I want a link to display based on whether or not there is content in there. In my document.ready I have the code set to ...
1
vote
1answer
33 views

prevent page reloading second view in jquery mobile

I am new to Jquery mobile, In my Index.html page when I click on search button list will generate dynamically using ajax call, when I click on list It will go to display page and display all the ...
0
votes
0answers
41 views

Checkbox getting checked but not visible as checked

I am using MVC Telerik Treeview control to load my tree view. Treeview is displaying checkboxes for its Items. Now my problem is when I checkes a checkbox then it gets checked and then immediately ...
0
votes
0answers
41 views

Refresh jquery tab in Cakephp from Ajax response

In cakephp 2 I have a js link that does a simple action in a controller. The ajax response works fine however the link is located in a tab from the jquery ui tabs. I am trying to get the tab to ...
0
votes
0answers
26 views

Typeahead List population of dynamic data and on selection adding the selected value to the previous list

I have a dynamic list which I am getting from an ajax call while I try to search for a product, here is the code for the same function searchProduct(){ var contentString = ...
1
vote
2answers
65 views

Use jQuery to check and see if div element is empty

Below is the code I'm using to place a blur event on a text box in my ASP MVC 3 view. The code works fine if #MailingState is empty, however it cannot tell if #channelName is empty. For example, if ...
0
votes
1answer
45 views

jQuery .blur method not working

I am trying to set up an Ajax call whenever the user enters information into a particular field on my ASP MVC web page. Below is the jQuery .blur method $('#MailingZip').blur(function () { ...
0
votes
1answer
53 views

Event listener for multiple elements - jQuery

In the ASP MVC page I'm currently working on, the values of three input fields determine the value of a fourth. Zip code, state code, and something else called a Chanel Code will determine what the ...
0
votes
2answers
40 views

jQuery Drop Down has no method 'val'

Below is a simple jQuery if statement I'm trying to use on my ASP MVC web page, but I continually get the error Object #drpProducerType has no method 'val' I also tried using the :selected syntax, ...
2
votes
1answer
189 views

JQuery Mobile 1.3.1 “$.mobile.loading” not working

I have the following code: HTML: <link rel="stylesheet" href="js/jquery.mobile-1.3.1.min.css"/> <script src="js/jquery-1.9.1.min.js"></script> <script ...
0
votes
0answers
41 views

how to slide data fetched from database for showing at a time 2 records in table format?

I have about 15 or 20 record in a database table. I have fetched these data and keep with a javascript array. 1st record in array[0] and 2nd record in array[1] and so on maintained by i=0 to total no ...
0
votes
4answers
43 views

Make Array in Jquery For AJAX Posting

$('#saveplaylist').click(function () { var length = $(' .organizer-media').length; var contents=$(' .organizer-media'); var data = null; ...
0
votes
1answer
57 views

Dialog box close after click is made

I have a dialog box open to set photo as profile avatar picture,... how can I close dialog box after click is made? thanks in advance,... <script type="text/javascript"> ...
0
votes
3answers
42 views

how to refer to current p tag in jquery

I have tried in html as <?php while (have_posts()) :the_post(); ?> <div class="product-content"> <?php if ($len > 122): ?> <?php echo $sub ."........"; ?> ...
0
votes
0answers
55 views

JQuery datetime picker fail to respond in the second attempt

This might be quite trivial to an experts, Yet I don't have an idea on where to start looking. So some tips of expertise will be highly appreciated. I'm using this jquery datetime picker add on. I'm ...
1
vote
1answer
272 views

jQuery - Use key/value pair in autocomplete

In my ASP MVC view, I am passing a key/value pair back from the controller. After looking at fiddler and viewing in Chrome's debugger I can see that the information is being passed back correctly. I ...
0
votes
1answer
56 views

How to display multiple text in lightbox

I have written html portion <ul class="all-products"> <?php while (have_posts()) :the_post(); ?> <li class="single-product"> <div class="outer-block"> ...
0
votes
1answer
30 views

jquery load() will only load the html from the extermal page, no stylesheet or jquery ui

I have two pages. For explanations sake I'll call them page A and Page B. When I open page B in my browser it is rendered with all the styling and jquery ui code working properly, but when I open page ...
0
votes
1answer
108 views

ASP MVC 3 - Using key/value pair to populate typeahead.js dropdown list

I am trying to create a drop down list that, for each item, lists an agent name and id on one line, and some ancillary information on the line below (exactly like you see in the typeahead.js demo ...
1
vote
2answers
54 views

JqGrid reposition the of Add button

Am a beginner in jqGrid ,where am using navGrid, for Add(Which is used for File Upload), when i click on add button, it pops up a Modal dialog in top, leftside of the page.its very uneasy to go the ...
0
votes
1answer
73 views

Selectively disabling unchecked options in JQuery multiselect

In JQuery multiselect. http://www.erichynds.com/blog/jquery-ui-multiselect-widget Can we selectively disable some of the unchecked options in the select-box upon selecting(checking the checkbox) one ...
0
votes
0answers
33 views

Dynamically populating JQuery DataTable

I need to modify JQuery datatable in my JSP, where i have no static data for column creation. Number of columns along with column names and data to be populated have to come from server. How to code ...
0
votes
1answer
47 views

How to validate a jquery autocomplete in my Rails App?

My very simple Rails App has a Model with two methods: :From :To I use the awesome (Google Maps API) powered address-rails-picker app for the :to and :from in the form to automplete any location the ...
0
votes
1answer
88 views

How to clone div with html controls without their content using jquery & refresh dropdown for IE?

I am using jquery .clone() function to clone a div which is having 6 controls (dropdowns, textboxes etc) .I have a functionality where there are 2 dropdowns DDL A & DDL B . Now changing the DDL A ...
0
votes
2answers
49 views

jquery: On loading dialog from another page & adding it to a DIV, i need only the dialog area to be added?

I'm loading a dialog from another page using load. I'm trying to load it inside a DIV. Now i need only the dialog box area to be added inside my div , not the entire blank space that are present in ...
0
votes
3answers
61 views

How to get the values from the Json using Jquery

Hi I'm new to Jquery and i don't know how to use json data. I have a Json which is coming as a response. My success function is success: function(resp) { var x = JSON.stringify(resp); ...
0
votes
2answers
59 views

jQuery : dynamically created div ID can't be selected? [duplicate]

$('#content').droppable({ drop:function(event , ui){ $('<div>').appendTo('#content'); $('#content div').load('div.html'); } ...
0
votes
1answer
60 views

jQuery UI Autocomplete With Json Not Showing Suggestions

I'm experiencing some troubles with an autocomplete component from jQueryUi. The list with autocomplete suggestions doesn't appear. I've tested the following code (from jQuery UI) and, despite ...
0
votes
1answer
59 views

How do I fetch a value from multiple select used by asmselect?

I have my code with a form. I validate this with a javascript function sub(). When validation successful inside the javascript function i post to a php file by $.POST. I can fetch the name field by ...
0
votes
0answers
84 views

Jquery Table Filter with Tag

Need to a jquery for tag from filtered data, Here is my code for "Filter Data From Table Using Jquery" JS Fiddle For This is at http://jsfiddle.net/7BUmG/2/ HTML <input type="text" id="search" ...
0
votes
1answer
48 views

How do i disable or enable dates according to user choice in jquery-ui-datepicker?

I have some user profile page where in the url has the username(unique key). e.g- > www.example.com/abhiram_giri I have one date picker input field. I want the date enable according to user choice. ...
0
votes
0answers
60 views

Jquery UI Dialog with Struts Navigation Action

I am using Struts 1.3 and JQuery v 1.7.2 , JQuery UI 1.10 in My Web Project. currently , i have created NavigationAction class which extends struts Dispatch Action class and all requests of the ...
0
votes
1answer
107 views

ASP MVC3 - Make second call to controller once jQuery autocomplete value selected

Below are the jQuery versions that I am referencing in my ASP MVC view <script src="http://code.jquery.com/jquery-1.8.3.js" type="text/javascript"></script> <script ...
0
votes
1answer
64 views

redirecting to same position after selecting a checkbox from grid in asp.net mvc through jquery

I have a table where in i have a column of check-box. After user selects a particular check-box, suppose from row 20, and perform necessary actions, i want to call the grid but it should point to the ...
0
votes
3answers
64 views

Get the name of the image with Jquery

I have the following HTML :- <li class="rpItem rpFirst d1"> <a href="#" class="rpLink 1"> <span class="rpOut"><img alt="" ...
2
votes
1answer
292 views

Uncaught TypeError: Object [object HTMLInputElement] has no method 'prop'

when i am trying set radio button checked through jquery.. it gives me an error Uncaught TypeError: Object [object HTMLInputElement] has no method 'prop' var sub="twoWheeler"; if ...

1 2 3 4 5 19