[jQuery] Re: [ANNOUNCE] markItUp! 1.0 (former jTagEditor) is finally released!

2008-04-02 Thread Olaf Gleba
Hi Jay. Am 23.03.2008 um 19:48 schrieb Jay Salvat: I'm proud to announce you the official release of markItUp! (former jTagEditor) and markItUp! website. I hope everything will be ok and i forgot nothing important. Its great. I like the approach. After playing around a little, it sure is a c

[jQuery] Re: Click Radio Buttons to Disable/Enable a Text Box

2008-04-02 Thread Karl Rudd
Use .attr('disabled', true) and .attr('disabled', false) to set the 'disabled' state of form elements. It's one of those things that works in a way you don't quite expect, if you're thinking of it from an HTML perspective. After a form element is parsed in from HTML the attributes like 'disabled

[jQuery] Click Radio Buttons to Disable/Enable a Text Box

2008-04-02 Thread Gorkfu
The setup: 2 Radio Buttons and a text field. What I wish to accomplish: When Radio #1 is clicked, disable the text box. When Radio #2 is clicked, remove the disabled attribute so the text box is now enabled. I also want this done in more than one instance, the "2 Radio Buttons and a text field"

[jQuery] Re: call another function with jquery

2008-04-02 Thread balmeter
Did you find a solution to this? I have the same problem. On Apr 1, 9:41 am, cmt <[EMAIL PROTECTED]> wrote: > I have a page that loads dynamically via innerHTML...I would like to > replace the loading script with something from the jQuery library. > But I cannot find any jQuery function in the d

[jQuery] Re: Problem of show and hide when I have several DIV and one only has to be affected

2008-04-02 Thread Joe
Or apply an ID instead of a class to the div(s)...maybe too simple of an answer, but if you can't/won't change the divs to IDs then FrenchiNLA's suggestions should be fine. On Apr 2, 11:21 am, FrenchiINLA <[EMAIL PROTECTED]> wrote: > you need to get the sibling of your see-more class somethig lik

[jQuery] Superfish and flash?

2008-04-02 Thread ritch
I've been using Joel Birch's superfish drop down menu, and have used transparent pngs as background iamges on the drop downs. Woks brilliantly, but in Firefox MAC, the links between the first and last link disappers, but you can still hover over them. I've used swfobject, and inserted the wmode op

[jQuery] Re: check/uncheck via toggle

2008-04-02 Thread Karl Rudd
*head smack* I missed that version of the function. It's definitely not something I've used. Karl Rudd On Thu, Apr 3, 2008 at 1:47 PM, Karl Swedberg <[EMAIL PROTECTED]> wrote: > > Actually, .toggle() is a little like .load() in that it can be used for two > different things. There is the .toggl

[jQuery] Re: check/uncheck via toggle

2008-04-02 Thread Karl Swedberg
Actually, .toggle() is a little like .load() in that it can be used for two different things. There is the .toggle() effect and the .toggle(fn, fn) event, with the .toggle(fn, fn) doing an "every other" event thing. http://docs.jquery.com/Effects/toggle http://docs.jquery.com/Events/toggl

[jQuery] Re: Creating a list of X quotes randomly

2008-04-02 Thread RobG
On Apr 3, 9:49 am, ab5tract <[EMAIL PROTECTED]> wrote: > Thank you so much man. I really appreciate it, even if I don't > understand the single-line glory of > >set.push(dat.splice(Math.random()*dat.length|0, 1)); set.push(...) Calls the push method of set, which is an array, with the resu

[jQuery] Re: check/uncheck via toggle

2008-04-02 Thread Erik Beeson
Also, '[EMAIL PROTECTED]' can be replaced with ':checkbox'. --Erik On 4/2/08, Karl Rudd <[EMAIL PROTECTED]> wrote: > > > The "toggle()" function is used to hide and show items, nothing to do > with clicking or changing of state. > > http://docs.jquery.com/Effects/toggle > > What you want is some

[jQuery] Re: check/uncheck via toggle

