[jQuery] [validate] Re: [validate] validate: response from "remote" rule

2009-04-09 Thread phazei
Weird, the 'validate' didn't show in my subject, maybe it will now. Well, I figured out a solution, and it works pretty well :D var email_ajax_data; $.validator.addClassRules({ email: { required: true, email: true,

[jQuery] [validator] Want to use POST but how set remote.data property after validate() is called?

2009-04-09 Thread pbarnes
I am using the jQuery Validator plugin with ASMX Web services. I would like not to have to use HTTP GET (for security reasons). I can successfully use POST when directly using $.ajax, but when it comes to the Validator plugin, I'm having a difficult time setting the remote.data property in the rul

[jQuery] Re: jQuery working with selectors

2009-04-09 Thread Ralph Whitbeck
Hey Tiago, This will work: $(document).ready(function() { $("a").click(function() { $(".arrow", this).addClass("testing"); }); }); it adds a click event to your a tags. When a a tag is clicked on it finds the .arrow class within the a tag context and adds the cla

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-09 Thread Ralph Whitbeck
I'm sorry in my previous reply replace the words portrait with the word portfolio ... sorry. Ralph On Fri, Apr 10, 2009 at 12:17 AM, Ralph Whitbeck wrote: > Hey Luke, > > You have two ID's with the same ID "portrait" You can only have one ID > named portrait on the page...name the other portrai

[jQuery] Re: JQuery Cycle Plugin Multiple Pagers on one page

2009-04-09 Thread Ralph Whitbeck
Hey Luke, You have two ID's with the same ID "portrait" You can only have one ID named portrait on the page...name the other portrait2 or something. In your jQuery code change $("#portrait")... to $(".pics")... Both will then work. Although there seems to be other issues both cycles now cycle.

[jQuery] jQuery working with selectors

2009-04-09 Thread Tiago
I'm new to jQuery and I'm trying to solve this little problem here. Imagine that I have the following code: Music list Album list Song list So now when I click one of the links I want to be able to change the class of the span that contains the arrow class. How can I know which lin

[jQuery] JQuery Cycle Plugin Multiple Pagers on one page

2009-04-09 Thread Skinnyl
Hi, First of i'm sorry if the answer to this is somewhere on here already but i've been staring at the screen for hours trying fix this and haven't found exactly what i need. Also i should warn you i know next to nothing about jquery or javascript or any other internet magic past HTML and CSS.

[jQuery] Re: Get var out of ajax scope

2009-04-09 Thread Rick Faircloth
I love the idea of creating the non-page-refreshing apps, but, as someone mentioned earlier, even a relatively simple app just start to overflow with code and it becomes difficult to keep up with what is doing what and when. Someone mentioned earlier, that instead of putting all their js code on

[jQuery] Re: Problem: Thickbox context bigger then browser size - no scroll bars.

2009-04-09 Thread Vincent Nguyen
Hi jwizard, i think we must change code of Thickbox! I must do since i can not google a solution! Did you do that? if you did, could you share it to me? If you didn't, i will do it share to you after completed! 2009/4/9 Vincent Nguyen > Does anyone know how to do this? > I'm getting stuck with

[jQuery] Re: Problem: Thickbox context bigger then browser size - no scroll bars.

2009-04-09 Thread Vincent Nguyen
Does anyone know how to do this? I'm getting stuck with this, too! 2009/4/9 Jim D > > Hi. How do you deal when thickbox is displaying itself bigger then > browser size and it does not show scroll bars, so there is no way of > getting to the last sentences display in Thickbox?

[jQuery] Re: Get var out of ajax scope

2009-04-09 Thread Rick Faircloth
That's a path (storing variables for later use) that I started venturing down when I became aware of global js variables. I thought, now that's a lot simpler than having to make sure that some record ID is always passed between one function and another. But alas, my goal was to try to use global

[jQuery] Re: tablesorter and using .each() on the rows of a table

2009-04-09 Thread MorningZ
Since the tablsorter rewrites the order of the tags on the DOM, then it makes total sense that ".each" will return the rows in the order the appear on the screen On Apr 9, 10:28 pm, "james.kirin40" wrote: > Hi everyone, > > Simple question: if 'table' is a table on which the excellent > tableso

[jQuery] Re: Get var out of ajax scope

