Re: [jQuery] jqGrid

2010-08-04 Thread Denis Caggiano
Brasileiro? :) Estou usando a Grid Master Detail para alterar dados no banco. Porém a grid que exibe o detalhamento (que se pode excluir/inserir/alterar itens) não estou conseguindo enviar o ID da master grid para o banco. Ou seja, consigo fazer tudo nas 2 grids, porém nao consigo adicionar na segu

Re: [jQuery] jqGrid

2010-08-04 Thread Ricardo Fontão Verhaeg
Hi Denis what is your intent for doing this? you want to add custom data to the post or change the data? this will call a function just before sending the data to the server. with the POST array formed (or what will become it after submitting) Ricardo Verhaeg Bacharelado Ciências da Computação -

Re: [jQuery] Validation and AJAX forms

2010-03-23 Thread Steffan A. Cline
I've still not gone anywhere with this. Any suggestions? Thanks Steffan > From: Steffan Cline > Reply-To: > Date: Mon, 22 Mar 2010 22:54:32 -0700 > To: "jquery-en@googlegroups.com" > Subject: [jQuery] Validation and AJAX forms > > I'm tinkering with the jquery forms plugin with the valid

Re: [jQuery] Block link with lightbox

2010-03-03 Thread Nilesh Macwan
Hi *My Understanding as per your email : *you what to pop-up light box on click on anchor tag or on text. please correct me *My Explanation : *give specific identification to each element like "div" in terms of class, example if div is having image then give "myimgclass", if div is containing tex

Re: [jQuery] How to add a button

2010-03-03 Thread Cesar Sanz
what??? - Original Message - From: "podeig" To: "jQuery (English)" Sent: Wednesday, March 03, 2010 8:22 AM Subject: [jQuery] How to add a button Hello! Is it possible to add a button (like standard drop down list has) to open the list with all the results? I need two ways to selec

Re: [jQuery] problem with ajaxForm

2010-03-03 Thread Rey Bango
Abraxas, Could you please post your question here? http://forum.jquery.com/ That is the official support forum for the jQuery project. We no longer monitor this Google group. Thanks, Rey jQuery Team On Wed, Mar 3, 2010 at 9:54 AM, Abraxas wrote: > I NEED HELP PLEASE... IM USING AJAXform and i

Re: [jQuery] What I need to know?

2010-03-03 Thread Cesar Sanz
jquery does not work with your backend system.. just can init a request and your server side will handle all that stuffs (like insertions, deletions, etc) regards - Original Message - From: "Nathan Klatt" To: Sent: Tuesday, March 02, 2010 4:00 PM Subject: Re: [jQuery] W

Re: [jQuery] What I need to know?

2010-03-02 Thread Nathan Klatt
On Tue, Mar 2, 2010 at 3:31 PM, Danjojo wrote: > Is it possible with jQuery to update a database / call a stored > procedure when I update an Input box that represents Quantity of an > item? http://api.jquery.com/category/ajax/ There are some AJAX tutorials targeting jQuery use linked to here:

Re: [jQuery] Get the previous element matching a class

2010-03-02 Thread Nathan Klatt
On Tue, Mar 2, 2010 at 9:20 AM, debussy007 wrote: > I would like to have the previous TD element with class "time". > > I tried : $(this).closest('td').prev('td.time').html()   (where "this" is a > div element inside a TD) > But it only works for a div inside a TD that is *directly* following the

Re: [jQuery] Slide down / Slide up, stop repeating

2010-03-02 Thread Nathan Klatt
On Mon, Mar 1, 2010 at 11:35 AM, Paul Collins wrote: > My problem is that if someone hovers over the .content multiple times, > the JQuery remembers and keeps popping the menu up and down >From http://api.jquery.com/stop/: We can create a nice fade effect without the common problem of multiple q

Re: [jQuery] Newbie Question: Finding and manipulating an element

2010-03-01 Thread Aaron Johnson
Greg, Nathan, Thanks very much for your help! On 1 March 2010 14:58, Nathan Klatt wrote: > On Mon, Mar 1, 2010 at 5:06 AM, Aaron Johnson > wrote: > > The top level list has an ID and associated css, I'd like to add a class > to > > each of the nested elements in order to style them differently

Re: [jQuery] Newbie Question: Finding and manipulating an element

2010-03-01 Thread Nathan Klatt
On Mon, Mar 1, 2010 at 5:06 AM, Aaron Johnson wrote: > The top level list has an ID and associated css, I'd like to add a class to > each of the nested elements in order to style them differently. I > cannot manually add a class so wondered if I could do it with jQuery. > > I'm looking for a resu

