[jQuery] Issue with Colorbox + Cluetip (title not displaying correctly in Colorbox)

2010-01-10 Thread carl
I'm having an issue using both the Colorbox and Cluetip plugins together on a page. Basically what happens is that while Cluetip is displaying fine, when the object is clicked and the Colorbox overlay shows up, only part of the "title" attribute is displaying -- the part before the title separating

[jQuery] Re: :first relative to clicked element

2009-08-21 Thread Carl-Johan Lindqvist
#x27;).click(function() { >                 $(this).nextAll('blockquote:first') >                 .slideToggle('slow') >                 .end() >                 .nextAll('h6:first').slideToggle('slow'); >             }); > > On Aug 21, 3:08 am, Car

[jQuery] :first relative to clicked element

2009-08-20 Thread Carl-Johan Lindqvist
Hi I'm just learning jQuery and have some troubles with the selectors. I'm using this (found in the basic training file) to show and hide a Blockquote paragraph. $('#content').find('blockquote').hide().end().find('h5').click(function () { $(this).next().next().slideToggle('slow');

[jQuery] What is this type of UI widget called?

2009-05-31 Thread Eric Carl
http://secretmountain.org/images/headline_widget.jpg You've seen them all over the place: Yahoo! Movies, CNet, Gamespot, etc. Usually they scroll through the items automatically like a slideshow, while a mouseover of one of the right-hand controls will pause the slideshow and reveal the selected

[jQuery] Cycle plugin questions

2009-03-24 Thread Carl Meyer
ble? Or am I doing something wrong? Thanks in advance for any help! Carl [1] http://malsup.com/jquery/cycle/jquery.cycle.all.js?v2.60

[jQuery] Re: Problem with BlockUI and IE7

2009-02-17 Thread Carl Von Stetten
Mike, Sorry for the delay in getting back to you. I don't think a test case will help, as I can only reproduce this problem on this one internal server (our new server). The demo page works fine, and blockUI works fine on our old server. It only seems to fail on our new server.

[jQuery] Problem with BlockUI and IE7

2009-02-13 Thread Carl Von Stetten
. Unfortunately, both servers are behind our firewall and inaccessible from the outside, so I can't provide a link. I've verified that my jquery file (jquery-1.2.6.min.js) and blockUI file (jquery.blockUI.js) match each other on the two servers. Any ideas? Carl

[jQuery] Re: OT: CF-Talk Down?

2009-01-28 Thread Carl Von Stetten
through fourth lines prevent the browser from caching the AJAX response. The last line outputs the json data then immediately aborts CF processing, effectively stopping any additional content being added onto the end. HTH, Carl On Jan 28, 2:04 pm, "Rick Faircloth" wrote: > Perhaps I co

[jQuery] Re: .hide() and .height()

2009-01-16 Thread Carl Von Stetten
Karl, How would one go about overriding jQuery's show() and hide() functions to move the desired element to a negative screen position (CSS left: -1) instead of changing the CSS display to none? Carl Karl Swedberg wrote: On Jan 16, 2009, at 7:56 PM, Michael Geary wrote: If you

[jQuery] Re: How to force processing of ColdFusion code when using .load

2009-01-08 Thread Carl Von Stetten
Rick, I've had problems in the past with IE using the cached version of AJAX content instead of reloading it. The solution that generally works is to add this to the top of the .cfm page your are loading via AJAX: wrote: > Hi, Carl...and thanks for the reply. > > Yes, t

[jQuery] Re: How to force processing of ColdFusion code when using .load

2009-01-08 Thread Carl Von Stetten
Firefox using Firebug. HTH, Carl On Jan 8, 3:04 pm, "Rick Faircloth" wrote: > How can I force the processing of ColdFusion code in a menu > segment when I have some login and I replace the menu HTML. > > I had some conditional code like: > >                

[jQuery] Re: Trouble refreshing div with .load

2009-01-08 Thread Carl Von Stetten
e the response using Fiddler or another similar tool. HTH, Carl On Jan 8, 2:08 pm, "Rick Faircloth" wrote: > Anyone have any ideas on this? > > > > > I'm using the following code to refresh a menu > > based on a user's access privileges.  The logi

[jQuery] jCarousel Lite + two jQuery UI Draggable UL's = almost...

2008-10-10 Thread Carl
le: 3, circular: false }); }); // DRAG & DROP $(document).ready(function(){ $("#releaseID").sortable({ connectWith: ["#withholdID"] }); $("#withholdID").sortable({ connectWith: ["#releaseID"] }); }); Carl