2009-04-09 Thread Eric Garside
I assume the idea was to store the variable for later use, not how to trigger a callback. There's a number of situations I use fairly often which need me to store a variable in an accessible place, but not utilize it until later. On Apr 9, 10:19 pm, "Michael Geary" wrote: > That's perfect, Rick

[jQuery] tablesorter and using .each() on the rows of a table

2009-04-09 Thread james.kirin40
Hi everyone, Simple question: if 'table' is a table on which the excellent tablesorter plugin is active, can I rely on the following statement $("#table").each( /* function goes here*/); iterating over the rows of the table in their *current* order? (ie, even if the user has resorted the table?

[jQuery] Re: Get var out of ajax scope

2009-04-09 Thread Michael Geary
That's perfect, Rick, it's exactly the way I would have coded it. Hang in there on this client-side stuff! It will all continue to become more clear as you work with it. I have some sympathy for what you're going through with it. As more of a front-end guy, it happens to me every time I tackle b

[jQuery] Re: Get var out of ajax scope

2009-04-09 Thread Rick Faircloth
Here's a method that I'm using to pass data from an ajax response to another function: (I'm starting with the success: section of an ajax call) success: function(response) { if( response.MESSAGE == 'Success' ) { populateStoryTable(response); }

[jQuery] Re: Simple way to reliably get the title bar text in IE and Firefox..

2009-04-09 Thread DaveT
This worked - thank you for your help! -dave On Apr 7, 7:40 pm, Jonathan wrote: > If you can't figure out a better way you can always do a setTimeout in > the document.ready to call a function after a set delay to poll the > document.title again. > > check_title = function() { >   alert(documen

[jQuery] Re: Get var out of ajax scope

2009-04-09 Thread Michael Geary
There's something missing in each of these solutions. What about the code that will use this variable: How does that code know when the variable is ready to use? That code could check to see if the variable is null, but what does it do then? Try again later? How much later? What's more likely t

[jQuery] Re: jQuery Forms file upload problem

2009-04-09 Thread mattias.ormes...@gmail.com
Aha, but won't work so well with JSON response, right? I do check XHR in my PHP script and I thought it would work doing something like this: $xhr=$_SERVER['HTTP_X_REQUESTED_WITH']=='XMLHttpRequest'; if(!$xhr) { print("".$json.""); } else { print($json); } That way I thought that if I

[jQuery] Re: Managing scripts in AJAX applications

2009-04-09 Thread Eric Garside
I put together a pretty basic DOMBuilder tool for this purpose, called HSJN (HTML Snippet Javascript Notation). You can view/get the source here: http://code.google.com/p/hsjn It gives you the ability to specify jQuery chains within it's syntax, and will parse it out into dom nodes you can insert

[jQuery] Re: JQuery Payload

2009-04-09 Thread Eric Garside
As long as you specify the daa type as "html", it should work automatically. >From the docs: dataTypeString Default: Intelligent Guess (xml or html) The type of data that you're expecting back from the server. If none is specified, jQuery will intelligently pass either responseXML or re

[jQuery] Re: Get var out of ajax scope

2009-04-09 Thread Eric Garside
Well, you've got two basic options. You can do a straightforward global variable like Hector suggested, or you can create and use a custom storage object in the jQuery namespace. Try adding to your code: $.__customStorage = {}; $.get({ url: 'some.page.php', complete: function(data){ $._

[jQuery] Re: Managing scripts in AJAX applications

2009-04-09 Thread JBeckton
Hey... I am using ColdFusion as well on the FuseBox Framework. I have somewhat of a slick way to handle the js resources, it was great at first but the more screen/interfaces I have the more difficult it becomes to manage the js. I basically have a .cfm page with html and dynamic data with none

[jQuery] Problem: Thickbox context bigger then browser size - no scroll bars.

2009-04-09 Thread Jim D
Hi. How do you deal when thickbox is displaying itself bigger then browser size and it does not show scroll bars, so there is no way of getting to the last sentences display in Thickbox?

[jQuery] Re: Cluetip not working on multiple links calling local html data

2009-04-09 Thread Karl Swedberg
Hi there Ian, So sorry about that problem. I believe I've fixed it in a version I've had up on Github for a couple weeks. Just put together a new release for it here: http://plugins.jquery.com/node/7526 Please give that one a try and let me know if you still run into problems --Karl _

[jQuery] Re: Individual Custom Message [validate]

2009-04-09 Thread dotcomtim
Solved 1 and 2 just not the third. Anyway to detected duplicates only? Everything I found on the net only removes duplicates. $.validator.addMethod('keywords', function(value, element) { var valid = true; var valid = (value.length > 0); var message = $(element); if

[jQuery] Re: Get var out of ajax scope

2009-04-09 Thread Hector Virgen
Something like this might work: var ajaxResponse; $.ajax({ url: 'ajax.php', complete: function(response) { ajaxResponse = response; } }); -Hector On Thu, Apr 9, 2009 at 3:44 PM, Nic Hubbard wrote: > > I have an $.ajax() call that I am using to GET some text from a page > o

[jQuery] Get var out of ajax scope

2009-04-09 Thread Nic Hubbard
I have an $.ajax() call that I am using to GET some text from a page on my site. I have put it in a variable with the success function. How can I move that var up and out of the $.ajax function so I can use it in other parts of my script? Thanks.

[jQuery] Re: jQuery Forms file upload problem

2009-04-09 Thread Mike Alsup
> I have a image edit form where the user can upload a new image and/or > edit image information such as title, description etc. Since I use the > jQuery Forms plugin for most of my other forms I wanted to use it here > as well, but last night I encountered a little problem... > > I use JSON for t

[jQuery] jQuery Forms file upload problem

2009-04-09 Thread mattias.ormes...@gmail.com
I have a image edit form where the user can upload a new image and/or edit image information such as title, description etc. Since I use the jQuery Forms plugin for most of my other forms I wanted to use it here as well, but last night I encountered a little problem... I use JSON for the return d

[jQuery] JQuery Nubie

2009-04-09 Thread duke
Hi all, I want to add the ability to play sound on my web site without going to a new page. is IE dependent and will not hold accross all browsers. I downloaded the jquery.media.js and the jquery.metadata.js and included the imports: I then included the followin

[jQuery] Re: .split an elements attribute

2009-04-09 Thread Nic Hubbard
Ah, thank you! Not sure what I was thinking. On Apr 9, 3:04 pm, mkmanning wrote: > Try alert( typeof(link_path) ) and you'll see it's a function. Try > link_path.toString() and then split it. > > On Apr 9, 2:54 pm, Nic Hubbard wrote: > > > I am getting the attribute of an image on a page.  It

[jQuery] JQuery Payload

2009-04-09 Thread cstolwor...@gmail.com
I was wondering if JQuery has anything builtin to find an element from the payload of an ajax call, and eval() the contents of it? I have some cases where I will be returning javascript with HTML and I would like to be able to just execute it

[jQuery] Re: jQuery function to click a link on the page

2009-04-09 Thread Thomas Creutz
Thomas Creutz schrieb: > CaptainABrad schrieb: >> Stated simply, is there a way to either: >> 1) Click a link on a page with jQuery, or >> 2) Open a link in a new tab. > > 2: window.open and target "_new" should work > > http://www.mydigitallife.info/2006/10/08/launch-and-open-links-in-new-window

[jQuery] Re: jQuery function to click a link on the page

2009-04-09 Thread Thomas Creutz
CaptainABrad schrieb: > Stated simply, is there a way to either: > 1) Click a link on a page with jQuery, or > 2) Open a link in a new tab. 2: window.open and target "_new" should work http://www.mydigitallife.info/2006/10/08/launch-and-open-links-in-new-window-or-tab-with-_blank-or-_new-as-targe

