[jQuery] Re: TableSorter Pagination: Move pagination to top

2008-11-09 Thread ripcurlksm
... still working on this.. it appears that the pagination div is relatively positioned, so that if you have 10 results set to show, it will assume the vertical height that 10 rows would take up.. as a result, if your last page only shows 5 rows remaining, it will still assume that 10 rows are pr

[jQuery] Re: Tablesorter advice required - row level filtering based on inputs?

2008-11-09 Thread aquaone
would this help? http://www.compulsivoco.com/2008/08/tablesorter-filter-results-based-on-search-string/ On Fri, Nov 7, 2008 at 19:31, rich <[EMAIL PROTECTED]> wrote: > > Hello. > I'm here for advice on which approach to take with this problem. > > I am using the wonderful tablesorter 2 plugin (ht

[jQuery] Re: Javascript question.

2008-11-09 Thread George
I guess I figured it out myself :) function GetD(tb) { $this = document.getElementById(tb); var obj = new MyData($this); return obj; } function MyData(tb) { this.init(tb); } MyData.prototype = { init : function (tb){ this.div = tb; this.refresh(); },

[jQuery] Re: Count of checked checkboxes

2008-11-09 Thread Karl Swedberg
On Nov 10, 2008, at 12:06 AM, Steffan A. Cline wrote: on 11/9/08 5:31 PM, Karl Swedberg at [EMAIL PROTECTED] wrote: Hi Steffan, I think you're missing the colon in front of checkbox. Should be: $(":checkbox:checked").length or $("input:checkbox:checked").length On Nov 9, 2008, at 7:07 PM

[jQuery] UI Tabs and a submit button

2008-11-09 Thread Steffan A. Cline
Is it possible to place a submit button on the same line as a row of tabs using the ui tabs? | tab1 | tab2 | tab3 | tab4 | (submit button) |--| Any suggestions? Thanks Steffan --

[jQuery] Re: [validate] Dynamic required fields

2008-11-09 Thread Josh Gillies
Hey Christine, That looks to be exactly what I am after... I cannot believe I overlooked that in the documentation. Hehe, thanks for your reply. I will keep you posted! J Gillies On Nov 10, 4:11 pm, "Christine Panus" <[EMAIL PROTECTED]> wrote: > I believe that would be possible with either the

[jQuery] Re: [validate] Dynamic required fields

2008-11-09 Thread Christine Panus
I believe that would be possible with either the required(dependency-expression) or required(dependency-callback) options It looks really similar to the sample they use for dependency-expression http://docs.jquery.com/Plugins/Validation/Methods/required#dependency-expres sion Though if you're g

[jQuery] Re: Count of checked checkboxes

2008-11-09 Thread Steffan A. Cline
on 11/9/08 5:31 PM, Karl Swedberg at [EMAIL PROTECTED] wrote: > Hi Steffan, > > I think you're missing the colon in front of checkbox. Should be: > > $(":checkbox:checked").length > > or > > $("input:checkbox:checked").length > > > --Karl > > On Nov 9, 2008, at 7:07 PM, Steffan A. Cline w

[jQuery] Javascript question.

2008-11-09 Thread George
I am writing an object that gets data using AJAX and shows it in Also this object must provide refresh method so data can be easily refreshed. Here is my implementation function GetD(tb) { $this = document.getElementById(tb); var obj = new MyData($this); return obj; } function My

[jQuery] Re: Panel Interface for webpage?

2008-11-09 Thread Rene Veerman
Shawn wrote: I'm not sure if I've seen a plugin for this, or even a website, but thought I'd ask here before creating custom code We're looking to have "panels" (aka "widgets") on the page. (A dashboard perhaps?) Each panel is a given size - say 100x100, has a title bar, and minimize/m

[jQuery] Re: [HELP] How do I get attribute's value of selected node ?

2008-11-09 Thread Shawn
Need a little more detail. How are you selecting a node? If I assume for a moment you have a class called "myClass" on the nodes/elements that can be selected, and that you are selecting these nodes by clicking on them, then you can get the ID like this: $(".myClass").click( function () {

[jQuery] NTR Collections

2008-11-09 Thread 24 Hrs Movies
NTR Collections

[jQuery] Shekar Kammula Movie Collections

2008-11-09 Thread 24 Hrs Movies
Shekar Kammula Collections

[jQuery] Panel Interface for webpage?

2008-11-09 Thread Shawn
I'm not sure if I've seen a plugin for this, or even a website, but thought I'd ask here before creating custom code We're looking to have "panels" (aka "widgets") on the page. (A dashboard perhaps?) Each panel is a given size - say 100x100, has a title bar, and minimize/maximize options,

[jQuery] Re: Simple Code, not working.

2008-11-09 Thread Karl Rudd
$('.item:eq(' + lawls + ')').fadeIn(); Karl Rudd On Mon, Nov 10, 2008 at 1:52 PM, Jason <[EMAIL PROTECTED]> wrote: > > var lawls = 1; > > $('#next').click(function () { >$('.item').hide(); >$('.item:eq(lawls)').fadeIn(); >++lawls; > }); > > I have multiple divs, that I wo

[jQuery] Simple Code, not working.

2008-11-09 Thread Jason
var lawls = 1; $('#next').click(function () { $('.item').hide(); $('.item:eq(lawls)').fadeIn(); ++lawls; }); I have multiple divs, that I would like to sequentially appear when a button is clicked. My current code isn't working. This will work: $('#next').click(function

[jQuery] [validate] Dynamic required fields

2008-11-09 Thread Josh Gillies
Hey all, I am wondering whether it's possible to set up a form with dynamic required fields? Basically what I am after is a feedback form with a question like How would you rate this site? with possible answers as Great Okay Needs Work to finish this up there will be a comment box which will

[jQuery] [HELP] How do I get attribute's value of selected node ?

2008-11-09 Thread Pham Anh Tuan
Hi all, I'm stucking in this trouble about 2 hours T___T Because I have to get data from server by ID of selected node, and till now I found no way to get it :( Plz help and show me how to get the value of ID Atrribute of selected node in JQuery TreeView? Thanks for reading, bowlkhin

[jQuery] Re: OnBeforeUnload and jQuery

2008-11-09 Thread Karl Rudd
Unfortunately you have to use the "built in" window.onbeforeunload method. Yes it does look like crap but it's the standard box and if the browsers allowed you to just do anything when someone tried to close a window it would be more of a security risk (think uncloseable windows). The only time

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-09 Thread genius switch
I did see this, cycle is really nice, but is it more relevant to images and not really for content? Also, i didn't dig into it deeply yet mostly i just bookmarked it for future use... but if it's limited to markup having to be in a list, then that would be what steered me away from jCarousel. Othe

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-09 Thread genius switch
I did see this, cycle is really nice, but is it more relevant to images and not really for content? Also, i didn't dig into it deeply yet mostly i just bookmarked it for future use... but if it's limited to markup having to be in a list, then that would be what steered me away from jCarousel. Othe

[jQuery] Re: how to load data into a text area?

2008-11-09 Thread Mike Alsup
> Is it possible to use .load and populate the contents of a TEXT AREA > or do I have to .load into a hidden DIV and then extract the text from > the DIV into the TEXT AREA ? > > I'm currently doing this but it's not working... > > $('#libNotePadTextArea').load('/4dcgi/test/test1.4dp'); Try this

[jQuery] Problems with Multiple File Upload

2008-11-09 Thread dmackerman
I am having a slight problem with the multiple file upload plugin, found here: http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Support Here is my HTML form: Your file Choose an image to upload:

[jQuery] PrettyCheckboxes not working with radio array names

2008-11-09 Thread Ahhk
With this script, I cant get it to work with radio buttons when their names are used as arrays (ie. group[1], group[2], etc). Each radio button in each group gets treated as a stand-alone radio button (on the UI side only) - as if they were checkboxes. In other words, each RB in each group can b

[jQuery] OnBeforeUnload and jQuery

2008-11-09 Thread manwood
Hi All I am trying to warn a user about unsaved changes when they attempt to leave a page. I can catch and prompt using the built in OnBeforeUnload dialog, but it looks sh*t and has some annoying standard text that is of no use to me. I have tried to bind to the BeforeUnload event using jQuery in

[jQuery] Re: Count of checked checkboxes

2008-11-09 Thread Karl Swedberg
Hi Steffan, I think you're missing the colon in front of checkbox. Should be: $(":checkbox:checked").length or $("input:checkbox:checked").length --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 9, 2008, at 7:07 PM, Steffan A. Cline w

[jQuery] how to load data into a text area?

2008-11-09 Thread nmiddleweek
Hi, Is it possible to use .load and populate the contents of a TEXT AREA or do I have to .load into a hidden DIV and then extract the text from the DIV into the TEXT AREA ? I'm currently doing this but it's not working... $('#libNotePadTextArea').load('/4dcgi/test/test1.4dp'); Thanks, N

[jQuery] Count of checked checkboxes

2008-11-09 Thread Steffan A. Cline
Does anyone have a quick trick for getting a count of all checked checkboxes? I tried $("checkbox:checked").length and I always get 0. Is there a trick for this? Thanks Steffan --- T E L 6 0 2 . 7 9 3 . 0 0 1 4 | F A X 6 0 2 . 9 7 1

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-09 Thread genius switch
I did see this, cycle is really nice, but is it more relevant to images and not really for content? Also, i didn't dig into it deeply yet mostly i just bookmarked it for future use... but if it's limited to markup having to be in a list, then that would be what steered me away from jCarousel. Othe

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-09 Thread genius switch
I did see this, cycle is really nice, but is it more relevant to images and not really for content? Also, i didn't dig into it deeply yet mostly i just bookmarked it for future use... but if it's limited to markup having to be in a list, then that would be what steered me away from jCarousel. Othe

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-09 Thread genius switch
Ok, it's looking really good now, but for some reason the easing is not perfect. It seems to work sometimes and not other times. http://www.geniusswitchstudio.com/v2/template.htm I unfortunately don't have a copy of the original I made using jCarousel (the original that prompted this thread), how

[jQuery] Re: animated robot cartoon with jquery

2008-11-09 Thread CodingCyborg
I have decided that sound is not plausible at this time. It starts late every time due to having to load, so the sound effects are off. But the adventure was well worth my time :) I'm thankful that you started this project and gave me something to test my skills on. If you happen to create any mor

[jQuery] [Autocomplete] Reducing remote calls

2008-11-09 Thread Mon Zafra
Hi list, I'm using the excellent autocomplete plugin from bassistance.de. The cache and subset matching features are very useful. I would like to take the subset matching a bit further. I want to prevent the script from querying the server if the query string does not match anything from a previo

[jQuery] JCarousel multiple column/row view?

2008-11-09 Thread [EMAIL PROTECTED]
Yeah I posted on the other list and no one bothered to reply heres original link http://groups.google.com/group/jquery-plugins/browse_thread/thread/3a7764d42f7be662

[jQuery] Preloading WAV file?

2008-11-09 Thread CodingCyborg
I need to preload a WAV file so that it doesn't end up behind the graphics that its supposed to match with... However I can't seem to find a plug-in or simple script to do this. Help is appreciated :) -CodingCyb.org

[jQuery] Re: jQuery object with variable id name. Is is possible?

2008-11-09 Thread Lance123
Hi AliUK-2, Did you ever get a solution to this? I need to do the same thing and it seems hard to do in jquery. I can easily do it in standard js but can't pass the variable to jquery. function checkFormName(obj,formobj) { formAname=formobj.name if(obj.checked==true) { document.forms[

[jQuery] Re: Jquery Countdown!!!

2008-11-09 Thread B3
I got it to work, but I see the "+ 5" is what sets the days left to countdown to. Everytime I reupload this will change since the countdown will start over.. Is there a way I can set a specific date instead of days left? On Nov 9, 10:45 am, CodingCyborg <[EMAIL PROTECTED]> wrote: > Since the way

[jQuery] resizable floating text area?

2008-11-09 Thread nmiddleweek
Hello, What is the best approach to displaying a resizable text area that floats ontop of other elements in the middle of the screen or near to a specific element? The text area can either be already on the form but initially hidden or it could be loaded on the fly. I've found some dialog plugi

[jQuery] Re: Who knows how to use jQuery in Dreamweaver CS4?

2008-11-09 Thread Shawphy
Thx~ But it is said that dw cs4 support jQuery directly without extension On Nov 10, 2:17 am, Brad <[EMAIL PROTECTED]> wrote: > This might be what your looking for: > > http://xtnd.us/dreamweaver/jquery(found via Google) > > On Nov 9, 1:44 am, Shawphy <[EMAIL PROTECTED]> wrote: > > > Now I'm

[jQuery] Re: Open iframe Link in a iFrame - jQuery ThickBox

2008-11-09 Thread Alexandre Plennevaux
that's the normal behaviour of thickbox, if i understand your question correctly... On Sun, Nov 9, 2008 at 8:35 PM, JKICK <[EMAIL PROTECTED]> wrote: > > Any help please... > > On Oct 31, 3:40 pm, JKICK <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I have an Orkut application which is iFrame. I hav

[jQuery] Re: Open iframe Link in a iFrame - jQuery ThickBox

2008-11-09 Thread JKICK
Any help please... On Oct 31, 3:40 pm, JKICK <[EMAIL PROTECTED]> wrote: > Hi, > >  I have an Orkut application which is iFrame. I have this parent > iFrame with scroll down. > >  When use thickbox & jquery to open links as iFrame, The Popup Window > opens in middle of the Page, Instead of where t

[jQuery] Re: ajax form post help needed

2008-11-09 Thread Mike Alsup
> I am using the ajax form pluginworking GREAT however I need to add > a loading grapic to display while it does the post. I have a div > (loader) thats just waiting to turn on and off but I can't get it to > show...any help would be great!! The global ajax events are great for that sort of t

[jQuery] Re: Jquery Countdown!!!

2008-11-09 Thread CodingCyborg
Since the way this forum is set up the line breaks are changed. This caused some of your code lines to be off. The line after "layout:" with the "+" at the end should be on the same line as the "layout:" line. Also, I'm not sure if this one matters, but put the "'yODHMS'," on the line above it rig

[jQuery] ajax form post help needed

2008-11-09 Thread Info
I am using the ajax form pluginworking GREAT however I need to add a loading grapic to display while it does the post. I have a div (loader) thats just waiting to turn on and off but I can't get it to show...any help would be great!! code: $(document).ready(function(){

[jQuery] Re: jMaps Updates

2008-11-09 Thread Tane Piper
Another fair point. I've pushed r61 which contains these changes and updated documentation. On Nov 9, 4:20 pm, Mike Alsup <[EMAIL PROTECTED]> wrote: > > var valid = SearchCode(result.code) > > > looks nicer than: > > > var valid = Mapifies.SearchCode(result.code) or var valid = > > jQuery('#map'

[jQuery] Re: Who knows how to use jQuery in Dreamweaver CS4?

2008-11-09 Thread Brad
This might be what your looking for: http://xtnd.us/dreamweaver/jquery (found via Google) On Nov 9, 1:44 am, Shawphy <[EMAIL PROTECTED]> wrote: > Now I'm coding javascript in dw cs4,and it says dw cs4 support jQuery > code hinting, > but I have no idea how to make it work, > Any ideas?

[jQuery] Exchange a Superfish menu with an Accordion.

2008-11-09 Thread billcd
I have a menu on a site I am working that by default uses superfish. However, the client would like to have a button that users can click that would change the menu to an accordion; without reloading the page. I assume I need to first remove superfish. Right now, the menu works great with superf

[jQuery] [HELP] How do I get the Id of selected node ?

2008-11-09 Thread bowlkhin
Hi all, I'm stucking in this trouble about 2 hours T___T Because I have to get data from server by ID value of selected node, and till now I found no way to get it :( Plz help and show me how to get the value of ID Atrribute of selected node in TreeView? Thanks a lot!

[jQuery] Exchange a Superfish menu with an Accordion.

2008-11-09 Thread billcd
I have a menu on a site I am working that by default uses superfish. However, the client would like to have a button that users can click that would change the menu to an accordion; without reloading the page. I assume I need to first remove superfish. Right now, the menu works great with superf

[jQuery] Re: Jquery Countdown!!!

2008-11-09 Thread bthreesix
http://designbishop.com/4/ On Nov 9, 2008, at 9:43 46 AM, Pixelstuff wrote: > > Do you have a test page we can view? > > > > On Nov 8, 11:52 pm, B3 <[EMAIL PROTECTED]> wrote: >> I did exactly what you said, added the top to my and added the >> span to the html and still nothing. Seems the file

[jQuery] Re: Query from an already-found node

2008-11-09 Thread timothytoe
Nevermind. Sat down with jQuery in Action and found two solutions. .find() and adding a parameter to $(). Funny I never did that before in jQuery. On Nov 9, 9:22 am, timothytoe <[EMAIL PROTECTED]> wrote: > I am a mostly-jQuery, sometimes Dojo user. I just came off a Dojo > contract and one thing

[jQuery] Re: Jquery Countdown!!!

2008-11-09 Thread Pixelstuff
Do you have a test page we can view? On Nov 8, 11:52 pm, B3 <[EMAIL PROTECTED]> wrote: > I did exactly what you said, added the top to my and added the > span to the html and still nothing.  Seems the files are being loaded, > so I don't understand whats going on.. anythin else I can try? > >

[jQuery] Re: jCarousel, localScroll, other options?

2008-11-09 Thread Pixelstuff
Not to scrap any work you've already done, but the Cycle plugin might work also. http://malsup.com/jquery/cycle/ And there are tons of demo pages of what it can do. It's a very extensive plugin. On Nov 8, 12:27 pm, "Ariel Flesler" <[EMAIL PROTECTED]> wrote: > Check LocalScroll's docs. That iss

[jQuery] Query from an already-found node

2008-11-09 Thread timothytoe
I am a mostly-jQuery, sometimes Dojo user. I just came off a Dojo contract and one thing I ended up using a lot was Dojo's ability to do a query starting at a given node (subtree) of the DOM. Now I'm on a jQuery project and I find that I don't know how to do that in jQuery. Suppose I have done a

[jQuery] Re: jMaps Updates

2008-11-09 Thread Mike Alsup
> var valid = SearchCode(result.code) > > looks nicer than: > > var valid = Mapifies.SearchCode(result.code) or var valid = > jQuery('#map').jmaps('SearchCode', result.code); Not if you've clobbered someone else's SearchCode function. Or createIcon, getCenter, getBounds, etc. You're making an

[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-11-09 Thread Crazy-Achmet
Hey Gilles, how is it going? Is there something to see? ;)

[jQuery] Re: combining slideup, post, slidedown

2008-11-09 Thread Dan Switzer
Athalos, On Sun, Nov 9, 2008 at 3:53 AM, Althalos <[EMAIL PROTECTED]> wrote: > > Nope. Can't make that work either. I now have: > $(document).ready(function(){ > $("a").fadeTo(500,0.33); > $("a").hover(function(){ > $(this).fadeTo(500,1); > }, function() { > $(this).fadeTo(300,0.33); > });

[jQuery] Re: jMaps Updates

2008-11-09 Thread Tane Piper
Hey Mike, No thats an absolutly fair point and if you can suggest anything? I don't want to have them as plugin functions, unlike getCenter and getBounds as these are specific to the map. The functions you are talking about are helper functions to be used anywhere within the application, so: v

[jQuery] Re: Need help traversing an unordered list

2008-11-09 Thread Logictrap
Thank you - that's exactlyt what I was looking for. The semantic approach seems a better approach as you described. Thanks again. On Nov 9, 4:23 am, Paul Mills <[EMAIL PROTECTED]> wrote: > Hi, > I've found a slightly messy solution which is to grab the html for > each element and then strip o

[jQuery] Re: rewrite these few lines of code

2008-11-09 Thread Mike Alsup
> I'd like to rewrite so as to include the functions within the document > ready part: > >  $(document).ready(function(){ >   //my functions here >   }); $(document).ready(function() { getContent(); function getContent() { $("div#content").load("content.php", reload); }

[jQuery] Re: jMaps Updates

2008-11-09 Thread Mike Alsup
> All Releases in the future will be marked by their revision number in > the SVN.  At the moment, its r59 and you can download it > fromhttp://jmaps.googlecode.com/files/jquery.jmap-r59.js Hi Tane, That's some great coverage of functionality that you have there! But why are you defining your

[jQuery] [validate] display errors with a transition...

2008-11-09 Thread Christine Davis
I've just started using jQuery validate and as seems to always be the case when trying to add new functions and learn new stuff... I'm on a deadline. My designers really want me to have the validation "slide up and slide down when the messages display. They have also want the error messages to

[jQuery] rewrite these few lines of code

2008-11-09 Thread jjshell
Hi, Here's a bit of code I have: function getContent() { $("div#content").load("content.php", '', reload); } function reload() { setTimeout("getContent();", 1000); } $(document).ready(getContent); I'd like to rewrite so as to include the functions within the document ready part: $(document)

[jQuery] Who knows how to use jQuery in Dreamweaver CS4?

2008-11-09 Thread Shawphy
Now I'm coding javascript in dw cs4,and it says dw cs4 support jQuery code hinting, but I have no idea how to make it work, Any ideas?

[jQuery] Re: jMaps Updates

2008-11-09 Thread Tane Piper
Hi Folks, The documentation is now available at http://map.ifies.org These documents cover the underlying API as well as several examples, these include: * Address searching + Reverse Geocoding * Directions Search * Adding a GeoXML Feed * Adding a Ground Overlay * Adding and Removing markers *

[jQuery] Re: Creating an image thumnail rotator help!

2008-11-09 Thread idealists
Hello?

[jQuery] Re: Attribute selector with namespace

2008-11-09 Thread Balazs Endresz
There's a ticket on this issue: http://dev.jquery.com/ticket/3023 On Nov 7, 11:48 pm, "Brian J. Cardiff" <[EMAIL PROTECTED]> wrote: > thanks but that it isn't working in this scenario > > for: > Lorem > > the expression: > $('span').filter(function(){return $(this).attr("x:foo");}) > returns the

[jQuery] Re: Converting XML String into DOM on Client via JQuery

2008-11-09 Thread chrisb
Thanks! That was more straightforward than I was expecting.

[jQuery] Re: Need help traversing an unordered list

2008-11-09 Thread Paul Mills
Hi, I've found a slightly messy solution which is to grab the html for each element and then strip off the tags. It works but is dependent on the exact sequence of code. I would make things easy for myself by adding some extra tags. Such as putting tags around the Tilte text - then it's easy

[jQuery] Re: Simple Filtering Script not working

2008-11-09 Thread mbraybrook
Have you checked what obj = $(this) returns? Looks to me like it would return the document, of which there is only one, so would only perform one iteration when used with .each. Presumably it would need to reference a group of elements on the page to work e.g.: var obj = $('.class'); M On Nov

[jQuery] Re: span tag is width:80px but is only showing the width of contents?

2008-11-09 Thread nmiddleweek
Thanks for your help with all this, I went with Hectors solution in the end. Here's the demo concept: http://www.getdiverted.com/test/test.html Cheers guys! On Nov 9, 9:36 am, mbraybrook <[EMAIL PROTECTED]> wrote: > It is not a good idea, in my experience, to use floats in that way, > but if

[jQuery] Re: span tag is width:80px but is only showing the width of contents?

2008-11-09 Thread mbraybrook
It is not a good idea, in my experience, to use floats in that way, but if it works - consistently - then i guess there is no real reason not to, it just doesn't feel right... I would avoid going down the road of using inline-block, IE will not completely support it until IE8 is released, and Fir

[jQuery] Re: combining slideup, post, slidedown

2008-11-09 Thread Althalos
Nope. Can't make that work either. I now have: $(document).ready(function(){ $("a").fadeTo(500,0.33); $("a").hover(function(){ $(this).fadeTo(500,1); }, function() { $(this).fadeTo(300,0.33); }); $("#content").fadeTo(10,0.5); $("a").click (function(event) { event.preventD