[jQuery] Re: Problem with .remove() in IE7

2008-09-16 Thread Carl Von Stetten
Has anyone else come across this? This is happening on all of my report pages. Thanks, Carl Carl Von Stetten wrote: > Hi, > > I'm using jQuery 1.2.6.min.js on an intranet application. I have a > page that when loading, displays a "report loading" message with an &

[jQuery] Loading jQuery plugins as needed from scripts

2008-09-11 Thread Carl Von Stetten
arate .js file for each web page, and in that .js file I only want to load the additional jQuery plugins I need for that particular page. Thanks, Carl

[jQuery] Re: jquery ui demo site

2008-09-03 Thread Carl Von Stetten
Bhaarat, While there is no plugin for the UI demo, you can download the javascript file that makes it work. It does use jQuery and UI to work. If you view source on the demo page, you can examine the scripts being loaded. The file you are interested in is Behaviour.js. Carl [EMAIL

[jQuery] Re: $.get(0) is causing trouble

2008-07-17 Thread Carl Von Stetten
jquertil, Try: $all[0].css('color','#339900'); or $all.eq(0).css('color','#339900'); As Alexsandro pointed out in his response, .get(0) returns the actual DOM element, not a jQuery object, so you can't use jQuery functions (like ".css&qu

[jQuery] Re: Ho to remove or add a new table row?

2008-07-09 Thread Carl Von Stetten
"View Generated Source", which will show you exactly what your source looks like with any DOM changes included. Even better, the FireBug plugin for Firefox allows you to look at the source, and even watch it change in real time as your javascript manipulates the DOM. Carl Yavuz Bogazci w

[jQuery] Re: 'nodeName' is null or not an object

2008-07-09 Thread Carl Von Stetten
You might try adding the .each() function before your .load() call. Carl Pickledegg wrote: > its 'c_name'. > > I've discovered something now, if I just use 1 div as the selector to > update only 1 div, > > $('#charges-gsm) > > it works fine. But wh

[jQuery] Re: using doc.ready in an external .js file

2008-07-08 Thread Carl Von Stetten
kgosser, Are you loading jQuery.js after your main.js file? If you are, try loading jQuery first, as it must be present before using any of its functions. Carl kgosser wrote: > Here's what I'm not getting about jQuery from a novice point of view. > Let&#

[jQuery] Re: offSetTop & offsetLeft return NULL

2008-07-03 Thread Carl Von Stetten
Dan, Try: var e_ox = jQuery("a").eq(index).offset().left; var e_oy = jQuery("a").eq(index).offset().top; HTH, Carl On Jul 3, 11:49 am, Dan <[EMAIL PROTECTED]> wrote: > I have these functions: > var e_w = jQuery("a").eq(index).width(); > var e_h

[jQuery] Re: Removing the html jQuery adds in effects

2008-07-03 Thread Carl Von Stetten
pek, Try this (untested): $("testing").hide().insertBefore("#gallery li:first").slideDown("slow"); Carl pek wrote: > First of all, thank you very much for the reply. It is really hard to > get any reply in this mailing list. This is the third time I'm

[jQuery] Re: Targeting an element with multiple classes

2008-07-02 Thread Carl Von Stetten
jez_p Try $('.green') This will select only elements that have the "green" class assigned, even if other classes are also assigned to the same elements. Carl jez_p wrote: > How do I target a specific class when elements may belong to multiple > classes? > >

[jQuery] Re: Including the submit element in the querystring.

2008-07-01 Thread Carl Von Stetten
ion, you can set the "type" option to "post" to have it submit as form data, or you can use the jQuery.post (or $.post) function. Either way, it sends the data as form data (same as a form submitted using the "post" method. HTH, Carl LTG wrote: > Serialize i

[jQuery] Re: [autocomplete] tab issue with autcomplete plugin

2008-06-18 Thread Carl Von Stetten
Jörn, I have made extensive use of the autocomplete plugin for my intranet site. I just downloaded the updated version from the trunk (changelog shows it as 1.0.1, the js file lists the build as 5329). I still have the tab order problem. Carl Jörn Zaefferer wrote: > Yes, that should

[jQuery] Re: Tablesorter plugin and zebra striping

2008-06-18 Thread Carl Von Stetten
r({widgets: ['zebra']}); )}; HTH, Carl Ken wrote: > I have the following in my $(document).ready: > > $(document).ready(function() { > $(".zebra tr:not([th]):even").addClass("even"); > $(".zebra tr:not([th]):odd").addClass("odd"); >

[jQuery] Re: Calendar Over Dialog

2008-06-05 Thread Carl Von Stetten
your dialog. The datepicker's z-index should be a larger number than the dialog's z-index. HTH, Carl Tim Scott wrote: > Does anyone know if there is any combination of plugins that would > allow me to use a calendar control from inside a dialog? I have tried > all combinations

[jQuery] Re: get Request doesnt work in IE7

2008-06-05 Thread Carl Von Stetten
Don't know if this is the problem, but you're missing a semicolon (;) after the end of your $.get function call. Carl Jan S wrote: > All of a sudden, xmlhttprequests don't work no more in IE7. FF > perfect, no problems. > Here the simple code: > www.

[jQuery] Re: Refactoring Functions

2008-06-04 Thread Carl Von Stetten
Better yet, change line second line of stickFooter function to: var height = $(document).height() - 341; And remove the third line entirely. Carl Carl Von Stetten wrote: > How about this (untested): > > var stickyFooter = function() { > var height = $(document).height(

[jQuery] Re: Refactoring Functions

2008-06-04 Thread Carl Von Stetten
How about this (untested): var stickyFooter = function() { var height = $(document).height(); var height = height - 341; $('#footer').css('margin-top', height); } $(document).ready( stickyFooter(); ); $(window).resize( stickyFooter() ); HTH, Carl Chris

[jQuery] involuntary closing of tags

2008-05-19 Thread Carl-Erik
1 + ") "); $(this).prepend("<div id='" + j + "'>"); $(this).append("</div>"); }); }); Instead of using replaceWith I also tried $(this).html("[" + "" + (i+1) + "" + "]" ); and $(this).before("[" + "" + (i+1) + "" + "]").remove(); but to no avail... Any help would be appreciated. - Carl-Erik