2008-04-02 Thread Karl Rudd
The "toggle()" function is used to hide and show items, nothing to do with clicking or changing of state. http://docs.jquery.com/Effects/toggle What you want is something like: $('[EMAIL PROTECTED]').click( function() { if ( this.checked ) $(this).parents('tr').animate({backg

[jQuery] check/uncheck via toggle

2008-04-02 Thread Bruce MacKay
Hello folks, I have a table of data, with each row containing a checkbox. What I want users to be able to do is tick the box of each row of data they want to delete (and after ticking, they will submit the form etc etc. As a visual aid, I want to alter the background colour of the row - and

[jQuery] Re: interface elements odd behavio in IE

2008-04-02 Thread OhNoMrBill
I have reduced the issue to a class named itemHeader. This class is assigned to the sortable's handle param. It is only this class that remains on top of the containing accordion. panels. That class looks like: .groupItem .itemHeader { line-height: 28px; background-color: #DAFF9F

[jQuery] Re: New to jqModal... couple questions

2008-04-02 Thread deronsizemore
Hi, Sorry, I should have clarified. When I've tried other modal window options, they have trouble with forms. What I'll be trying to do is place a login form, register form, and forgot password form inside of the jqModal window. Once submit is clicked, the modal window should close, and the main

[jQuery] Re: Creating a list of X quotes randomly

2008-04-02 Thread ab5tract
Thank you so much man. I really appreciate it, even if I don't understand the single-line glory of set.push(dat.splice(Math.random()*dat.length|0, 1)); It is pure JavaScript. I assume there is no "better" way to use jQuery?

[jQuery] Re: ui.tabs - appending multiple new tabs

2008-04-02 Thread rolfsf
In partial answer to my own question, I wrote this, which seems to work: $('#newTab').click(function() { var $tabs = $('#container > ul.tabs-nav').tabs('length'); var tabNum = ($tabs + 1);

[jQuery] Content not moving down when div height expands

2008-04-02 Thread phipps_73
I am having a real problem with some container divs whose content is loaded via the .load() function. Each div holds a table containing a form. When the form is submitted it adds (or removes) a row to the table. When a row is added to the table the div elements that follow do not move down to acco

[jQuery] Flicker issue with jCarousel in FF 2.0 with circular carousels

2008-04-02 Thread sauronette
Hello Jan, I would like to ask if you have a hint on how to solve the white flickering issue with jCarousel when in use on FF 2.0? I have tried the fix below that you gave to another user, but I don't know if this was a circular carousel. This fix does not work in FF 2.0 Any hints would be app

[jQuery] ready and jquery 1.2.3

2008-04-02 Thread Shelane
I'm seeing more and more evidence that the ready function isn't really working properly with jquery 1.2.3 and FF 2. $(function(){ $('#mydiv').hide(); }); things like above, when the page loads sometimes i see the div, then it disappears. Is there just a problem with the shortcut? Is it a combi

[jQuery] Re: unresponsive script error on long page with many clueTips

2008-04-02 Thread Karl Rudd
JavaScript in browsers is "single-threaded" (and thank goodness for that). So when JavaScript is running (in most browsers) everything else is queuing up. When you break the code into chunks, via setTimeout, you are (essentially) "yielding" control back to the main event loop periodically, so it h

[jQuery] Re: UI Tabs - closable tabs

2008-04-02 Thread Klaus Hartl
On Apr 2, 7:08 pm, rolfsf <[EMAIL PROTECTED]> wrote: > Thanks Klaus! > > Any chance you could give me a quick explanation of what the different > parts of that script are doing? I'm trying to understand how the > script determines which tab to remove. Doing my best to learn these > concepts! Th

[jQuery] Re: ui.tabs - appending multiple new tabs

2008-04-02 Thread Klaus Hartl
On Apr 2, 8:25 pm, rolfsf <[EMAIL PROTECTED]> wrote: > Adding (appending) new tabs in ui.tabs is pretty straightforward, but > I notice in the example:http://stilbuero.de/jquery/tabs_3/#container-9 > > that if I append multiple new tabs, they are all given the same ID > (which won't work well in r

[jQuery] Re: Interface TransferTo function in jQuery UI?

2008-04-02 Thread Jack Killpatrick
rolfsf, do you have a stable example? I need to do this asap with jquery 1.2.x (simulate interface TransferTo) and am not able to start using the UI or Enchant stuff yet (for this project). Thanks, Jack rolfsf wrote: FWIW, I've gotten a similar effect using the animate() function, though rath

[jQuery] Re: disable select in FF?

2008-04-02 Thread Karl Swedberg
On Apr 2, 2008, at 4:28 PM, alivemedia wrote: Still not working, weird, here it is as it stands: $('input[type=checkbox]').bind("click",function(){ var el=$(this).parent().next('td select') if (this.checked) { el.attr('disabled', false); } else {

[jQuery] Re: interface elements odd behavio in IE

2008-04-02 Thread OhNoMrBill
Does anytone know of the Eyecon interface components hardwire CSS z- index in their code? On Apr 2, 12:34 pm, OhNoMrBill <[EMAIL PROTECTED]> wrote: > I am trying to implement the sortables demo (http:// > interface.eyecon.ro/demos/sort.html) in an accordion. Problem is it > works fine in FF and S

[jQuery] Re: Shadowbox no worky with jQuery 1.2.3

2008-04-02 Thread Josh Nathanson
Yeah, it's weird. It gets to the part in the script where it binds the event handler, so that's working ok, but it doesn't seem to be able to prevent the default click event. Even when I put "return false" explicitly in the event handler, it opens the image in a new page. Odd that it would

[jQuery] Re: Func outside of doc.ready cannot access function inside doc.ready? Why not?

2008-04-02 Thread Josh Nathanson
Andy - as you may have guessed, you have a scoping issue. Everything inside the doc.ready call is in an anyonymous function. Any functions inside doc.ready that you need to have access to from *outside* doc.ready, you'll need to scope accordingly. You might want to create a variable outside do

[jQuery] Func outside of doc.ready cannot access function inside doc.ready? Why not?

2008-04-02 Thread Andy Matthews
As a follow up to my post on "Flex Ajax Bridge & jQuery"... I found that if I place the offending code OUTSIDE the doc.ready call, it works okay, and the doc.ready still fires correctly. However, the code which is outside of the doc.ready call cannot access functions INSIDE the doc.ready call.

[jQuery] Re: unbind especific function not working

2008-04-02 Thread Ariel Flesler
The problem is that the function that you unbind, is not that same the you bind, although they are equal. Try this: (function($) { $.fn.checkForm = function(action){ if (action == "add") return this.bind( 'submit', this.checkForm.handler ); if (action == "remove") return

[jQuery] Re: Incredibly Fast jQuery-Powered Search Tool

2008-04-02 Thread Ariel Flesler
Very nice. I'm curious, where are you using ScrollTo ? I wonder why do people always respect the header of jQuery, and throw it away when it comes to plugins ? Our work deserves some more respect :) Great tool, good job. -- Ariel Flesler http://flesler.blogspot.com On 2 abr, 16:38, jsandppr <[

[jQuery] Re: $('').size() === 0 in IE??

2008-04-02 Thread Karl Rudd
Try making a full formed "a" element, $(''). IE is a bit fussy sometimes about what it will create, it will fail when you specify an "open" element. Karl Rudd On Thu, Apr 3, 2008 at 3:47 AM, Peter Bengtsson <[EMAIL PROTECTED]> wrote: > > I'm going to explain my problem by code. Both of these wo

[jQuery] Re: cluetips - dynamic data filtering

2008-04-02 Thread SterlingK
Hm. The bottom paragraph of that didn't get formatted the way I had hoped. Hopefully my meaning is clear from the first three paragraphs. On Apr 2, 9:08 am, SterlingK <[EMAIL PROTECTED]> wrote: > Hi, Karl. > > No worries.  I'm just impressed that someone as busy as you gets back > to us on thes

[jQuery] jQuery CharCounter Problem with limit reached

2008-04-02 Thread rsmolkin
Hi, I'm using the jquery charcounter to count and limit characters in text areas. It's working well for the most part, except for the following problem. If I paste in text that exceeds the limit and it's truncated to say 1000 characters that are allowed, and then I go in and select a couple of

[jQuery] Re: disable select in FF?

2008-04-02 Thread alivemedia
Still not working, weird, here it is as it stands: $('input[type=checkbox]').bind("click",function(){ var el=$(this).parent().next('td select') if (this.checked) { el.attr('disabled', false); } else { el.attr('disabled', true);

[jQuery] Positioning ad

2008-04-02 Thread Dough Boy
We have articles on our site that are standard html (i.e. using p tags). We also use javascript to generate ad tags (i.e. doubleclick, adsense, etc). So I have a hidden div on the page that the ad is generated into (via javascript). I then want to append the "ad" to the 3rd paragraph. Everythi

[jQuery] Re: ui.datepicker.js

2008-04-02 Thread Gauthier Segay
Check that the input element have a name attribute On Apr 1, 6:05 pm, TunaSandwich <[EMAIL PROTECTED]> wrote: > Hello, > > I'm using the datepicker with jQuery. It works quite nicely. > > I'm going a traditional form post (or a get) using a submit button and > it seems that the content of the tex

[jQuery] Re: jQuery events on plain old JavaScript objects

2008-04-02 Thread Ariel Flesler
I'd not rely on anything that is not in the docs. I suffered from these changes in the past. If you want a safe way to use this, you should check: jQuery.Collection: http://flesler.blogspot.com/2008/01/jquerycollection.html You just need to import the methods bind, unbind and trigger, and that ca

[jQuery] Re: Shadowbox no worky with jQuery 1.2.3

2008-04-02 Thread Karl Swedberg
oh, that's a bummer. I was hoping it could help you out this time. Well, tuck it away for future reference, I guess. Hope you manage to solve the problem. cheers, --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 2, 2008, at 3:04 PM, Josh Nathanson

[jQuery] Flex Ajax Bridge & jQuery...

2008-04-02 Thread Andy Matthews
Has anyone on this list done any work with the FABridge code provided by Adobe for use in working with Flex? I've got it running great when it's in a plain script block inside the body tag. But the second I put it inside a $(document).ready call, it dies (with no errors). I've tried putting the c

[jQuery] Re: Autocomplete and JSON

2008-04-02 Thread Shawn
As Jorn said (and he'd be THE definitive source as the author of that plugin) - the MAX parameter is not used by the server. Otherwise, I think you have the gist of it. The routine regarding the MAX goes like so: - user enters some text - that text is passed to the server side code via the

[jQuery] Re: Incredibly Fast jQuery-Powered Search Tool

2008-04-02 Thread jsandppr
I would like to hear more about the back-end of this -- its indexing (even for "contains" searches) is very fast and nice. Thanks! On Mar 16, 5:02 am, JohnForsythe <[EMAIL PROTECTED]> wrote: > Hi, I wanted to show you guys a tool I just built using jQuery andDrupal. > It's called Module Finder

[jQuery] rowspan behavior with ie

2008-04-02 Thread [EMAIL PROTECTED]
Hi the list, I was trying to change the rowspan on a table cell and notice that it was not working with ie. (I was doing something like $('...some cell).attr('rowspan',15);) It was working with other browser. Using debug bar I noticed that the computed cell html code was like this: So

[jQuery] unbind especific function not working

2008-04-02 Thread Marc R
I'm kinda of a begginer on JQuery and I'm writing my first plugin. The plugin should handle form validation, in which I want to be able to enable or disable validation. The simplified version is like this: (function($) { $.fn.checkForm = function(action) { function validateForm() {

[jQuery] Re: better examples for UI DatePicker?

2008-04-02 Thread wick
No one has any better styles done? That hurts. On Apr 1, 8:44 am, wick <[EMAIL PROTECTED]> wrote: > No offense to anyone involved with creating the default examples, but > I think the default and especially the "alternate" UI DatePicker > styles are awful. I realize they are meant to be a startin

[jQuery] Re: Autocomplete and JSON

2008-04-02 Thread Jörn Zaefferer
dineshv schrieb: Hi Shawn. Thank-you very much for the clear explanation. I mean "remote" as in "the same domain". Let's see if I understand your explanation: A large number (>10,000) of string items are held in a database (or array) at the server. We want to make the string items available

[jQuery] Re: Autocomplete and JSON

2008-04-02 Thread dineshv
Hi Shawn. Thank-you very much for the clear explanation. I mean "remote" as in "the same domain". Let's see if I understand your explanation: A large number (>10,000) of string items are held in a database (or array) at the server. We want to make the string items available to the autocomplet

[jQuery] Re: Shadowbox no worky with jQuery 1.2.3

2008-04-02 Thread Josh Nathanson
Thanks Karl, I didn't know about that option in Firebug. Haha, many times I've tried to quickly read the error in the console before the page gets refreshed. However it's not helping in this case, as apparently no error is being thrown. Which leads me to believe that shadowbox's handler is

[jQuery] Error management and display with jQuery...

2008-04-02 Thread Andy Matthews
I love jQuery, but it's very difficult sometimes to work with a jQuery-driven app when you're getting JS errors that aren't being reported. Does anyone have a good means by which to display and deal with errors from within jQuery? Andy Matthews Senior Cold

[jQuery] Re: jQuery events on plain old JavaScript objects

2008-04-02 Thread chrismarx
interesting, for what purpose would you use this functionality? why not just var monkey = {name:'Dave', climb:function(){alert(this.name + 'is climbing');} monkey.climb(); On Apr 2, 8:02 am, Thom <[EMAIL PROTECTED]> wrote: > This works: > > var monkey = { name: 'Dave' } > $(

[jQuery] Re: Problem of show and hide when I have several DIV and one only has to be affected

2008-04-02 Thread FrenchiINLA
you need to get the sibling of your see-more class somethig like : $(this).siblings(".news_complete")slideDown(1000); should work for you On Apr 1, 9:04 pm, Brandnew <[EMAIL PROTECTED]> wrote: > Hello, > > I hope I'm more or less clear in my title. > > I have this problem : > > I have several DI

[jQuery] Re: UI Tabs - closable tabs

2008-04-02 Thread rolfsf
Thanks Klaus! Any chance you could give me a quick explanation of what the different parts of that script are doing? I'm trying to understand how the script determines which tab to remove. Doing my best to learn these concepts! rolfsf On Apr 1, 11:42 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: >

[jQuery] Problem With FadeOut

2008-04-02 Thread Andri
This is my first project using jquery, and i also I'm newbie to javascript. I Making a component for joomla using jquery, to make slideshow. see http://lapollainc.net/index.php?option=com_smartjgallery&task=slideshow&Itemid=33. on local site the transition is okay. but when i uploaded to server t

[jQuery] ui.tabs - appending multiple new tabs

2008-04-02 Thread rolfsf
Adding (appending) new tabs in ui.tabs is pretty straightforward, but I notice in the example: http://stilbuero.de/jquery/tabs_3/#container-9 that if I append multiple new tabs, they are all given the same ID (which won't work well in real life) Is there an easy way to generate sequential IDs? e

[jQuery] $('').size() === 0 in IE??

2008-04-02 Thread Peter Bengtsson
I'm going to explain my problem by code. Both of these work perfectly fine in Firefox but only the *second one* works in IE 6. ** THE ONE I WANTED TO WRITE ** function __duplicateToolbarButtons() { // Make "save" and "save and view" buttons appear in toolbar if ($('#CMSButtonBar').size()

[jQuery] Tablesorter 2.0 : Problem with Sort Direction

2008-04-02 Thread cl4ncy
Hi, I'm finding this plugin very useful, however i have one major problem with it (i dont know if its just me). When i click to sort on a column it sorts it ascending, which is correct. Then i sort on another column ascendng, fine. If i click to sort the first column again it sorts it descendin

[jQuery] Re: cluetips - dynamic data filtering

2008-04-02 Thread SterlingK
Hi, Karl. No worries. I'm just impressed that someone as busy as you gets back to us on these issues at all. Thank you! Hm. Perhaps I wasn't clear on what I was trying to accomplish. Probably either filter or find would be fine. What I'm looking for is how to target the specific div on the a

[jQuery] Evaluate javascript in Ajax response in jqModal

2008-04-02 Thread Jacky
Hi all, I found that one of the demo of jqModal (#4) features a ajax loading modal content with javascript tag in the response get evaluated. I studied the jqModal code itself and it seems that it just call the usual jQuery.load() method. How the

[jQuery] Re: Re-invoking the jQuery config file dynamically

2008-04-02 Thread Karl Swedberg
I can take credit for it. :-) Very glad that you liked it. Thanks for the compliment! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 2, 2008, at 2:20 PM, tlphipps wrote: I can't take any credit for the article. I thought it was very well writte

[jQuery] Re: Shadowbox no worky with jQuery 1.2.3

2008-04-02 Thread Karl Swedberg
Hey Josh, I haven't used the Shadowbox plugin (though I've admired its beauty). But sometimes it's hard to catch what could be a JavaScript error when the page gets refreshed. Have you tried using Firebug and checking the "Break on all errors" option? That might help you troubleshoot. it

[jQuery] interface elements odd behavio in IE

2008-04-02 Thread OhNoMrBill
I am trying to implement the sortables demo (http:// interface.eyecon.ro/demos/sort.html) in an accordion. Problem is it works fine in FF and Safari, but IE is all wigged out. IE draws the sortables on top of everything else, instead of inside like the other browsers do. Anyone have any insight o

[jQuery] Re: Re-invoking the jQuery config file dynamically

2008-04-02 Thread tlphipps
I can't take any credit for the article. I thought it was very well written though! On Apr 2, 10:18 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Dude! That's exactly what I was looking for! > > And I actually understand your solution too, which is a huge bonus for > me. > > Thanks for yo

[jQuery] Shadowbox no worky with jQuery 1.2.3

2008-04-02 Thread Josh Nathanson
Hey all, I'm using the Shadowbox script successfully with jQuery 1.2.1, however when changing to jQuery 1.2.3, it no longer functions properly. It looks like something in the preventDefault mechanism in the Shadowbox jQuery adapter is broken, because when clicking on the image, it does not p

[jQuery] We want you! Localizations and sites using the validation plugin

2008-04-02 Thread Jörn Zaefferer
Hello jQuery fellows, I'd like to invite you to support the validation plugin in one (or both) of two ways: Provide a localization in your favorite language. If you are using the validation plugin in a project, you may already have a translation ready, and you're welcome to contribute it ba

[jQuery] Re: bassistance.de jQuery plugin: Autocomplete

2008-04-02 Thread timothytoe
Also, I'm adding entries as list elements to a UL. Is there a clever way to keep someone from adding the same thing twice? On Apr 2, 9:28 am, timothytoe <[EMAIL PROTECTED]> wrote: > I've been trying a few different versions of this plug-in. It's nice, > but the very first thing I have to do is ov

[jQuery] Re: New to jqModal... couple questions

2008-04-02 Thread MorningZ
"see no mention of using forms inside of the jqModal window?" What's to mention? There is nothing special about a form inside the that would make up the modal window's content, it'd be just like anything else on the page

[jQuery] bassistance.de jQuery plugin: Autocomplete

2008-04-02 Thread timothytoe
I've been trying a few different versions of this plug-in. It's nice, but the very first thing I have to do is override the colors. .ac_over { background-color: #fed; color: #012;

[jQuery] Re: jqModal and Rounded Corners

2008-04-02 Thread Shawn
I've done it. If I remember right, I had to use a local DIV, hide it, and then round the corners. My HTML looked something like this: Organization X Please wait. Loading . . . Then the corresponding

[jQuery] jqModal and Rounded Corners

2008-04-02 Thread Dustin
I am using jqModal and am trying to get the window to have rounded corners. Does anyone know of a way to accomplish this? Thanks for any help you can provide. -- View this message in context: http://www.nabble.com/jqModal-and-Rounded-Corners-tp16447295s27240p16447295.html Sent from the jQuery

[jQuery] Re: Re-invoking the jQuery config file dynamically

2008-04-02 Thread [EMAIL PROTECTED]
Dude! That's exactly what I was looking for! And I actually understand your solution too, which is a huge bonus for me. Thanks for your time :) Steve On Apr 2, 3:05 pm, tlphipps <[EMAIL PROTECTED]> wrote: > I think the following like may explain the problem you're experiencing > (if I'm underst

[jQuery] Re: New to jqModal... couple questions

2008-04-02 Thread deronsizemore
Yes, I found that page, but it seems that it's written more for the experienced jQuery user, not someone like myself who is new to this. I've looked through the page and I see no mention of using forms inside of the jqModal window? Maybe you can point me in the right direction there since it's o

[jQuery] Problem with Sort Direction

2008-04-02 Thread cl4ncy
Hi, I'm finding this plugin very useful, however i have one major problem with it (i dont know if its just me). When i click to sort on a column it sorts it ascending, which is correct. Then i sort on another column ascendng, fine. If i click to sort the first column again it sorts it descending

[jQuery] Re: How do I get a standard DOM object from jQuery selector.

2008-04-02 Thread hj
Maybe this will seem impudent, but ... > I have a feeling I'm just missing something in the documentation, but > is there anyway to get a standard DOM object to return from a jquery > selector? > > > > > > Essentially I want a way for $('.target', '#context') to give me the > equivalent of

[jQuery] Re: BUG with animate method

2008-04-02 Thread Karl Swedberg
Hi Erik, I don't think you're going to be able to animate these properties at all with the core jQuery library alone. Please take a look at the Color Plugin and see if that helps: http://plugins.jquery.com/project/color --Karl _ Karl Swedberg www.englishrules.com www.learn

[jQuery] Re: New to jqModal... couple questions

2008-04-02 Thread pere roca
hi, you have all the answers in the examples of this well documented page: http://dev.iceburg.net/jquery/jqModal/ Pere deronsizemore wrote: > > I'm wanting to use jqModal for my "login," "forgot password," and > "register" forms on my site. I've tried using thickbox for this same thin

[jQuery] Re: BUG with animate method

2008-04-02 Thread Erik H
I noticed one thing that may have caused an error. The animate method requires hyphenated property names (margin-left, table-cell) to be rewritten in camelCase ( marginLeft, tableCell). However, these changes didn't make a difference. I've updated the code in the example to reflect the proper impl

[jQuery] Re: hide() and floating elements leaves white space

2008-04-02 Thread GianCarlo Mingati
i think you should get a copy of the markup of the entire LI element you want to hide, and pointing to that LI element onclick you .remove() it. To reappend it, store the position of the removed li (.eq(n)), and re - insertAfter() the element that precedes the one you removed... ?? On Apr 2, 11:

[jQuery] New to jqModal... couple questions

2008-04-02 Thread deronsizemore
I'm wanting to use jqModal for my "login," "forgot password," and "register" forms on my site. I've tried using thickbox for this same thing and it's really buggy when using forms (or so it seems). I'm wondering if there are any major hurdles by using forms in this manner with jqModal? If so, I m

[jQuery] Re: Re-invoking the jQuery config file dynamically

2008-04-02 Thread tlphipps
I think the following like may explain the problem you're experiencing (if I'm understanding the problem correctly): http://www.learningjquery.com/2008/03/working-with-events-part-1 On Apr 2, 3:07 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > "the issue we're experiencing is that in some

[jQuery] Re: JQuery TableSorter pager Plugin problem

2008-04-02 Thread lmrs
Quinode, Dan's suggestion of setting positionFixed to false worked for me, the pager div then shifted to wherever the bottom of the table was. The code I used: $("#schTable") .tablesorter({ headers: {

[jQuery] jQuery events on plain old JavaScript objects

2008-04-02 Thread Thom
This works: var monkey = { name: 'Dave' } $(monkey).bind('climb', function(monkey) { alert(this.name + ' is climbing!'); }); $(monkey).trigger('climb'); I really just wanted to check that this was expected functionality - and isn't going to disappear anytime soon - as I'd like to lean on it quit

[jQuery] [clueTip] image map area showing alt/title on ie6/7

2008-04-02 Thread ExiE
I have a tooltip (using clueTip plugin) applied on each tag on my image map and it's working fine everywhere but not with IE6 and IE7. The tooltip show just fine but if the got set 'alt' attribute IE6/7 display also content of that attribute in default IE tooltip. In case alt is not set, IE6/7

[jQuery] A return key press causes JQuery Facebox to reload in IE

2008-04-02 Thread jamietssg
Hi I have a problem with the facebox plugin and jquery running in IE. I have jquery and the facebox plugin. I apply facebox to a link the normal way. the correct content loads into the facebox. HOwever when if I press the return key, the facebox will disappear and reload. IN Firefox a press

[jQuery] Re: Re-invoking the jQuery config file dynamically

2008-04-02 Thread [EMAIL PROTECTED]
"the issue we're experiencing is that in some cases $ (obj).draggable() is fine, and then in other cases (like inside of the callback of .load()), $(obj).draggable() errors out, throwing "not a function..." --adam " Well, sometimes, but Drake has described my main problem. I can make the dynamic

[jQuery] hide() and floating elements leaves white space

2008-04-02 Thread Richard Weeks
This is killing me! Due to the rule of supply and demand, I'm sure there must be a workaround as there are so many people in forums searching for the same grail... Picture a list: A B C D E F G H I The list items are floating left, using CSS, on a fixed width to simulate 3 columns. If I call .

[jQuery] Remove script

2008-04-02 Thread Virendra
I have added a js file in my html file. I want to remove the script from my file using jQuery. I have tried using the following jQuery('script[src="test.js"]').remove(); But the script is not getting removed. Please suggest some way for removing the script using jQuery.

[jQuery] Re: unresponsive script error on long page with many clueTips

2008-04-02 Thread az
Thanks to both Karls for your help! I'll definitely try out the chunking method. Since I'd like to understand what I'm implementing, can you briefly explain why this way is better? thanks, az On Apr 1, 4:59 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > You can initialise the tips in "chunks".

[jQuery] Superfish Richard Willis - second tier static

2008-04-02 Thread Deborah
Hi, I have implemented the Richard Willis modified Superfish by Joel Birch (http://users.tpg.com.au/j_birch/plugins/superfish/richard-willis- example/). This is the first two tiers horizontal, third vertical version. I have modified the CSS to create a tab like interface and made the second tier

[jQuery] Superfish Richard Willis second tier static

2008-04-02 Thread Deborah
Hello, I am using the Richard Willis version (The first two tiers of menu are horizontally laid-out and the third vertical.) of the Joel Birch Superfish (http://users.tpg.com.au/j_birch/plugins/superfish/richard- willis-example/) I have modified the CSS to create a tab link interface. The first

[jQuery] Re: adding two functions together

2008-04-02 Thread Drake Aedus
$("#functionClick").click(function(){ function1(value); function2(value); return false; }); ID's are unique, you don't need to prefix this with the element. Use an anonymous function, that calls both of your custome functions. Prevent the link from being followed by returning false. Kri

[jQuery] Problem of show and hide when I have several DIV and one only has to be affected

2008-04-02 Thread Brandnew
Hello, I hope I'm more or less clear in my title. I have this problem : I have several DIVs which contains different infos (the content of them is coming from a DB). Exemple : See more CONTENT CONTENT HIDDEN CONTENT HIDDEN CONTENT When

[jQuery] Re: www.na3.it

2008-04-02 Thread GianCarlo Mingati
On Apr 1, 7:22 pm, Drake Aedus <[EMAIL PROTECTED]> wrote: > Very clean and concise markup, degrades wonderfully. Truly the type of > work one would look for and appreciate. ;-) hey, thanks