The jquery-ui tag has no wiki summary.
0
votes
1answer
532 views
jQuery tabs plugin with callback to fetch data
I want to use tabs plugin and load tab contents using ajax. The problem is: the plugin requires a solid .php file to be specified in href e.g.
<li><a href="ajax/content3-slow.php">Tab 3 ...
3
votes
1answer
1k views
How to include jquery-ui library in WordPress?
I'm trying to load the jQuery UI library into a WordPress plugin using this enqueue statement:
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
The jQuery library loads fine, but ...
1
vote
2answers
2k views
How to enable the content editor as a droppable target with jQuery-ui?
I'm trying to enable the WordPress content editor as a droppable using jQuery UI drag and drop. However, I can't get the drag to drop, or the drop event to fire.
Is there something I'm missing?
...
0
votes
1answer
345 views
A carousel slideshow plugin in JavaScript
Am looking for carousel slideshow plugin that is similar to the one implemented here.
Any JavaScript slideshow that closely resembles that one would do. It does not even have to be a WordPress ...
2
votes
1answer
846 views
Custom function to rearrange attachments when creating posts – Almost there
I'm having some trouble with a custom thing I'm doing.
I've implented a custom image uploader into a metabox in a custom post type.
Now I'm trying to work out a way that will let me reorder the ...
1
vote
3answers
859 views
Control attachments menu order with jQuery Sortable
I've managed create a metabox that lets me upload and then fetch the images and then also been able to add jquery ui sortable to be able to sort the images, however I've no idea how to add actual ...
0
votes
1answer
374 views
WordPress/jQuery pagination plugin for multiple lists
I have 3 shortcodes. Each of them will be displaying a list.
PS> the lists do NOT contain wordpress posts/pages.
Is there any WordPress plugin that can achieve the purpose?
OR
Please suggest me a ...
0
votes
2answers
1k views
Jquery UI not working
I am trying to integrate the Jquery UI select menu ("dropdown" Style), in my wordpress site.
But I am not able to do it, in widget area I created a select box and gave it respective ID of that css ...
0
votes
1answer
566 views
What to include to use jQuery UI Auto Complete
I was looking at the scripts included with WP and dont see what I can include to use jQuery UI Auto Complete. What do I use? I tried including the whole jQuery UI from Google CDN and auto complete ...
1
vote
3answers
7k views
How do I use jQuery UI tabs in a WordPress page?
I want to use jQuery UI tabs in my WordPress 3.1.4 pages. I write programming tutorials for a VB .NET audience but like to provide C# source as well, and I want to use the tabs to let the readers ...
1
vote
2answers
1k views
jQuery UI AutoComplete & wp_enqueue_script
I looked at the included scripts in WordPress (wp_enqueue_script) and didnt find what I should include to use jQuery UI Autocomplete
I am using it in the admin area. Should I just include jQuery UI ...
2
votes
3answers
425 views
Admin area 'toggle' w/ cookie
the wordpress admin already uses some kind of toggle on the menu and on metaboxes.. w/ "Click to Toggle" buttons that remember the open versus closed state. Does anybody know what code is responible ...
0
votes
1answer
199 views
I add some js files from a plugin to a specific location
How Can I add some js files from a plugin to a specific location with add_action
I am Using this widget:
...
0
votes
2answers
543 views
Jquery UI Google CSS, from where?
Here's the site I'm having problems with:
http://www.ashleymosuro.com/newsite/about
For some reason, my custom theme I created for the Jquery UI is being overridden by the google hosted stylesheet, ...
1
vote
1answer
285 views
Automatic jQuery accordion from header tags
I want it to be fairly easy for the post author to setup an accordion, based on header tags. So for example this:
<h3>Headline 1</h3>
<p>Content.. lorem ipsum</p>
...
8
votes
2answers
6k views
How to save the state of a drag and drop jQuery UI Sortables front end layout editor?
I am building a front end post layout editor using jQuery UI Sortable.
The posts are laid out in 300px by 250px boxes over a background image. The posts are created and edited using the WordPress ...