[jQuery] Re: document.createElement equivalent in jquery?

2008-05-14 Thread Carl Von Stetten
meppum, Take a look at the $.getScript() function. See http://docs.jquery.com/Ajax/jQuery.getScript#urlcallback for details. Carl meppum wrote: > I was thinking more like adding a script tag to the document. > Something equivalent to document.createElement("script"); > &

[jQuery] Re: [jqModal] How to override style properties (SOLVED)

2008-05-14 Thread Carl Von Stetten
In case anyone else runs across this: in my css file I added the "!important" declaration after the cursor style. This causes the css style to override the user style applied by jqModal. Carl Carl Von Stetten wrote: > I've read all of the documentation on the jqMo

[jQuery] Re: document.createElement equivalent in jquery?

2008-05-14 Thread Carl Von Stetten
meppum, That is built into the core of jQuery. For example, to create a new element and append it to an existing div with an id of "mydiv": $('New paragraph').appendTo('#mydiv'); or $("#mydiv").append('New paragraph'); HTH, Carl mep

[jQuery] [jqModal] How to override style properties

2008-05-14 Thread Carl Von Stetten
ebug - the cursor style of the overlay is being hard-coded by jqModal. Is there any way to change the cursor? Thanks, Carl

[jQuery] Re: Dynamic Software causing many script loads, how would one handle this?

2008-05-12 Thread Carl Von Stetten
Lee, Do the various plugins at least use the same jQuery version? If so, can you modify the plugin-specific JS file to load the required jQuery scripts only if they haven't already been loaded? You will at least need to make sure that the jQuery.js (or jQuery.min.js or jQuery.pack.js) is lo

[jQuery] Re: using variables with jquery