Re: [jQuery] superfish joomla

2010-02-28 Thread Jonathan Vanherpe (T & T nv)
You forgot to put ; after }) a couple of times. IE is a bit strict in that regard. Jonathan Eddie wrote: Hello all at jquery group, superfish menu in joomla works fantastic but it gives an error in IE8 and my client hates it! the "done, but with errors" this is the errordoes anyone know ho

Re: [jQuery] Re: Accordion help ....

2010-02-28 Thread Nathan Klatt
On Sun, Feb 28, 2010 at 12:00 AM, Erik wrote: >  { $(this).removeClass("ui-state-active"); } No, don't do that - that'll screw up the accordion, I expect. I mean something in the css like: .ui-state-active:hover { background-color: inherit; /* or "none" or some specific color */ } Nathan

Re: [jQuery] superfish joomla

2010-02-27 Thread Charlie
Try removing the window.load function, it makes no sense to bind the different menu functions to different page load events jQuery.noConflict(); jQuery(function($){ // this is document ready $("ul.sf-menu").superfish({hoverClass:'sfHover', pathClass:'active', pathLevels:0, delay:800, animat

Re: [jQuery] Accordion help ....

2010-02-26 Thread Nathan Klatt
On Fri, Feb 26, 2010 at 3:12 PM, Erik wrote: > My accordion is working great, but I need to STOP the hover on the > selected item. You should be able to deactivate the hover for .ui-state-active elements. Nathan

Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-26 Thread Cesar Sanz
this IS interesting!! Some geeks works fine! - Original Message - From: "Vikas Patidar" To: Sent: Thursday, February 25, 2010 2:51 PM Subject: Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !! Hi, there is another solution more easy and cool try it... C

Re: [jQuery] Re: How to check TD background image has been loaded.

2010-02-26 Thread Liam Byrne
That won't trigger a load event This is as close as you'll get (using an image object to actually load it, and then using it. var imageObj = new Image(); $(imageObj).attr("src",imagePath).load(function(){ // do whatever else you want to do in here too $("#leftCol").css("background

Re: [jQuery] Quirks with Tablesorter

2010-02-25 Thread aquaone
seconded. Your best bet is to write your own widget that deletes and appends your separators for you on sort. On Thu, Feb 25, 2010 at 15:33, Nathan Klatt wrote: > On Thu, Feb 25, 2010 at 5:28 PM, West415 wrote: > > I don't need the headers to repeat though. I'm trying to have a visual > > sepa

Re: [jQuery] Quirks with Tablesorter

2010-02-25 Thread Nathan Klatt
On Thu, Feb 25, 2010 at 5:28 PM, West415 wrote: > I don't need the headers to repeat though.  I'm trying to have a visual > separator between the rows.  I don't have to use an tag, but the > problem is, it tries to sort every row as if there is data there.  I'd like > it to ignore that row when d

Re: [jQuery] Quirks with Tablesorter

2010-02-25 Thread West415
Thanks for the reply. I don't need the headers to repeat though. I'm trying to have a visual separator between the rows. I don't have to use an tag, but the problem is, it tries to sort every row as if there is data there. I'd like it to ignore that row when doing the sort. Any idea? I'm

Re: [jQuery] Quirks with Tablesorter

2010-02-25 Thread Nathan Klatt
On Thu, Feb 25, 2010 at 4:34 PM, West415 wrote: > I am using a jquery plugin called tablesorter.  It works fine but I've found > a quirk and can't seem to fix it and would love some help if possible.  When > you sort, the sort works, but for some reason all the tags which render > a horizontal li

Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-25 Thread Vikas Patidar
Hi, there is another solution more easy and cool try it... CSS Rounded Corners In All Browsers (With No Images) http://jonraasch.com/blog/css-rounded-corners-in-all-browsers On 2/25/10, Cesar Sanz wrote: > thanks.. > > First time I heard about it.. .cool stuff! > - Original Message -

Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-25 Thread Cesar Sanz
thanks.. First time I heard about it.. .cool stuff! - Original Message - From: "Erik" To: "jQuery (English)" Sent: Wednesday, February 24, 2010 6:32 PM Subject: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !! http://www.dillerdesign.com/experiment/DD_roundies/ On Feb 23

RE: [jQuery] Dynamic Tabs for Prototyping

2010-02-25 Thread Andreas Möller
I believe you should go for JQuery UI . . . ! Check it out at [x] www.jqueryui.com Best regards, Andreas

Re: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-23 Thread Cesar Sanz
What are roundies? - Original Message - From: "Erik" To: "jQuery (English)" Sent: Tuesday, February 23, 2010 10:50 AM Subject: [jQuery] Re: FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !! Use the ROUNDIES script for IE7, which is really easy. I personally don't care for IE8 so I co

Re: [jQuery] Help: Iterate through unknown number of elements, apply function

2010-02-23 Thread Nathan Klatt
On Tue, Feb 23, 2010 at 2:20 AM, xstaceyamayx wrote: > Anyway, I have 2 select boxes. I can populate SelectA with items from > a database, move the items from selectA to selectB and back again by > clicking "add" and "remove"... Change your HTML to look something like this:

Re: [jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread Peter Edwards
No problem, $(document).ready(function(){ }); and $(function(){ }); are the same - both will run whatever you have in them when the DOM is ready - the second is just a kind of shorthand for the (much easier to read) first. Docs: .ready() http://api.jquery.com/ready/ $(callback) http://api

Re: [jQuery] Re: Sortable list - even when list is changed

2010-02-23 Thread Peter Edwards
In your example, you have two calls to $('#elements').sortable(). The second one has the update event added, but the first (the one which creates the sortable) doesn't. If you add the update handler to the first call, it works OK. on 23/02/2010 08:26 rafald said:: Hi , please check this: http

Re: [jQuery] FOUND THE SOLUTION FOR ROUNDIES FOR IE8 !!!!!!

2010-02-22 Thread brian
SPECTACULAR NEWS! So, um ... don't keep us in suspense. On Sun, Feb 21, 2010 at 2:45 PM, Erik wrote: > For months I couldn't figure this out and I found the answer > > dd_roundies can now work with IE8!!! > > Erik >

Re: [jQuery] Re: Sortable list - even when list is changed

2010-02-22 Thread Nathan Klatt
On Mon, Feb 22, 2010 at 11:10 AM, rafald wrote: > ok...I see on you page it works...I double checked my code. > ... > but the problem is I need accordion as well. If you update the jsbin page to how you think it should be (i.e., add the accordion) I'd be happy to look into what's wrong. :) Go to

Re: re[jQuery] fresh tabs

2010-02-22 Thread whynotter
:-) thanks a lot. I've tried your script: http://www.deboramontoli.it/prova/mediacenter_prova3.shtml Now, when I choose a tab, each scroll is independent and keeps the correct moment. It hasn't stopped yet, but it's better than the last page. Uff, I'm going ahead, it's an hard work. Thanks aga

Re: re[jQuery] fresh tabs

2010-02-22 Thread Nathan Klatt
On Mon, Feb 22, 2010 at 2:20 AM, whynotter wrote: > http://www.deboramontoli.it/prova/mediacenter_prova2.shtml page 2 Check this out: http://jsbin.com/ixiyo/3/edit You will need to do some more data localization (I've done it for currentPosition but left totalVideos and maxMove) but I think it

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread tooone777
Ohh ok cool! Thank you Jonathan. I understand it better now :) -- View this message in context: http://old.nabble.com/tooone7-Can%27t-understand-this...-Want-to-make-a-image-appear-on-active-link-tp27686495s27240p27687083.html Sent from the jQuery General Discussion mailing list archive at Nabb

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread Jonathan Vanherpe (T & T nv)
$('selector')[index] returns the actual DOM element, while $('selector').eq(i) returns a jquery object (you can see a jquery object as some sort of a shell around the actual DOM node that the jquery functions work on). You can only use the jquery .css() function on jquery objects, and not dir

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread tooone777
Jonathan Vanherpe (T & T NV) wrote: > > tooone777 wrote: >> $("ul#nav_prim a")[i]... > > you need to use > > $("ul#nav_prim a").eq(i)... > or > $("ul#nav_prim a:eq("+i+")")... > > Jonathan > -- > Jonathan Vanherpe - Tallieu & Tallieu nv - jonat...@tnt.be > > I changed my code to the way

Re: [jQuery] tooone7 Can't understand this... Want to make a image appear on active link

2010-02-22 Thread Jonathan Vanherpe (T & T nv)
tooone777 wrote: $("ul#nav_prim a")[i]... you need to use $("ul#nav_prim a").eq(i)... or $("ul#nav_prim a:eq("+i+")")... Jonathan -- Jonathan Vanherpe - Tallieu & Tallieu nv - jonat...@tnt.be

Re: re[jQuery] fresh tabs

2010-02-22 Thread whynotter
Thanks for your replay but the problem is still happening :-( I've just tried this plugin and the tabs work well, but the scroll images have the same error. I don't know how to do. Thanks again stworthy wrote: > > Using http://jquery-easyui.wikidot.com jquery-easyui tabs plugin, the > tabs

Re: re[jQuery] fresh tabs

2010-02-22 Thread stworthy
Using http://jquery-easyui.wikidot.com jquery-easyui tabs plugin, the tabs panel will refresh automatically. Example: First Tab Second Tab Third Tab Output: http://old.nabble.com/file/p27685351/tabs.png whynotter wrote: > > Hi, > I ha

Re: re[jQuery] fresh tabs

2010-02-22 Thread whynotter
Hi Nathan, here two pages: http://www.deboramontoli.it/prova/mediacenter_prova1.shtml page 1 http://www.deboramontoli.it/prova/mediacenter_prova2.shtml page 2 The first one is without tabs and the script is correct, while in the second one there are two tabs and the script crashes. Have you a

Re: [jQuery] Sortable list - even when list is changed

2010-02-21 Thread Nathan Klatt
Hi Rafal, In what way does it not work? I transcribed your code into jsbin and it seems to be fine, though I don't have any roundbox styling being applied: http://jsbin.com/oququ3/edit Nathan

Re: re[jQuery] fresh tabs

2010-02-21 Thread Nathan Klatt
Perhaps you could point us to your page? Or set up an example at jsbin.com or something? Nathan

re[jQuery] fresh tabs

2010-02-21 Thread whynotter
Hi, I have a page with some scroll-img with jquery code. Each scroll-img are in different tabs, but the jquery code is the same for all tabs. If I have just a scroll, the code is ok, but when I put 4 scroll in different tabs, the code is not do well. How can I get the refresh of each tabs to avo

[jQuery] Re: jQuery thickbox/form plugin Chrome/Safari compatibility issue?

2010-02-20 Thread jfornear
I figured it out. All I had to do was move this part to the very end of the page. // prepare the form when the DOM is ready $(document).ready(function() { // bind form using ajaxForm $('#msg_form').ajaxForm({ // target identifies the element(s) to update with the server response target: '#sender'

Re: [jQuery] Scrolling Problem

2010-02-20 Thread Nathan Klatt
On Sat, Feb 20, 2010 at 9:13 AM, macgyver47 wrote: > div1 class="post" >    div class="title" > > div10 id="post" >   div class="title" > I am trying: clicking on div#title belonging to div1 scrolls to > div#title belonging to div2 and so on $().ready(function() { $(".title").click(functio

Re: [jQuery] Incorrect selection on mouse click in IE7+

2010-02-19 Thread Craig Heneveld
I have a fix for this issue on jQuery Autocomplete plugin 1.1. The file is attached. I commented out the return false on line 222 and added a putCursorAtEnd() function, so that after selecting an autoComplete item it moves the cursor to the end of the field (IE fix). http://old.nabble.com/file/

Re: [jQuery] Get "font-family" from iframe

2010-02-18 Thread Jonathan Vanherpe (T & T nv)
So you're basically writing a preview window or something for tinyMCE? I can't really think of a different way of doing this, unless you want to implement autosave and reload the content periodically with AJAX. Jonathan jordanrynard wrote: I have two documents: The parent, and the iframe. W

[jQuery] Re: jQuery AUTOCOMPLETE (by bassistance): submit on click

2010-02-18 Thread jjunior
That's brilliant! Thanks.

Re: [jQuery] Get "font-family" from iframe

2010-02-18 Thread jordanrynard
I have two documents: The parent, and the iframe. When activated, the parent document dynamically appends an instance of tinymce to itself. It retrieves the content for the editor (tinymce) from a selected element in the iframe. The style of text displayed in tinymce is identical to the style of

Re: [jQuery] Get "font-family" from iframe

2010-02-18 Thread jordanrynard
I have just downloaded the latest trunk nightly build for Firefox (Minefield), and this bug has been fixed in this version. So now I just have to wait for it to be released!! jordanrynard wrote: > > Wow, you're absolutely right -- I didn't even bother to try any other > browsers as it's just t

Re: [jQuery] Get "font-family" from iframe

2010-02-18 Thread Jonathan Vanherpe (T & T nv)
I'm not sure what exactly you're trying to do, maybe if you gave us an explanation of your overall goal we could help you better. There might be other ways to do what you're trying that might not even involve javascript and work everywhere. FWiW, this behaviour is in FF 3.6 too Jonathan jord

Re: [jQuery] Get "font-family" from iframe

2010-02-18 Thread jordanrynard
Wow, you're absolutely right -- I didn't even bother to try any other browsers as it's just the sort of thing I wouldn't think would be the result of a 'browser issue'. I tested this code in recent versions of IE, Chrome, Opera, and Safari, and it works perfectly. In Firefox 3.5.7 this appears to

Re: [jQuery] jQuery AUTOCOMPLETE (by bassistance): submit on click

2010-02-18 Thread Rob Lacey
I'd imagine you'd want something like this? $('input#query').autocomplete('yoururl',{ . your options . }).result(function(event, item, formatted) { $(this).parents().find('form:first').submit(); }); I hope this helps RobL jjunior wrote: I'm having

Re: [jQuery] Get "font-family" from iframe

2010-02-17 Thread Jonathan Vanherpe (T & T nv)
I didn't see you posted azn example page. When testing it, I found that both Opera and Chromium returned the correct thing but they format it differently. Opera alerts "Comic Sans MS [microsoft]". I actually like how Opera alerts the font you're actually using instead of the whole font stack, t

Re: [jQuery] Get "font-family" from iframe

2010-02-17 Thread Jonathan Vanherpe (T & T nv)
does every browser do that? jordanrynard wrote: I'm trying to retrieve the current font from an element that is within an iframe... unsuccessfully. From within the document itself I can retrieve the font just fine using the following: $(document).ready(function(){ var getFontFamily

Re: [jQuery] Response converted to entities after file upload

2010-02-17 Thread Randall Morgan
You may want to remove the $header method. PHP should send the content-type text/html header by default. Randy On Wed, Feb 17, 2010 at 11:41 AM, Randall Morgan wrote: > A couple of things to try. First, run phpinfo() and look through the > output for anything that could be filtering the output.

Re: [jQuery] Response converted to entities after file upload

2010-02-17 Thread Randall Morgan
A couple of things to try. First, run phpinfo() and look through the output for anything that could be filtering the output. Second, try using double quotes or echo or print() in place of die() and follow with exit. die() does not escape html (at least not on my servers) so I suspect that phpinfo

Re: [jQuery] Response converted to entities after file upload

2010-02-17 Thread Lay András
Hello! On Wed, Feb 17, 2010 at 5:56 PM, Randall Morgan wrote: > Are you using a Php framework? If so, does it do output filtering? If > not, can you show me your Php code? It's a simple PHP code, without any framework. The source code visible, you can simply copy, and check it on your server. N

Re: [jQuery] Response converted to entities after file upload

2010-02-17 Thread Randall Morgan
Are you using a Php framework? If so, does it do output filtering? If not, can you show me your Php code? Randy 2010/2/17 Lay András : > Hi! > > If i have a file upload input in my form, after submit the html codes > in the response data converted to their entities: > > http://bogex.hu/jquery_upl

Re: [jQuery] Re: show input field base on selected option

2010-02-17 Thread Jonathan Vanherpe (T & T nv)
maybe something like this? $(function(){ $('#type').change(function(){ var selected = $(this).children().filter(':selected'); if(selected.val()=='parttime'){ $('#numOfHours').show(); }else{ $('#numOfHours').hide(); } }); }); This is untes

Re: [jQuery] Show/hide div based on URL parameter

2010-02-17 Thread dikker
Thank you Andrei! Nice and simple, very well! Andrei Eftimie wrote: > > >$(function(){ >if (document.location.href.indexOf('showdiv=yes') > 0) > $("#display").show(); >}); > > > On Sat, Feb 13, 2010 at 5:37 PM, dikker wrote: >> >> Hi guys, >> >> Am a beginner

Re: [jQuery] jquery cycle plugin IE6 flicker (appears to reload elements repeatedly)

2010-02-16 Thread arcadian
I believe the problem that you are experiencing is because IE6 has issues when background images and opacity settings are adjusted. I was doing something similar with the jquery cycle plugin and the only way that I found to fix it was to place an IMG tag in the rotating item and place it behind t

Re: [jQuery] Multiple select box line wrap

2010-02-16 Thread Nathan Klatt
'Course it's a good idea! ;) On Tue, Feb 16, 2010 at 11:29 AM, Paul Collins wrote: > Thanks Nathan > > That's a good idea actually, guess that would work even if you had scripts > turned off... > > Will put that to use, thanks again.

Re: [jQuery] Multiple select box line wrap

2010-02-16 Thread Paul Collins
Thanks Nathan That's a good idea actually, guess that would work even if you had scripts turned off... Will put that to use, thanks again. On 16 February 2010 16:34, Nathan Klatt wrote: > On Tue, Feb 16, 2010 at 9:22 AM, Paul Collins > wrote: > > I'm have a fixed width on a multiple select b

Re: [jQuery] Multiple select box line wrap

2010-02-16 Thread Nathan Klatt
On Tue, Feb 16, 2010 at 9:22 AM, Paul Collins wrote: > I'm have a fixed width on a multiple select box. The problem is, some of the > options are longer than the width and by default the lines won't wrap. I'm > wondering if anyone has seen a way of making lines wrap Multiple selects are a HTML/CS

RE: [jQuery] Can I use external domain with jQuery media plugin ?

2010-02-16 Thread Scott Stewart
>From what I've seen the answer is no.. The workaround is to build a redirect page in whatever backend processing language you're using (ColdFusion, JSP, .Net, PHP), then call the redirect page in the href. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups

Re: [jQuery] Cycle plugin: Fill browser heigth and width with images

2010-02-16 Thread jpweeks
perfidus wrote: > > I just wonder where exactly in the cycle.plugin code should I place the > conditional: > if($(window).heigth() > $(img).heigth()) > { > //RESIZE THE PIC PROPORTIONALLY ETC... > } > To resize resize images which are being displayed with jquery cycle to full browser width: /

Re: [jQuery] Please I need some help on jquery on usercontrols, thanks...

2010-02-16 Thread Rey Bango
You should post this on http://forum.jquery.com since this group is no longer being actively monitored. We've switched to a dedicated forum for support. Rey jQuery Team On Tue, Feb 16, 2010 at 6:23 AM, ysfkel wrote: > > I am trying to get jquery to work on a form I have on a usercontrol > . My w

Re: [jQuery] How to select every checkbox on my page inside a fieldset

2010-02-15 Thread ReynierPM
On 2/15/2010 8:54 AM, Peter Edwards wrote: 2. a checkbox which uses a descendant selector $('#fieldset1 input:checkbox') to explicitly target a given fieldset by ID, and Thx a lot Peter, you and jQuery rocks. It works perfectly for descendant selector #fieldset1 ;) -- Cheers ReynierPM

Re: [jQuery] How to select every checkbox on my page inside a fieldset

2010-02-15 Thread Peter Edwards
You can use selectors to do this quite easily - I've posted an example at: http://jsbin.com/uwaxo/ This has: 1. a checkbox which will select/deselect all others in the page (no matter whether they are in different forms/fieldsets, 2. a checkbox which uses a descendant selector $('#fieldset1 in

[jQuery] Re: Jquery form plugin can't find resolution

2010-02-15 Thread Marty Jones
Instead of doing $(this).ajaxSubmit(options); try $('#formId').ajaxSubmit(options); where #formId is the id of the form you are submitting. On Feb 14, 8:58 am, NHARRY wrote: > I have a form that is loaded using .load it is then posted using the > jquery form plugin. But it won't post see code

Re: [jQuery] JQuery + TableSorter + TableSorterPager + (Container != Div) = undefined error

2010-02-15 Thread rasi
I don't know if this will solve the problem to you, but it did to me. I just changed my script from something like: $(document).ready(function() { $("table") .tablesorter({widthFixed: true, widgets: ['zebra']}) .tablesorterPager({container: $("#pager")}); }); to $(document).rea

Re: [jQuery] Show/hide div based on URL parameter

2010-02-14 Thread Andrei Eftimie
$(function(){ if (document.location.href.indexOf('showdiv=yes') > 0) $("#display").show(); }); On Sat, Feb 13, 2010 at 5:37 PM, dikker wrote: > > Hi guys, > > Am a beginner with Jquery and what i want is as follows. > I have a div that should be hidden on default, b

Re: [jQuery] Site

2010-02-13 Thread Atkinson, Sarah
Great just what we need Spammers. Humm I have been getting tired of eating nothing but chicken. Maybe Spam is just what I need Sent from my iPhone On Feb 13, 2010, at 10:49 AM, "sourabh sharma" mailto:sourabh47mca...@gmail.com>> wrote: Hi Guys, I have create a one website where user can purch

Re: [jQuery] Site

2010-02-13 Thread sourabh sharma
sorry it is www.avideogame.com On Sun, Feb 14, 2010 at 12:56 AM, John Corry wrote: > "Server not found > > Firefox can't find the server at .avideogame.com. > * Check the address for typing errors such as > ww.example.com instead of > www.example.com > > * If

Re: [jQuery] Site

2010-02-13 Thread John Corry
"Server not found Firefox can't find the server at .avideogame.com. * Check the address for typing errors such as ww.example.com instead of www.example.com * If you are unable to load any pages, check your computer's network connection. * If yo

Re[jQuery] moving an item from a scrollable list

2010-02-13 Thread clin-TON
Hi I was just wondering if anyone could help point me in the right direction. Basically what i have is a scrollable container similar to the one on this site: http://maaki.com/thomas/SmoothDivScroll/. What i would ideally like to do is have one item (a Logo) in the scroller which scrolls out once

Re: [jQuery] Tivoli resource needed for 1 year project in Austin, TX

2010-02-12 Thread Camilo Aguilar
hey please ! stop the spam On Tue, Feb 9, 2010 at 3:11 PM, Eswar Rao wrote: > Hi partner, > > pleases send resume to easw...@vasysgroup.com > > > *Requirement:* > > > > Tivoli Development Services has a requirement for system > administrator/security compliance administrator to perform complianc

Re: [jQuery] JQuery tablesorter problem

2010-02-12 Thread ramesh dhage
On 2/4/10, Nagaraju wrote: > > I am facing problem with jquery.tablesorter.js > > It's working fine if I have more than column in sorting/header list. > > But if I have one column in sorting/header showing following error. > > o is undefined > o.order = o.count = s[1]; (jquery.tablesorter.js at

Re: [jQuery] Re: ajaxsubmit dosn´t send the respons e to the defined target

2010-02-12 Thread Jonathan Vanherpe (T & T nv)
And more importantly, does it have the same case? Marty Jones wrote: I know this may sound silly but do you have a div element with a id of 'Preview'? On Feb 12, 5:43 am, Piet wrote: Dear all, I´m using ajaxSubmit to send a form (incl. fileuploads) to my server. Everthings works well but the

Re: [jQuery] jquery.validate in chrome field loses focus on unhighlight

2010-02-11 Thread Nathan Klatt
On Thu, Feb 11, 2010 at 2:36 PM, jrallan wrote: > Any suggestions? You cannot add $(element).focus() to the unhighlight > function because it runs on blur() so can never escape the field. Have you tried returning false from a blur handler or something along those lines? Good luck. Nathan

Re: [jQuery] jquery ui tabs - screen jumps to top when clicked

2010-02-11 Thread Kai-Bone
I was having this problem with jquery-ui-1.8rc1.custom.min but found a quickfix solution and the cause of the problem, but I'm not quite sure what the real fix is. The problem: The fx: calls inside the .tabs call: $().tabs({ fx: { opacity: 'toggle' } }); The solution: Remove all fx: calls so you

Re: [jQuery] Problem with chronological order : jQuery code runs too late

2010-02-11 Thread Leonardo K
Ajax is asynchronous. The alert in the ajax post will only be executed when the ajax request is completed. This can happen after the other part of your code run. You can use the async option and set to false; http://api.jquery.com/jQuery.ajax/ On Thu, Feb 11, 2010 at 10:35, Julien wrote: > Hi,

Re: [jQuery] Superfish text color with parent - Really need help, thanks

2010-02-10 Thread Nathan Klatt
On Tue, Feb 9, 2010 at 9:15 PM, Gary Herbstman wrote: > So ".sf-menu li.sfHover > a" > > Applies that style to any A element that is a child of li.sfHover that > is a descendent of sf-menu. Right. > What in superfish is happening? Is the code setting the attribute > sfHover to the item when you

Re: [jQuery] Popup

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 11:56 AM, dtirer wrote: > I'm using the following JQuery Popup code to make smooth popups: > (http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth- > popup-using-jquery/) > > I was wondering how I can use use this to load external pages into the > popup? This

Re: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 8:56 AM, Jonathan Vanherpe (T & T nv) wrote: > How about you just look at the source code? > > http://www.altsoftware.com/alt_news_rotator.js > > There's comments and everything FTW!!!

Re: [jQuery] Replace URL parameters

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 5:48 AM, Jakub wrote: >    function Dummy(){ >      adress = window.location.href; >      regex = "/^&(.*?)?$/"; >      adress = adress.replace(regex,''); >      alert(adress); >    } One problem is you don't want to put quotes around the regex. Nathan

Re: [jQuery] Replace URL parameters

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 5:48 AM, Jakub wrote: > I want to replace all parameters, but first. I don't know what is > wrong .. :-( Could you give an example of what you want to happen? I.e., an input string and what you want it to look like after the replace? Nathan

Re: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Jonathan Vanherpe (T & T nv)
hno wrote: hno wrote: HI I have seen this pattern in http://www.altsoftware.com/index.php . there are news menu in the left side . Please visit this site . The news will be change with a really beautiful pattern in every 5 seconds I think it has been written with jquery but I don't know how c

Re: [jQuery] how to make this really beautifull pattern

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 12:27 AM, hno wrote: > I have seen this pattern in http://www.altsoftware.com/index.php . > there are news menu in the left side . Please visit this site . The > news will be change with a really beautiful pattern in every 5 > seconds Just animate the position and opacity

RE: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Rick Faircloth
I would start by having a look at the functionality of this plug-in: http://malsup.com/jquery/cycle/ Hope this helps... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of hno Sent: Wednesday, February 10, 2010 9:46 AM To: jQuery (En

Re: [jQuery] Plugin to include HTML in a window

2010-02-09 Thread stworthy
Maybe the window plugin of jquery-easyui can fit your needs. http://jquery-easyui.wikidot.com/tutorial:win3 ReynierPM-3 wrote: > > Hi every: > I want to show a HTML form in a window that I can move or close or > minimize (I don't know what's the correct definition here). Exists any > plugin f

RE: [jQuery] Superfish text color with parent - Really need help, thanks

2010-02-09 Thread Gary Herbstman
om: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Nathan Klatt Sent: Tuesday, February 09, 2010 8:02 PM To: jquery-en@googlegroups.com Subject: Re: [jQuery] Superfish text color with parent - Really need help, thanks On Tue, Feb 9, 2010 at 5:45 PM, Gary Herbstman wrote: >

Re: [jQuery] Superfish text color with parent - Really need help, thanks

2010-02-09 Thread Nathan Klatt
On Tue, Feb 9, 2010 at 5:45 PM, Gary Herbstman wrote: > Cool, That did the trick, THANKS! You're welcome. > I would love to understand this better. What exactly is this doing? Well, what's happening is the cascade. Where there are style clashes, whatever rule is the most specific/has the highes

RE: [jQuery] Superfish text color with parent - Really need help, thanks

2010-02-09 Thread Gary Herbstman
Subject: Re: [jQuery] Superfish text color with parent - Really need help, thanks On Tue, Feb 9, 2010 at 2:23 PM, garyh wrote: > I am new to superfish and generally have the menu working except for > one problem. When navigating to a sub menu the parent is properly > keeping it

Re: [jQuery] Tivoli resource needed for 1 year project in Austin, TX

2010-02-09 Thread Randell
Please stop spamming this group with off-topic posts. On Wed, Feb 10, 2010 at 4:11 AM, Eswar Rao wrote: > Hi partner, > > pleases send resume to easw...@vasysgroup.com > > > *Requirement:* > > > > Tivoli Development Services has a requirement for system > administrator/security compliance admini

Re: [jQuery] Superfish text color with parent - Really need help, thanks

2010-02-09 Thread Nathan Klatt
On Tue, Feb 9, 2010 at 2:23 PM, garyh wrote: > I am new to superfish and generally have the menu working except for > one problem. When navigating to a sub menu the parent is properly > keeping it's background color but the text color is reverting to its > normal color. There is a link to the site

Re: [jQuery] Need Java & Oracle programers /Ohio

2010-02-09 Thread Marty Vance
Would you mind not spamming this list? On Tue, Feb 9, 2010 at 10:17 AM, Eswar Rao wrote: > Hi Partner, > > > Please let me know if you have any candidate suitable for these > requirements. Once you identify the candidates I will send you the > attachments to be filled in by them. > > > > please s

Re: [jQuery] [Tooltip Plugin] Problem with tooltip and live event

2010-02-09 Thread vengiss
Thanks for the help It worked :) Renatho wrote: > > Hi Vengiss, > > $('#preview_'+id_mercancia).tooltip({ > tip: '#img_'+id_mercancia, > effect: 'fade', > }); > > The error is the last comma. > > Correct: > $('#preview_'+id_mercancia).tooltip({ > tip: '#img_'+id_mercancia, >

[jQuery] Re: JQuery tablesorter problem

2010-02-09 Thread Nagaraju
Hi Aquaone I am using Version 2.0.3 On Feb 4, 11:20 pm, aquaone wrote: > Please provide the code you're using to invoke tablesorter. It's likely a > syntax error. > > On Thu, Feb 4, 2010 at 05:36, Nagaraju wrote: > > I am facing problem with jquery.tablesorter.js > > > It's working fine if I ha

  1   2   3   4   5   6   7   8   9   10   >