[jQuery] jQuery UI Problem

2009-05-11 Thread Rogue Lord
$('div.draggable').livequery(function(){ $(this).draggable({ helper: 'clone', opacity: '0.9' }); var bag_id = $(this).attr('id'); $('div.droppable').droppable({ accept:

[jQuery] Re: NEW jQuery Cheat Sheet for 1.3.2

2009-05-08 Thread Rogue Lord
Looks good mate! On May 7, 10:01 am, Matt Kruse m...@thekrusefamily.com wrote: I've updated my previous cheat sheet to be in line with jQuery 1.3.2. I think it's more useful than other cheat sheets that simply dump method names, but hey, that's personal preference ;)

[jQuery] [jQuery AJAX]

2009-05-06 Thread Rogue Lord
I am using the jquery.form.js addon, and I was wondering if there was a way that I could add something to check for a certain string in resulting response? I am having a form sending an AJAX request to the server which then places the result into the div that is used for responses but I am unsure

[jQuery] clueTip with liveQuery?

2009-04-18 Thread Rogue Lord
How do I get these two to play nice with one another? lol... I am trying to run the clueTip inside a div that is using liveQuery because it was added after the page load via AJAX, any help is appreciated! I tried a few things but I am gonna see first if they are compatible... :)

[jQuery] Re: clueTip with liveQuery?

2009-04-18 Thread Rogue Lord
$('.commoninfo').livequery(function(){ $(this).cluetip({width: '260px', showTitle: false}); }) Figured it out! On Apr 18, 1:55 am, Rogue Lord corrupted.rog...@gmail.com wrote: How do I get these two to play nice with one another? lol

[jQuery] AJAX Problem

2009-04-17 Thread Rogue Lord
Hey folks, I noticed that when I was using $.ajax() on a $('a').click () to pull up an external page (eg stats.php within the same folkder) within a div called #main_content that any link that was pulled up in that would not have the same effects as outside of it. Is there a way to pass the

[jQuery] Re: AJAX Problem

2009-04-17 Thread Rogue Lord
it and trying one of   the many solutions, let us know. --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On Apr 17, 2009, at 2:28 PM, Rogue Lord wrote: Hey folks, I noticed that when I was using $.ajax() on a $('a').click () to pull up an external page (eg

[jQuery] $.ajax get with ?var=123 not accepting data type

2009-04-16 Thread Rogue Lord
script type=text/javascript $(document).ready(function(){ $('#main_content').load('cityhall.php'); $('#loading').hide(); $('a').click(function() { $(#main_content).slideUp(); var replacement =

[jQuery] Re: $.ajax get with ?var=123 not accepting data type

2009-04-16 Thread Rogue Lord
Ok, I figured out that because the links that are not working are in the pages that are being pulled up into the main_content div, anyone know how I can modify the code to run scripts that would modify the same div? On Apr 16, 6:32 pm, Rogue Lord corrupted.rog...@gmail.com wrote: script type