2008-05-06 Thread Carl Von Stetten
quirksmode, Try this: $('#js_innerwrapper').animate({left:"+="+$.gamewidth}, 1000, 'easeOutSine'); HTH, Carl quirksmode wrote: > Hi, > > I need to make a div slide across the screen using the animate > command. It works when I use the following: >

[jQuery] Re: Way to designate links as form submitters?

2008-05-01 Thread Carl Von Stetten
Rick, Try this (untested): $(document).ready(function() { $.each(".formlink"), function() { $(this).click(function() { $("#supporttype").val($(this).attr("id"); $("#supportform").submit(); }); }); }); Paid

[jQuery] Re: Ajax and events

2008-04-30 Thread Carl Von Stetten
#Why_do_my_events_stop_working_after_an_Ajax_request.3F HTH, Carl Peps wrote: > Hi, > > I have finished developping a website with jQuery. First of all, > thanks to everybody who worked on this great Javascript library. It's > truly an incredible timesaver. > > My question concerns binding and unbinding

[jQuery] Re: tablesorter bug?

2008-04-30 Thread Carl Von Stetten
the JS array of the sorting column info (see docs) or: var sorting = $("#myTable")[0].config.sortList; // grabs the current tablesorter sorting configuration $("#myTable").trigger("sorton",[sorting]); // resorts using the current tablesorter configuration HTH, Carl

[jQuery] Re: jQuery for loop - am I crazy?

2008-04-24 Thread Carl Von Stetten
How about this? function initDashboard() { $(document).ready(function() { if($(".adminMsgSummary").length) { $(".adminMsgSummary dl:not(first)").hide("fast"); } } } Code not tested, but should work. Carl cloudsteph wrote: > I

[jQuery] How to access TableSorter configuration properties

2008-04-19 Thread Carl Von Stetten
s to resort the table. I need to access the tablesorter config object to extract the SortList. How can I do this? Thanks, Carl

[jQuery] Re: Problem with using hasClass() within .each()

2008-04-17 Thread Carl Von Stetten
Josh, Thanks a million. Can't believe I missed that. It's working great now. Carl Josh Nathanson wrote: > > Carl -- Javascript is case-sensitive, so you have to use hasClass > rather than hasclass each time you call it. > > -- Josh > > > ----- Original Mes

[jQuery] Problem with using hasClass() within .each()

2008-04-17 Thread Carl Von Stetten
Using jQuery 1.2.3 Firefox 2.0.0.14 I am trying to loop through the headers of a tablesorter table and find out which columns are being sorted which way. I'm building an array of arrays that can be fed into the tablesorter.trigger function to resort the table after changes are made to the DOM

[jQuery] click removing highlight

2008-04-05 Thread Carl Fyffe
I am trying to capture highlighted text. To activate the capture method I am clicking on a div that jQuery is watching. When I click on the div the highlight goes away. The div is actually a context menu... YUI's context menu does not remove the highlight (see http://developer.yahoo.com/yui/exampl

[jQuery] Re: XUL jQuery-1.2.1 html manipulation issue

2007-12-19 Thread Carl Taylor
o hack the jQuery library to not do anything too special with it's dom manipulation... W. I would really like a way to have jQuery be compatible for XUL, as development with it is a snap! -Carl On Dec 18, 2007 11:37 AM, Jeffrey Kretz <[EMAIL PROTECTED]> wrote: > > Altho

[jQuery] Re: Livequery and History / Remote togehter. Help.

2007-11-05 Thread Carl Anderson
Thanks Klaus. Incidentally, is there a way to--somehow!--use the history/remote plugin while using one's own Ajax code? I've got a fully built system in place, and the only thing missing is the history bits. Any suggestions? --Carl On Nov 5, 12:29 pm, Klaus Hartl <[EMAIL PROT

[jQuery] Re: Livequery and History / Remote togehter. Help.

2007-11-05 Thread Carl Anderson
;d love to hear it. In the meantime I'll keep plugging along. --Carl Anderson On Oct 13, 8:41 am, gimperdaniel <[EMAIL PROTECTED]> wrote: > Can someone please help?I have been stuck with this for about 2 weeks now. I > have also tried listen and the otherhistoryplugin. > >

[jQuery] unsubscribe

2007-08-29 Thread carl
unsubscribe