Tagged Questions
43
votes
6answers
80k views
AJAX Jquery UI Dialog window loaded within Ajax style Jquery UI Tabs
The ajax tabs work perfectly well. It's pretty straightforward with that part. However, getting the ajax UI Dialog modal window to trigger off of a link has been un-succesful.
Any help in this would ...
16
votes
13answers
37k views
jQuery Accordion and loading content through AJAX
I would like to load the content under each jQuery accordion header using the jQuery load command. Currently, I have set this up as the following
$(function() {
$("#accordion").accordion({ ...
0
votes
1answer
741 views
How do I use these JSON results to build a dynamic html table in jQuery?
I have a textfield where the user enters some number and clicks the "search" button. On clicking the "Search" buttton it displays all the associated JSON records with that number. How do I construct ...
3
votes
5answers
29k views
Jquery Tabs- Load Contents only when clicked
I am relatively new to jquery and web development.
I am using jquery tabs to create tabs.
But i want the contents to be loaded only when i select a particular tab.
Can someone please help me with ...
5
votes
1answer
4k views
showing progressbar progress with ajax request
I want to show progress with jquery ui progress bar when an ajax request fires and when it finishes. The problem is I don't know how to set values for the progress bar depending on the progress of the ...
1
vote
1answer
597 views
Select only specific dates in jQuery UI datepicker (date list comes from AJAX)
Here I send movie id and get available days and I want to set it into calendar. but it is not working and it disable all dates. from the php it returns date string. date string is coming correctly but ...
1
vote
2answers
894 views
get current text <select>
<select runat="server" id="sctFieldMain">
<option></option>
</select>
Script
$(xml).find("FieldMain").each(function()
...
1
vote
1answer
526 views
jQuery UI ajax tabs - requests multiplying when loading links within tabs
I'm using jQuery UI tabs, loading the tab content via ajax. Content may contain links which I want to load within the selected tab. To achieve that, I use this code
$("#tab-div").tabs({
load: ...
0
votes
1answer
653 views
jquery tabs problem
I am new to jquery and created 10 tabs using :
$(document).ready(function() {
$('#tabs').tabs();
});
Then I used <li>a href="#tabs-1"> MYTAB </a> </li> htlm code for my ...
0
votes
2answers
2k views
jQuery live and sortable
I have the following static html:
<ul id="mylist">
<li id="li_10"><a href="10">Item 10</a></li>
<li id="li_20"><a href="20">Item ...
1
vote
5answers
6k views
jQuery plugin for Facebook “Like” Button
On lots of sites now, you can see a Facebook "Like" Button.
- When depressed, it changes background color.
- When mouse-overed, it allows you to write some additional text
I love this interface - ...
4
votes
5answers
7k views
Jquery Tabs: spinner option not working
I need an ajax animation while the remote page is loaded in tabs.
I am using
$('#tabs2').tabs({ spinner: ''<img src="../../Content/images/Jquery/spinner.gi'' });
Even $('#tabs2').tabs({ ...
2
votes
7answers
475 views
How to keep data functions and variables DRY?
How do I make this Jquery dry?
// Adding data to input depending on what div is clicked
$('#navninfoDiv').click(function() {
$('input#webhost_navninfo').data('myData', null);
});
...
2
votes
3answers
14k views
Jquery UI Slider - Input a Value and Slider Move to Location
I was wondering if anyone has found a solution or example to actually populating the input box of a slider and having it slide to the appropriate position onBlur() .. Currently, as we all know, it ...
4
votes
1answer
105 views
tagcompletion like stackoverflow
Working example
Bug
add an item that exists in the list
add an item that doesn't exist in the list
add an item that exists in the list by clicking arrow key or clicking an item with mouse
notice ...