[jQuery] Re: .split an elements attribute

2009-04-09 Thread mkmanning
Try alert( typeof(link_path) ) and you'll see it's a function. Try link_path.toString() and then split it. On Apr 9, 2:54 pm, Nic Hubbard wrote: > I am getting the attribute of an image on a page.  It is the onclick > attribute, but I need some text from the onclick function. (Sounds > strange,

[jQuery] Re: onclick event on

2009-04-09 Thread goldy
in js file $('a.ToggleOpen').live("click",function(){ var searchhtmlid = $(this).attr('rel'); var filename = String($(this).attr('href').split("?",1)); var myparams = getparams($(this).attr('href')); myparams.pop(myparams);

[jQuery] Re: Adding incremental numbered classes to divs

2009-04-09 Thread mkmanning
Since you're not using the class for styling, but indexing, why not just use the natural index of the div in its container, or from the jQuery object itself? $('.ngg-gallery-thumbnail-box') is an array-like object, so you can iterate over it, or access its members by index number, such as $ ('.ng

[jQuery] .split an elements attribute

2009-04-09 Thread Nic Hubbard
I am getting the attribute of an image on a page. It is the onclick attribute, but I need some text from the onclick function. (Sounds strange, but I do). Using the following works totally fine: var link_path = $(html).find("img[alt='Show in Asset Map']").attr ('onclick'); alert(link_path); >F

[jQuery] Should I be zipping up my Jquery?

2009-04-09 Thread chobo2
Hi My site is running slow(well especially the one page). On this one page I got like 700kb worth of jquery plugins + my own jquery stuff. So I am looking on how to make it faster. I am using as much of mini versions of jquery as I could find so now I am looking into zipping it. I hear this mak

[jQuery] Re: jCarousel display and scrolling problems

2009-04-09 Thread Daniel Khan
Hello again, scrolling works now - I copyied the example over it again. But still initially opnly one image is loaded in FF. Greetings Daniel Khan

[jQuery] Re: Firefox bug on height

2009-04-09 Thread Thomas Creutz
Main store schrieb: > I have a bug only on Firefox (IE and Safari OK), > the carousel is here http://www.main-store.fr . > > You'll see the bottom of my page is too long. > I have tried to modify the CSS with some Height measurements but > nothing happen.. hi.. just remove the height from the bo

[jQuery] Re: Works in IE7 but not IE6

2009-04-09 Thread MauiMan2
That's the META tag I have in there now. Should I change it?

[jQuery] Re: tablesorter Speed issues

2009-04-09 Thread csi95
Okay, my bad here. Thanks to the one-on-one help of one of the great members here, I was able to find the problem. It wasn't the software, it was the hardware. There was something odd going on with the development PC I was using to run the test. Not only was my sort running very slow, so were

[jQuery] strange behavior when using jQuery fadeOut function on element with floated element and absolutely positioned element

2009-04-09 Thread Elias
I am having some strange behavior with the fadeOut function. I asked about it on StackOverflow. If you want, you can see the discussion at http://stackoverflow.com/questions/735292/strange-behavior-when-using-jquery-fadeout-function-on-element-with-floated-eleme . Someone on there mentioned that t

[jQuery] Re: Adding incremental numbered classes to divs

2009-04-09 Thread Hector Virgen
Can you use an ordered list? elements are block level just like divs. -Hector On Thu, Apr 9, 2009 at 1:46 PM, Eric Garside wrote: > > What's the advantage of assigning the identifier to the class? Like, > how are you using it once you create the classes. I'm assuming there's > an easier soluti

[jQuery] Re: Adding incremental numbered classes to divs

2009-04-09 Thread Eric Garside
What's the advantage of assigning the identifier to the class? Like, how are you using it once you create the classes. I'm assuming there's an easier solution, especially if you're doing it dynamically. On Apr 9, 2:54 pm, Brain Lava wrote: > Thanks Ralph!  I'll give that a try :) > > On Apr 9, 1

[jQuery] Re: Orphan nodes

2009-04-09 Thread jay
I made a more general test case, and I'm finding it is necessary for me to unbind events within a given plugin in order for it to go away in IE7. I thought empty and remove were supposed to unbind stuff for me? Here is my test case: (function($){ $.fn.myPlugin = function(options)

[jQuery] Re: jQuery function to click a link on the page

2009-04-09 Thread mattimus5...@gmail.com
try using window.open, its not jquery, just javascript, but you use it to open new windows On Apr 9, 10:07 am, CaptainABrad wrote: > http://abrad45.com/sites/beta/ > > I have this almost working. When you drop the icons on the iMac > Screen, the pages are supposed to load in a new tab. I was doi

[jQuery] Re: tablesorter Speed issues

2009-04-09 Thread MorningZ
"There may be a bit of Apples and Oranges here" For sure.. that link is doing a full blown form post to the server (just pull up Firebug's "Net" panel to see).. i wouldn't compare anything the two do between each other I've been using tablesorter for a good year now, and i do everything i c

[jQuery] Help showing 'Showing 3 of 12' msg in Carousel

2009-04-09 Thread P
hi, I was wondering if anyone has used or know the link to jQuery carousel which shows 3 vidoes at a time with ofcourse next & pre button and message something like this: 'Showing 3 of 12' Thanks for your help.

[jQuery] Carousel Help Needed

2009-04-09 Thread P
Using: http://sorgalla.com/projects/jcarousel/examples/static_controls.html I would like to have a control bar that shows dots instead of page numbers, etc. the difference being that if you have 9 items and you show 3 at a time, you should have 3 dots. A dot would represent a page and not one ima

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-09 Thread Rick Faircloth
I took a look at your code and I'm still on quite sure what you want the end result to be. What will the select (and any other HTML) look like when it comes out the way you want it to? Just type out the end result here and then we can backtrack and see how to get there. Rick -Original Mess

[jQuery] Re: Endeavour: translating X-Library functionality "click-n-drag checkboxes" into Jquery

2009-04-09 Thread Lwangaman
Ok I resolved the "cannot assign to a function result" problem by putting the value assignment into a "function(){}": 48 $("td.mychkbox").each( 49function(){ 50 $(this).bind( 51"mouseover", 52function(){ 53 if (gCheckedValue != null){ 54var eccomi =

[jQuery] Re: tablesorter Speed issues

2009-04-09 Thread csi95
Thanks for the response -- I may need to do that. I'm curious if anyone else has input on the speed of Tablesorter, however. I've seen other solutions that can sort a large table quickly. For example http://dynamictable.com/demos/ Dynamic Table Demo handles 1,000 rows in about 1 second. T

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-09 Thread Rick Faircloth
He's trying to come up with a way to increment that select options by one...I haven't had time to look at this code to understand thoroughly. Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of mattimus5...@gmail.com Sent: Thursday, A

[jQuery] Re: tablesorter Speed issues

2009-04-09 Thread Dan G. Switzer, II
Bryan, As MorningZ pointed out, it's usually not the actual sorting that's slow--it's the redrawing. DOM manipulations of elements is notoriously slow. -Dan On Thu, Apr 9, 2009 at 3:36 PM, MorningZ wrote: > > I'd look at doing some server side sorting if you are looking for > speed... it's a

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-09 Thread mattimus5...@gmail.com
Ok I see your code from the above post now. var reqData = { $('select.litqty').each( $(this).attr('name') : $(this).val(); ); } This would get the name and value of each select.litqty Is this what you are trying to achieve?? On Apr 9,

[jQuery] Re: Translating X-Library functionality into Jquery

2009-04-09 Thread Lwangaman
I continued this thread in a new thread: http://groups.google.com/group/jquery-en/browse_thread/thread/956e72c4e071a3de On 9 Apr, 04:31, Lwangaman wrote: > Ok now that that has been straightened out, here's my full endeavour: > > I'm trying to translate into jquery a useful functionality that I

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-09 Thread mattimus5...@gmail.com
You are just trying to get the value of the select box and only the select box??? So you have something like Book 1 ??? Book 2 Book 3 Book 4 What do you need reqData to look like?

[jQuery] Re: Tips on multi field validation - Composite unique constraint

2009-04-09 Thread Ted
Does anyone have a suggestion about multi field validations? Is this even something the plugin has designed for yet?

[jQuery] Re: tablesorter Speed issues

2009-04-09 Thread MorningZ
I'd look at doing some server side sorting if you are looking for speed... it's a lot of work for the plugin to sort the client side data and then redraw 400 rows of data On Apr 9, 3:09 pm, csi95 wrote: > Hi folks, > > I've just started using tablesorter for one of my projects, and overall I

[jQuery] Data Grid Live Edit

2009-04-09 Thread Sarm
Hi Everyone, I need Datagrid Live Edit for php. I search on google but but not get any good. Please tell me good one. Advance Thanks

[jQuery] tablesorter Speed issues

2009-04-09 Thread csi95
Hi folks, I've just started using tablesorter for one of my projects, and overall I love it. Does just what I need. The one issue I've come across is that it's S-L-O-W! On a small table, it's just fine. Once I get up to about 400 rows, however, it takes a long time. 6 seconds before the lis

[jQuery] Data Grid Live Edit

2009-04-09 Thread Sarm
Hi Everyone, I need Datagrid Live Edit for php. I search on google but but not get any good. Please tell me good one. Advance Thanks

[jQuery] Re: Works in IE7 but not IE6

2009-04-09 Thread slycreations
I'll agree with the others that it's hard to trouble shoot without some code. The only time I've had issues with IE6, it was due to inconsistencies in file encoding. We encode all of our pages and scripts as UTF-8, and the validation plug-in was ISO-8859-1. Once I encoded the plug-in source file

[jQuery] Orphan nodes

2009-04-09 Thread jay
Is there a general rule of thumb to avoid orphan nodes? I'm using a multiselect plugin which I'd like to be able to remove from the DOM but it is creating orphan nodes in IE and the nodes are not removed according to sIEve. I suspect it is the order that the elements are removed from the DOM, but

[jQuery] Re: Works in IE7 but not IE6

2009-04-09 Thread MauiMan2
Basically I am trying to use jQuery to add classes to certain elements. Works in IE7 and every other browser but not IE6. This an example of a jQuery statement I have in place so far: $(document).ready(function() { $('BODY > DIV').addClass('mainDiv'); }); The CSS has certain styles tha

[jQuery] Re: How to select :inp...@type=text] OR :inp...@type=password]

2009-04-09 Thread Nick Boutelier
Thanks guys. Exactly what I needed. On Apr 9, 4:46 am, MorningZ wrote: > First off, lose the "@" if you are planning on using version 1.3.1 or > higher of the jQuery library > > second, the docs are your friendhttp://docs.jquery.com/Selectors(see the last > item in the "basics" > section on the

[jQuery] Re: Adding incremental numbered classes to divs

2009-04-09 Thread Brain Lava
Thanks Ralph! I'll give that a try :) On Apr 9, 10:13 am, Ralph Whitbeck wrote: > You can use .each to iterate through each div element and increment the > classname or ID via it's index. > > $("div").each(function(i) { >     $(this).addClass("classname" + i); > > }); > > http://docs.jquery.com

[jQuery] Re: Adding incremental numbered classes to divs

2009-04-09 Thread Brain Lava
Normally I would agree with you but the effect I'm trying to achieve is based on the location of the image in the grid and not tied to the image itself. I don't want the end user to have to update the CSS every time they move an image or add a new one to their gallery. This seemed like the best

[jQuery] Re: generate AJAX data based on number of select elements

2009-04-09 Thread Kinsbane
Just hoping to see if there's a solution available.

[jQuery] Re: simply toggling a div that contains a flash movie

2009-04-09 Thread dongle
ok thank you. On Apr 9, 7:45 pm, Ralph Whitbeck wrote: > object's don't obey traditional css layering.  You'll need to hide the > object first then toggle your div. > > On Thu, Apr 9, 2009 at 12:16 PM, tetris wrote: > > > hello > > to simply toggle a div that contains a flash movie does not wor

[jQuery] Re: simply toggling a div that contains a flash movie

2009-04-09 Thread Ralph Whitbeck
object's don't obey traditional css layering. You'll need to hide the object first then toggle your div. On Thu, Apr 9, 2009 at 12:16 PM, tetris wrote: > > hello > to simply toggle a div that contains a flash movie does not work in > firefox,the flash object does not disappear gradually, any th

[jQuery] JCarousel Circular - Start Over Problem

2009-04-09 Thread JD
I have a page with one JCarousel on it. I need to be able to switch between different data sources for the single display carousel. I have it almost working - however when I execute... it loops around to the default start state and doesn't keep the new data on displayit blinks past though. I

[jQuery] Re: Firefox bug on height

2009-04-09 Thread Nathan
In the "boxes.css" try adding "clear:both;" to ".footer .legality" So that should look like: .footer .legality { clear:both; color:#FF; padding:10px 0; } Let me know if that helps. On Apr 9, 9:01 am, Main store wrote: > Hi everybody, > > Thanks for this great carousel, i love it ! > > I

[jQuery] add custom links on datepicker

2009-04-09 Thread molips
Hi, which would be best way to add some extra links/buttons on datepicker? For example i need 2 more options: 3)Today option, which sets values of input field and datepicker UI to current date 2)A link which clears inputfield value Do i need to hack the datepicker code or is there a way to create

[jQuery] truncate problem - why does it show full-size and then shrink after page load?

2009-04-09 Thread Andy
I'm using the Truncate plugin (http://www.reindel.com/truncate/) and when the page loads, all the DIVs display full size and then after the page load, they all shrink and show the "more" link. I look at the example on the Truncate site and it doesn't behave this way Any ideas? --~--~-~-

[jQuery] Firefox bug on height

2009-04-09 Thread Main store
Hi everybody, Thanks for this great carousel, i love it ! I have a bug only on Firefox (IE and Safari OK), the carousel is here http://www.main-store.fr . You'll see the bottom of my page is too long. I have tried to modify the CSS with some Height measurements but nothing happen.. Can somebod

[jQuery] jCarousel display and scrolling problems

2009-04-09 Thread Daniel Khan
Hello, I am using jCarousel 0.2.3 with jQuery 1.3.2 for displaying flickr images and slimbox2 to show them in a lightbox. I'm new to jQuery and I fiddled everything together from examples and it allready works somehow but ere is my problem: In FF most of the time only one picture is shown at th

[jQuery] simply toggling a div that contains a flash movie

2009-04-09 Thread tetris
hello to simply toggle a div that contains a flash movie does not work in firefox,the flash object does not disappear gradually, any thoughts? code: $(document).ready(function(){ $("button").click(function () { $("div").toggle("slow"); }); }); Toggle 'em http://

[jQuery] Traversing a XML document

2009-04-09 Thread snakebit
/* * @param dom_obj xml data * @param ulObj unordered list element */ function buildTree(dom_obj, ulObj){ ulObj.append(''+dom_obj[0].nodeName+''); if(dom_obj[0].hasChildNodes()){ ulObj.append(''); dom_obj.children().each(function (i, obj){ buildTree($(this), ulObj.find

[jQuery] Re: get reference to nested appended element

2009-04-09 Thread miniswi...@gmail.com
thanks for the useful infomation! On Apr 7, 11:00 pm, mkmanning wrote: > Caveat: > Jonathan's method will get you the child table (the one with id rt0 > from the original OP's example), however Eric's will get you all > tables that are children of a table, within the context of the parent > cont

[jQuery] Re: Circular jCarousel

2009-04-09 Thread Filipe La Ruina
Ok, i managed to get my data to load the way the example shows. It iscircular now, although I have a bug that happens when i scroll back with my controls and click on a 'page' it scrolls to the page but don't put it in the right position, like, page 3 has to show itens 3 and 4, although after scol

[jQuery] Something is not working in IE7

2009-04-09 Thread iceangel89
i seem to have some funny behavior in IE7 ... basically i have can add a option to a select elem with a ajaxForm - http://malsup.com/jquery/form/. then once added, i will repopulate the select from db. in Firefox all works fine... in IE7 it seem to work... added and repopulated dropdown ok. but

[jQuery] Re: setExpression makes IE8 crash in blockUI plugin

2009-04-09 Thread Danilo Celic
On Mar 20, 3:04 pm, Mike Alsup wrote: > > I'm seeing the same issue with IE8 and setExpression. From > > MSDN:http://msdn.microsoft.com/en-us/library/ms537634.aspx > > Can you try v2.16? > > http://www.malsup.com/jquery/block/jquery.blockUI.js?v2.16 Hey Mike, I'm using 2.16 and I've run into

[jQuery] Re: jQuery.event.trigger()

2009-04-09 Thread Paul Thiel
Hey Ariel. I am traveling much of the day today, so will throw something together on the plane. Cheers; P. On Apr 8, 4:29 pm, Ariel Flesler wrote: > (Reply to either) > > Can you make a demo out of this ? > Please put the unminified version of jQuery 1.3.2. > > -- > Ariel Flesler > > On Apr 8,

[jQuery] Re: Is jquery safe ?

2009-04-09 Thread Ralph Whitbeck
Devesh, Here are some official responses to hopefully help in the next search to see if jQuery is safe: >From my blog: http://ralphwhitbeck.com/2009/04/09/IsJQuerySafe.aspx >From Rey Bango's blog: http://blog.reybango.com/2009/04/09/is-jquery-safe/ I hope this confirms that the team takes jQuer

[jQuery] Individual Custom Message [validate]

2009-04-09 Thread dotcomtim
I am working on a custom filter to check for errors by adding the addMethod() function within the jQuery Validation Plugin. I have success so far with most of it except for the last few items. 1) Individual Messages – I like to replace the alert messages to append their own message. I tried sever

[jQuery] Re: Flash content over BlockUI on Firefox in Windows

2009-04-09 Thread James Diamond
Danilo, Thank you very much. I would have never noticed it, probably cause I haven't used flash this way either. Our designer gave me the flash this way. Cheers James On Apr 8, 7:19 pm, Danilo Celic wrote: > James, > > It appears that you've added the wmode to the OBJECT and EMBED tag, > howev

[jQuery] Re: Is jquery safe ?

2009-04-09 Thread Rey Bango
Hi Devesh, I'm not sure if you're concerned because your virus scanner reported something or because you'd like to have some assurances that what you're downloading is legitimate. I'll address both just in case. 1) Virus Scanner Reported Something: In some instances, anti-virus programs have

[jQuery] JCarousel Dynamic source - Overwrite problem

2009-04-09 Thread JD
Hi, I need a bit of help. I am using JCarousel. I need 1 Carousel on my page, but I want to be able to change the source of the data going to the carousel based on what the user selects. For example - set of images and text that is for Paris, one for Rome and one for Hong Kong... the user selec

[jQuery] Re: Is jquery safe ?

2009-04-09 Thread Rey Bango
One other note. Please only download jQuery from the official site or use the version hosted on Google's CDN. Here are the official site links: http://jquery.com/ http://code.google.com/p/jqueryjs/ http://jqueryui.com/ (for the jQuery UI library) http://code.google.com/apis/ajaxlibs/ Downloadin

[jQuery] Re: Is jquery safe ?

2009-04-09 Thread Rey Bango
Right. That happens on occasion with packed & minified versions of jQuery. Rey.. MorningZ wrote: > While i agreed with the underlying thoughts above that the question is > ridiculous... I have had some members on my primary site tell me that > Norton reporting "jquery.js" as a dangerous file >

[jQuery] Re: Node click behavior

2009-04-09 Thread edik
I'm too searching for a way to change the click behaviour of the nodes (without touching the plugin-source), so that ONLY +/- expands/ collapses the node and not the click on the SPAN element inside the LI- element. Anybody any suggestions? Thanks a lot On 10 Mrz., 21:04, Ryan wrote: > Is th

[jQuery] [autocomplete] multiple option duplicates

2009-04-09 Thread leolanksf...@googlemail.com
Hi This is probably something very simple that ive overlooked and cant find the answer to but here it goes anyway: On the Multiple Birds (remote): demo you can add multiple items, however you can also add the same item twice. Is there a way to post back to the db script the items that have alre

[jQuery] jQuery function to click a link on the page

2009-04-09 Thread CaptainABrad
http://abrad45.com/sites/beta/ I have this almost working. When you drop the icons on the iMac Screen, the pages are supposed to load in a new tab. I was doing this by trying to have the action on "drop" click on a link on the page. I have things pretty close, but then realized that .click() will

[jQuery] Re: Select all last cells of all rows?

2009-04-09 Thread ryan.j
aah, skip that - you'd need to give each row an id and broaden the selector for that to work wouldn't you. On Apr 9, 3:01 pm, "ryan.j" wrote: > could you not just do $('tr td:last').click()? > > On Apr 9, 2:56 pm, MorningZ wrote: > > > I swear I've seen a post asking this before, one that I eve

[jQuery] Re: jQuery Malsup Cycle Plugin (advanced pager not working in IE)

2009-04-09 Thread Donna Vitan
Sweet jebus, thank you so much. That fixed the problem right up. On Apr 8, 8:28 pm, Mike Alsup wrote: > > I'm trying to use the advancedpagersimilar to > > thishttp://malsup.com/jquery/cycle/pager2.html > > > However, it only works in FF and not inIE. > > My test page:http://cascodesign.ca/clie

[jQuery] Re: Select all last cells of all rows?

2009-04-09 Thread ryan.j
$("tr td:last-child").click(function () { alert("!"); }); On Apr 9, 3:01 pm, "ryan.j" wrote: > could you not just do $('tr td:last').click()? > > On Apr 9, 2:56 pm, MorningZ wrote: > > > I swear I've seen a post asking this before, one that I even > > participated in, but damned if i ca

  1   2   >