I have started a work around which uses hadles for moving elements and custom JQuery for setting the active elements and displaying the button html.
Your method looks interesting, by targeting the a tags like this would it fire the code when you click to drag the li parent element??
--s--
Main Topics
Browse All Topics





by: anoyesPosted on 2009-05-28 at 20:25:26ID: 24499869
Could you make the href attribute of those links point to 'script.php?page_id=45653' or whatever? Then you can just use AJAX to load them and display the buttons:
large li a').click(function() {
$('ul.pages-icons-
var a = $(this);
$.get(a.attr('href'), function(html) {
//html is the button html returned by the script, do what you want with it here
});
return false;
)};