Tagged Questions
0
votes
2answers
20 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
36 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
32 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
32 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
26 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
49 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
63 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
42 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
48 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
35 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
27 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
23 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
64 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
38 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 () {
...