[jQuery] Jquery Ajax vs base Ajax approach

2008-10-17 Thread bookme
Hi, Jquery is gr8 I agreed. But when I am working on a registration page then this jquery is not providing me seamless effect. There is two select box - drop down 1 State 2 City when ever a user select a state correspondingly city comes in city drop down. I used two apprach for this 1 Ajax- J

[jQuery] Re: Remove JS if statement from other script

2008-10-17 Thread closure octopus
Of course it is. You'll have to follow the logic of the script and edit it accordingly, that's really all that can be suggested. Add a condition to the if that detects the pages you want to run/not run it on. like, if it's currently if(cow>37){page.screwup();} change it to if (cow>37||docume

[jQuery] IE6 only 'partially' updating html loaded via ajax

2008-10-17 Thread jsw_nz
I wanted to ask if anybody has a clue why a function 'updatePageLinks().. WORKS on all browsers on a standard page load, BUT DOES NOT WORK (in IE6 only) after an ajax success call here is the code (simplified to illustrate...): initial page load: ** $(document).ready(

[jQuery] Re: event.preventDefault() seems to fail

2008-10-17 Thread Hullah
Hmm...it looks like triggerHandler() is what I want. Because my goal is to not submit the form, which was the reason I was calling event.preventDefault() inside the click event. I just thought it was confusing because in the click even of the button I was trying to prevent the default action of

[jQuery] Re: History Plugin

2008-10-17 Thread Rey Bango
You have a couple of options available: http://stilbuero.de/jquery/history/ http://plugins.jquery.com/project/jHistory One suggestion to help you out in the future is to be sure to check out the plugin repo. It has a ton of extensions for many different use cases. http://plugins.jquery.com/

[jQuery] Remove JS if statement from other script

2008-10-17 Thread hubbs
How possible is it to remove ONLY part of a script, specifically an if statement from another script? We have a script that is in the header of our document, and it screws up a few of our pages, so I don't want to delete it, since it is needed for some pages, but for specific pages, I would like

[jQuery] few improvements for autocomplete widget

2008-10-17 Thread alex bodnaru
hello friends, i took autocomplete to make some ajax field choices from a database poered site. it works great, but i had the pleasure to add a small contribution too. 1. the ability to send additional fields data in the ajax call could of course be achieved with extraParams option. but i needed

[jQuery] JQuery $ function

2008-10-17 Thread blasto333
How does this work...(This actually does what I want it to, but I am amazed that JQuery can figure out how to select from an array) function get_selected_rows() { var selected_rows = new Array(); $("#sortable_table tbody :checkbox:checked").each(function() {

[jQuery] Re: event.preventDefault() seems to fail

2008-10-17 Thread Choan Gálvez
On Oct 17, 2008, at 11:22 PM, Hullah wrote: I would think preventDefault() is the right way to do it too. So, given that this isn't working like I would have thought it should, did I code this incorrectly? Or is this something more serious like a bug? While I don't fully understand what you

[jQuery] Re: jQuery Form Plugin

2008-10-17 Thread Mike Alsup
On Oct 3, 8:17 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Don't you think we can have this feature built-in ? > > Something like $('form').ajaxForm('cancel') > > I don't know exactly where I can post this request > > Hi Andre, > > This is the right place to post your request.  I've added it to

[jQuery] Re: Question: Using Autocomplete to pass the fields name to query URL

2008-10-17 Thread The Hamburgler
Excellent, Both solutions worked great! Thanks a lot for your help On Oct 16, 3:26 pm, adexcube <[EMAIL PROTECTED]> wrote: > Hi, have you tried something like this? > > $("input:text").focus( function() { alert($ > (this).attr("name")); } ).autocomplete("server.php", { >                        e

[jQuery] Re: Display a div if and id is found

2008-10-17 Thread Klaus Hartl
Here's another trick to accomplish it: $('#first, #second').eq(1).show(); --Klaus On 18 Okt., 00:00, Ryura <[EMAIL PROTECTED]> wrote: > Actually, you don't need the > 0 part. 0 evaluates to false anyway, so > just if($("#whatev").length) works fine > > On Oct 17, 4:09 pm, "Mauricio \(Maujor\)

[jQuery] autocomplete - custom pagination + jquery UI autocomplete charade

2008-10-17 Thread wahyudinata
caveat: this is actually my second post, the first one I forgot to put autocomplete at the title that might result in the author not being able to find it. Hi, I am trying to add a pagination capability to my autocomplete I am having trouble when I click the pagination link that I dynamically ad

[jQuery] Re: Display a div if and id is found

2008-10-17 Thread Ryura
Actually, you don't need the > 0 part. 0 evaluates to false anyway, so just if($("#whatev").length) works fine On Oct 17, 4:09 pm, "Mauricio \(Maujor\) Samy Silva" <[EMAIL PROTECTED]> wrote: > Another approach: > if ( $('#FirstDiv').length > 0 ) { $('#SecondDiv').show(); } > -

[jQuery] Re: Display a div if and id is found

2008-10-17 Thread Taylor
Thank you. They both worked great. On Oct 17, 3:09 pm, "Mauricio \(Maujor\) Samy Silva" <[EMAIL PROTECTED]> wrote: > Another approach: > if ( $('#FirstDiv').length > 0 ) { $('#SecondDiv').show(); } > -- > De: "MorningZ" <[EM

[jQuery] Re: dot separated id

2008-10-17 Thread ricardobeat
Hmm, I didn't know CSS allowed escaping characters. This works on firefox: #tom.cat { selects id="tom" class="cat" } #tom\.cat { selects id="tom.cat" } Anyway, i find that confusing. Add the fact that things like ▒☃╋☎★☄☂ are valid IDs/class names, put some dots in the middle, and then you've got

[jQuery] Re: dynamically generated form

2008-10-17 Thread TimW66
You could always set the ID of the cloned row: $rowToInsert = $parentRow.clone(true); newId = $parentRow.attr('id') + '_cloned'; $rowtoInsert.attr('id', newId); On Oct 16, 5:51 pm, Felix <[EMAIL PROTECTED]> wrote: > I have a form that allows user to add and delete rows as they desire, > I tried

[jQuery] Re: event.preventDefault() seems to fail

2008-10-17 Thread Hullah
I would think preventDefault() is the right way to do it too. So, given that this isn't working like I would have thought it should, did I code this incorrectly? Or is this something more serious like a bug? On Oct 17, 4:36 pm, Choan Gálvez <[EMAIL PROTECTED]> wrote: > On Oct 17, 2008, at 7:37 P

[jQuery] Re: Autocomplete result sorting help

2008-10-17 Thread Alex
I've got some php available, but I wasn't really planning on fiddling with it. There's just a cgimail that is being submitted to. Any other ideas? On Oct 16, 3:54 pm, MorningZ <[EMAIL PROTECTED]> wrote: > I don't know what you use for the server-side code, but it looks like > that would be a lot

[jQuery] Re: event.preventDefault() seems to fail

2008-10-17 Thread Choan Gálvez
On Oct 17, 2008, at 7:37 PM, ricardobeat wrote: It should work... but in jQuery 'return false' is the standard cross- browser way of preventing the default action anyway, Not exactly. - `preventDefault()` **is** the cross-browser way of preventing the default action. - `return false` pr

[jQuery] History Plugin

2008-10-17 Thread Pedram
Dear Folks , I need to make my webpages bookMarkable and do remember some history . does any one has a link for us .. thanks .

[jQuery] Re: dot separated id

2008-10-17 Thread Jeffrey Kretz
Ah, I actually confused Micah's and Ricardo's answers. Micah was claiming dots are illegal in IDs, referencing the w3 spec, which Ricardo then pointed out as faulty. Personally I don't use anything but \w in IDs, but I felt it was important to point out using a dot in the ID does not make illega

[jQuery] Re: Display a div if and id is found

2008-10-17 Thread Mauricio (Maujor) Samy Silva
Another approach: if ( $('#FirstDiv').length > 0 ) { $('#SecondDiv').show(); } -- De: "MorningZ" <[EMAIL PROTECTED]> if (document.getElementById("FirstDiv")) { $("#SecondDiv").hide(); } ---

[jQuery] Re: Adding a double click event to a form element

2008-10-17 Thread aimhier
You can do this- Set the field to readOnly by setting value of readOnly=true Then, bind action of $("#field").dbclick(function(){ set readOnly to false }); and then change it. See if your purpose is met.

[jQuery] Re: dot separated id

2008-10-17 Thread Dave Methvin
> $("tom.cat")  selects $("#tom.cat") selects > $("tom\\.cat") selects $("#tom\\.cat") selects

[jQuery] Re: dot separated id

2008-10-17 Thread Dave Methvin
> It's not useful to claim that the specs are faulty.  Until they change, dots > in IDs are legal and valid. Re-read Ricardo's answer. You are free to use dots in your ids if you want. He is saying that by permitting a dot in an id string, the specs allow a confusing ambiguity that has to be reso

[jQuery] Re: dot separated id

2008-10-17 Thread chris thatcher
I agree that a spec is a spec. The problem is rigidly adhering to it will break to rest of the specs that work along side the html specs to produce the intended result in the presentation layer. I too had to change the way I assigned id's to accommodate css and js that used css selectors. If any

[jQuery] Suspending Requests in JSUGGEST

2008-10-17 Thread aimhier
I am using JSuggest for autocompleting fields. Now if I go on typing the characters in the field, for every character that i type a request is made. Thus, a new request is made before the old one is serviced. Can anything be done such that all the old requests are suspended and only the new reques

[jQuery] Re: dot separated id

2008-10-17 Thread Jeffrey Kretz
It's not useful to claim that the specs are faulty. Until they change, dots in IDs are legal and valid. JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ricardobeat Sent: Friday, October 17, 2008 10:21 AM To: jQuery (English) Subject: [jQuery

[jQuery] Adding a double click event to a form element

2008-10-17 Thread Devin
Hi, I'm new at this and I wasn't able to find what I was looking for by searching. On my form there is a few fields that will be populated when the page is loaded. These are fields that would rarely - if ever - be changed. So I want the user to have to double click the field to enable it. Thus

[jQuery] Re: how to detect current toggle setting?

2008-10-17 Thread Jay
> I didn't mean to be rude, it's just a tip. > > It is there on the docs page under 'Visibility Filters:', right after > the left sidebar content ends. > > Invisible elements are the ones that have display:none or inputs of > type 'hidden'. > > As Josh pointed out, you can use is() to check an exi

[jQuery] Re: Display a div if and id is found

2008-10-17 Thread MorningZ
if (document.getElementById("FirstDiv")) { $("#SecondDiv").hide(); } On Oct 17, 1:47 pm, Taylor <[EMAIL PROTECTED]> wrote: > Is there a simple way with jQuery to find a div with a specific id, > and display a different div if the id is found?  I know this may not > be the best way to accomplish

[jQuery] Re: how to detect current toggle setting?

2008-10-17 Thread Jay
> I did some testing and it works for both > toggle() and slideToggle(); when the element slides up it ends with > display:none too. Make sure you are referencing the right object, a > child of a hidden element will be considered ':visible' even if it's > actually hidden by the parent. I bet it'

[jQuery] Display a div if and id is found

2008-10-17 Thread Taylor
Is there a simple way with jQuery to find a div with a specific id, and display a different div if the id is found? I know this may not be the best way to accomplish something, but I am trying to avoid rewriting a shopping cart plugin.

[jQuery] JQuerry Select Box problem

2008-10-17 Thread Robert Djurasaj
Hi, http://i34.tinypic.com/n3rsso.jpg I'm trying to do this using jQuery (in RoR ) and i need some help... So let me explain it in a few steps. Lets say Selection Box 1 is list of Continets. I want to be able to fill Selection Box 2 (list of all countries on selected continent). After that is s

[jQuery] Re: event.preventDefault() seems to fail

2008-10-17 Thread ricardobeat
It should work... but in jQuery 'return false' is the standard cross- browser way of preventing the default action anyway, so I'd recommend sticking to that. - ricardo On Oct 16, 11:16 pm, Hullah <[EMAIL PROTECTED]> wrote: > I have a page with input textboxes and input buttons on it.  All are >

[jQuery] Re: how to detect current toggle setting?

2008-10-17 Thread ricardobeat
Hi, I didn't mean to be rude, it's just a tip. It is there on the docs page under 'Visibility Filters:', right after the left sidebar content ends. Invisible elements are the ones that have display:none or inputs of type 'hidden'. As Josh pointed out, you can use is() to check an existing obje

[jQuery] Re: dot separated id

2008-10-17 Thread ricardobeat
Yeah, that's a fault in the specs. XHTML specs also allow dots in IDs: 'only strings matching the pattern [A-Za-z][A-Za-z0-9:_.-]* should be used.' - http://www.w3.org/TR/xhtml1/#C_8 But that causes problems for CSS too: #tom.cat { which one are you referring to? } - ricardo On Oct 16, 7:

[jQuery] Way to use a Multi-Line Example Prompt in a Single-line Text Input Field

2008-10-17 Thread Wayne
I'm trying to prompt for input within the field using the Example plugin (http://plugins.jquery.com/project/example). The idea is that I'm styling my input field to be unsually large when the user types (it will be no more than a 4 or 5 digits), so I can use closer to normal size text as the promp

[jQuery] Re: How to stop change event from firing

2008-10-17 Thread ricardobeat
You can do $("#field-state").unbind('change'); when it starts being edited and bind the function again when it's done, or you can put everything in the function inside an IF statement which depends on the edit mode. - ricardo On Oct 17, 12:41 pm, newkid85 <[EMAIL PROTECTED]> wrote: > I have a fo

[jQuery] Re: Loading Mask

2008-10-17 Thread Ashley
If I understand you, this should do the trick - http://www.malsup.com/jquery/block/#element

[jQuery] Animate with IE6 artifacts

2008-10-17 Thread Sigurd
Hi everyone, I'm having a problem with IE6 and animate({opacity: "hide", height: "hide"},300); In all browsers including IE6 the feature works, however with IE6 it produces artifacts as if it is jumping up and down before it completes the animation. I have simplified my code into one html file t

[jQuery] Re: jQuery Cycle pagerAnchorBuilder with Div Tags

2008-10-17 Thread Zach Dunn
Mike, Thanks, I figured out my issue, I just had to add a closing bracket. $('#headline-rotation').before('').cycle({ fx: 'fade', speed: 'slow', timeout: 4000, pager: '#nav', pagerAnchorBuilder: function(idx, slide

[jQuery] Re: Problems parsing XML with jQuery

2008-10-17 Thread Richard D. Worth
jQuery relies on the browser to parse an (X)HTML string you give it, so it's going to be treated as a browsers treats it, as html. You'll have mixed success in this area, feeding xml. It's not an xml parser. - Richard On Fri, Oct 17, 2008 at 9:34 AM, Robert Koberg <[EMAIL PROTECTED]> wrote: > >

[jQuery] Re: Problems parsing XML with jQuery

2008-10-17 Thread Gissur Þórhallsson
Thank you very much, that was the issue exactly, and now it works perfectly. Kind regards and thanks, gzur On Fri, Oct 17, 2008 at 4:32 PM, Richard D. Worth <[EMAIL PROTECTED]> wrote: > See > > > http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_charact

[jQuery] Re: Rounded Corners and IE 6

2008-10-17 Thread caruso_g
I think I will adopt k3liutZu suggesion… :P @Isaak The theme is is intended for people that just want to change colors directly from Rapidweaver (it is a Rapidweaver theme) with no tech skill. @all The problem seems that no corner plugin is able to keep paddings and margins, and above all, the o

[jQuery] Re: Problems parsing XML with jQuery

2008-10-17 Thread Robert Koberg
Hi, Do jQuery functions actually work over an XML DOM or just an HTML DOM? best, -Rob On Oct 17, 2008, at 12:32 PM, Richard D. Worth wrote: See http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F - Richard On Fri, Oct 17, 20

[jQuery] Re: Problems parsing XML with jQuery

2008-10-17 Thread Richard D. Worth
See http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F - Richard On Fri, Oct 17, 2008 at 8:28 AM, Gissur Þórhallsson <[EMAIL PROTECTED]>wrote: > I'm trying to parse this little XML document here: > http://pastebin.com/m5f0e4300 wi

[jQuery] Safari/WebKit bug with maxWidth?

2008-10-17 Thread Dan G. Switzer, II
This doesn't look like a jQuery issue per-se, but webkit doesn't seem to return a value for: $el.css("max-width") or $el[0].style.maxWidth IE and FF both return the correct value, but Webkit returns "none". Is there a way in Webkit to get the maxWidth of an element? -Dan

[jQuery] treeview

2008-10-17 Thread [EMAIL PROTECTED]
Hi, I love this plug in, it is great. However, I was wondering if it was possible to add a close/hide submenu/files function to the submenu/ files when clicked on. What I'm trying to get at is when you click on an expanded submenu item, the parent menu would close so that the viewer does not have

[jQuery] How to stop change event from firing

2008-10-17 Thread newkid85
I have a form with three dependent location select fields and a text field which lets a user add a new city if it is missing from the dropdown. The following function works fine when I create a new form. It puts the fields in sync to start with and keeps them that way when the user makes their sel

[jQuery] Problems parsing XML with jQuery

2008-10-17 Thread Gissur Þórhallsson
I'm trying to parse this little XML document here: http://pastebin.com/m5f0e4300 with this code: function(response) { console.log(response.responseText) console.log(response.responseXML) try { console.log("Try and find nafn") console.log($j(response.responseXML).find("nafn").text()) console.log($j(

[jQuery] Re: Newbie question: how to reference an element via XML attribute.

2008-10-17 Thread JFQueralt
Hi, Mike. Thanks for the hint. Will try it tonite at home :-) Jean On Oct 16, 2:28 am, Mike Alsup <[EMAIL PROTECTED]> wrote: > > Second, I´ve found a solution using the DOM while it works is far from > > being jQuery pure code: > > >         //Iterate among all retrieved items. > >         $('

[jQuery] Re: JCarousel - How to scoll a fixed width of pixels?

2008-10-17 Thread Ariel Flesler
You can try SerialScroll: http://flesler.blogspot.com/2008/02/jqueryserialscroll.html It handles situations where elements have different dimensions and can be even unaligned (x and/or y). -- Ariel Flesler http://flesler.blogspot.com On Oct 17, 6:53 am, greencube <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Rounded Corners and IE 6

2008-10-17 Thread Isaak Malik
Personally, I find it a big waste to use JavaScript for this purpose. Why not simply create rounded corner 10x10 (or whatever) images and use them? On Fri, Oct 17, 2008 at 2:59 PM, k3liutZu <[EMAIL PROTECTED]> wrote: > > Just convince everyone that it is ok to send IE6 a squared corner > look ;)

[jQuery] Re: how to use index instead of ID (adding class to A element in UL LI list)

2008-10-17 Thread MorningZ
Can you post some of the HTML of "mainSubNav"? On Oct 17, 8:56 am, Tomas25 <[EMAIL PROTECTED]> wrote: > Hi everyone, > > i have this code: > > $(document).ready(function() { >    var element = $(".mainSubNav ul li a"); >    element.mouseover(function() { >       idLi = $(this).attr("id"); >    

[jQuery] Re: Multiple JQuery Bottleneck

2008-10-17 Thread John Resig
Kind of hard to debug what you're talking about without seeing it. Do you have an example? --John On Fri, Oct 17, 2008 at 10:17 AM, dvdavid2001 <[EMAIL PROTECTED]> wrote: > > > Hi guys, > > This is my 1st time asking the questions hence please bear with me if I did > it wrongly or etc. > > I h

[jQuery] Re: jQuery Cycle pagerAnchorBuilder with Div Tags

2008-10-17 Thread Mike Alsup
> Thanks Mike! > > It's currently on the development page atwww.imagine.yidio.com. I've > put some placeholders in for the time being. > Zach, it really looks to me like this should work: $('#headline-rotation').before('').cycle({ speed: 'slow', timeout: 4000, pager: '#nav', pa

[jQuery] Re: Jquery tab

2008-10-17 Thread Klaus Hartl
On 17 Okt., 15:37, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Works amazing. I adjusted the ui.tabs.js file so that i targets to css > stuff of my own site. Well, it's usually not the best idea to adjust the file itself (maintenance, e.g. updating gets more work), especially if everything y

[jQuery] issue with datepicker setDate

2008-10-17 Thread [EMAIL PROTECTED]
Hi, The following set my two input range to today's date: $("#fStartDate, #fEndDate").datepicker("setDate", "null", "null"); However if I try to set the range to the last week, by setting the first input to -1w and the next one to today's date : $("#fStartDate, #fEndDate").datepicker("setDate

[jQuery] Using jquery with thickbox causes I.E. 6 to lose scrollbar

2008-10-17 Thread livewire9174
Hi, Has anybody tried this yet? When i use the latest jquery + thickbox, when i display a modal window, i.e. 6.0 loses its scrollbar, to the content appears to move, does anybody have a solution?

[jQuery] Multiple JQuery Bottleneck

2008-10-17 Thread dvdavid2001
Hi guys, This is my 1st time asking the questions hence please bear with me if I did it wrongly or etc. I have a J2EE application that used jQuery quite a lot. There is one page that called jQuery 4 times upon loading. Out of these 4 calls, there is one jQuery call that took around 20-30 second

[jQuery] how to use index instead of ID (adding class to A element in UL LI list)

2008-10-17 Thread Tomas25
Hi everyone, i have this code: $(document).ready(function() { var element = $(".mainSubNav ul li a"); element.mouseover(function() { idLi = $(this).attr("id"); $(".mainSubNav ul li a#" + (parseInt(idLi) - 1)).addClass("bgNone2"); }).mouseout(function() { $(".mainSubNav

[jQuery] Re: dialog box position

2008-10-17 Thread Zemian Deng
Can some one help? Thanks, -Z On Tue, Oct 14, 2008 at 3:34 PM, Zemian Deng <[EMAIL PROTECTED]>wrote: > Hello list, > I am trying to show a dialog box when user hover a link. The following > works on firefox only. Is there better way to do it via jQuery(or browser > independent) way? > > My > link

[jQuery] draggable plugin problem

2008-10-17 Thread weidc
Hi, well i used and still use the draggable plugin in a script. it worked fine 'till they changed the site a bit. after i changed my script firebug says: $[namespace][name] is not a constructor [Break on this error] return this.each(function(){var instance...==undefined){return this._getData(key

[jQuery] Re: JCarousel - How to scoll a fixed width of pixels?

2008-10-17 Thread Eric Shepherd
I seem to remember this being addressed in the jCarousel blog comments and that it is not possible to have variable size objects. On Oct 17, 5:53 am, greencube <[EMAIL PROTECTED]> wrote: > I'm testing JCarousel for a project and trying to figure out if it is > possible to scroll a fixed with of p

[jQuery] Re: disappearing content with IE7 (slideToggle vs toggle)

2008-10-17 Thread AstroIvan
.animate({ height: "toggle", opacity:"toggle" }, 1500);

[jQuery] Resizing Images in jQuery

2008-10-17 Thread Adam
I am trying to display images on the page via ajax, but they are slow loading. What I'd like to do is show a 'loading' image while the image is loading, and then load the image. The problem is, all of the images are different sizes, and so I can't set the 'loading' image to the exact size of wha

[jQuery] Re: Jquery tab

2008-10-17 Thread [EMAIL PROTECTED]
Works amazing. I adjusted the ui.tabs.js file so that i targets to css stuff of my own site. Last question, i have another menu where i want to add this, but it uses different css styles hoe do i make this si that he uses other styles for that part? Erwin On 16 okt, 15:59, Klaus Hartl <[EMAIL P

[jQuery] Re: disappearing content with IE7 (slideToggle vs toggle)

2008-10-17 Thread AstroIvan
ok found a solution but not sure if it's the cause. when i add opacity to the animate function i posted above, the ie7 block does not disappear. maybe slideToggle removes opacity after it is finished? not sure. putting this info here so others might take advantage of it.

[jQuery] Re: disappearing content with IE7 (slideToggle vs toggle)

2008-10-17 Thread AstroIvan
.animate({ height: "toggle" }, 1500); also triggers the disappearing content block. I'll try to get a working html sample later that doesn't use the server side framework.

[jQuery] disappearing content with IE7 (slideToggle vs toggle)

2008-10-17 Thread AstroIvan
Not sure what it's doing wrong, but slideToggle appears to have a negative affect on IE7 blocks. http://www.nabble.com/issue-with-slideToggle-td9984489s27240.html I was able to see this with Jquery 1.2.3. Does anyone know if it was fixed for 1.2.6? toggle successfully re-shows a div for all br

[jQuery] Re: Rounded Corners and IE 6

2008-10-17 Thread k3liutZu
Just convince everyone that it is ok to send IE6 a squared corner look ;) On Oct 17, 12:46 am, caruso_g <[EMAIL PROTECTED]> wrote: > Thanks Tim, tried. > Unluckily, no anti-alias, no background images and a messy rendering > on IE6. > > On 16 Ott, 23:32, TimW66 <[EMAIL PROTECTED]> wrote: > > > I'

[jQuery] Re: jQuery Cycle pagerAnchorBuilder with Div Tags

2008-10-17 Thread Zach Dunn
Thanks Mike! It's currently on the development page at www.imagine.yidio.com. I've put some placeholders in for the time being. Besides that the pertinent files are: www.imagine.yidio.comscripts/jquery-code.js www.imagine.yidio.com/jquery-style.css Zach On Oct 16, 10:53 pm, Mike Alsup <[EMAIL

[jQuery] Re: strange "bytes marker" at head of jquery.blockUI.js?

2008-10-17 Thread Mike Alsup
> not too sure if anybody noticed this (I did a cursory search through > the archives - but didnt find anything), but what is with those first > 3 non-ascii bytes at the head of the js? (0xef, 0xbb, 0xbf) Are they > supposed to mean or do anything? They arent present in the old > version, btw > (

[jQuery] Re: jqGrid 3.3 version

2008-10-17 Thread Tony
Hello, You can use the new custom filter feature. The groups GroupA, B ... can be obtained via separate ajax request from the db. Also refer to docs for this purpose. Regards On Oct 15, 9:29 pm, patrick davey <[EMAIL PROTECTED]> wrote: > Hi Tony, > > Very nicely done - will definitely take a look

[jQuery] Image displays again and again

2008-10-17 Thread thesmartmind
Hi every body, In my application we are using the JQuery datepicker and we are calling the function jQuery("#fromDate").datepicker({ showOn: "button", buttonImage: "/TCSFramework/images/icon.gif", buttonImageOnly: true , dateFormat: gPreferences.dateFormat }).addClass("

[jQuery] [jquery ui autocomplete] setData problem

2008-10-17 Thread wahyudinata
Hi, I am trying to add a pagination capability to my autocomplete I am having trouble when I click the pagination link , I call setData , flushCache and then trigger a search event and pass the page, but the setData is not setting the extraParams. help? this is my autocomplete call: $('input [t

[jQuery] JCarousel - How to scoll a fixed width of pixels?

2008-10-17 Thread greencube
I'm testing JCarousel for a project and trying to figure out if it is possible to scroll a fixed with of pixel when I click on prev and next buttons instead of a specified number of items. I need this because the images will be of varying width, but the same height. One clip-window will have 3 im

[jQuery] Re: stop hover

2008-10-17 Thread weidc
Hi, well thanks I guess it would work but I just saw in firebug -> border: 1px solid #66 !important Allready tried that too. I wondered why it doesn't work. So I have to talk with these guys when they are back. Thanks for your help. -weidc On 17 Okt., 12:24, tlob <[EMAIL PROTECTED]> wrote:

[jQuery] google's gadget API implementation on jQuery

2008-10-17 Thread Bernard Shyu
Hi all, I've implemented a web site (http://www.heremypage.com/), which works like netvibes or igoogle (www.google.com/ig), the so called personalized home portal. The gadgets implementation are almost 80~90% compatible to google gadget APIs http://code.google.com/apis/gadgets/docs/overview.html

[jQuery] JDate picker image comes again and again

2008-10-17 Thread thesmartmind
Thanks every body --- In my application we are using the JQuery datepicker and we are calling the function jQuery("#fromDate").datepicker({ showOn: "button", buttonImage: "/TCSFramework/images/icon.gif", buttonImageOnly: true , dateFormat: gPreferences.dateFormat

[jQuery] strange "bytes marker" at head of jquery.blockUI.js?

2008-10-17 Thread Jeffrey 'jf' Lim
not too sure if anybody noticed this (I did a cursory search through the archives - but didnt find anything), but what is with those first 3 non-ascii bytes at the head of the js? (0xef, 0xbb, 0xbf) Are they supposed to mean or do anything? They arent present in the old version, btw (http://jquer

[jQuery] Re: stop hover

2008-10-17 Thread tlob
Hallo CSS = border:0; or do you see the dottet border? Thats the browserhighlighting a linked element. Cant surpress that. Its diffrent in every browser cu tom On Oct 17, 11:56 am, weidc <[EMAIL PROTECTED]> wrote: > hi, > > well i got a little problem. > > i got some images which get a bor

[jQuery] Re: detecting if Firebug is installed

2008-10-17 Thread pere roca
I answer to myself; just googling a little I found this (not jQuery) solution (http://groups.google.com/group/firebug/msg/c5368294b82baad1) pere roca wrote: > > > hi all, > I have an application that fails when Firebug is installed in Firefox 3 > (with FF2 works). does someone know

[jQuery] stop hover

2008-10-17 Thread weidc
hi, well i got a little problem. i got some images which get a border if i hover over it. if i click an image it gets big and in front of the others but it still gets a border if i hover over it. that sucks and i don't know how to stop it. i didn't programmed this hover so i don't know something

[jQuery] Re: question.

2008-10-17 Thread Klaus Hartl
No need to apologize of course :) On 16 Okt., 16:22, GARIL <[EMAIL PROTECTED]> wrote: > Excellent!  Thank you both.  And I apologize. I hit the button > too quickly.

[jQuery] Re: question.

2008-10-17 Thread Klaus Hartl
Yeah, otherwise the radio and checkbox controls would be rather useless. --Klaus On 17 Okt., 06:27, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Oct 16, 2008, at 2:06 PM, ricardobeat wrote: > > > > > on a side note, name attributes should be unique (just like IDs), they > > are identifiers fo

[jQuery] detecting if Firebug is installed

2008-10-17 Thread pere roca
hi all, I have an application that fails when Firebug is installed in Firefox 3 (with FF2 works). does someone know any way to detect if Firebug is installed (I know how to detect FF, but not Firebug) thanks! Pere Roca Ristol Biòleg i especialista GIS Museo Nacional de C

[jQuery] Re: [Validation] DOM changes, adding validation rules to new objects

2008-10-17 Thread Mike
Thanks Jörn, Typically I spend hours looking and it's right under my nose. Regards Michael On Oct 17, 8:39 am, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > Take a look at rules("add", > ...):http://docs.jquery.com/Plugins/Validation/rules#.22add.22rules > > Jörn > > On Thu, Oct 16, 2008 at 7

[jQuery] Re: [validate] ignore an iframe element

2008-10-17 Thread Jörn Zaefferer
I see two issues here: For one, you've nested two forms, which isn't really that well supported by browsers, and the validation plugin is unable to handle that - events are bubbled up to the parent form, which can't handle the event. I'm not sure if and how that should be handled. The other issue

[jQuery] Re: [Validation] DOM changes, adding validation rules to new objects

2008-10-17 Thread Jörn Zaefferer
Take a look at rules("add", ...): http://docs.jquery.com/Plugins/Validation/rules#.22add.22rules Jörn On Thu, Oct 16, 2008 at 7:34 PM, Mike <[EMAIL PROTECTED]> wrote: > > Hi Jörn, > > Brilliant plug-in, it may be that I can do what I need to but i can't > seem to make it work. I'm building a fo

[jQuery] Re: Question to parent() versa DOM parentNode

2008-10-17 Thread Olaf Gleba
Hi. Sorry for the late reply. Am 16.10.2008 um 02:33 schrieb Mike Alsup: I ask because i get different results while traversing some Nodes with DOM Style and jquery approach. How are the results different? I have to revoke my question ;) It was a mistake by myself ;-) While the DOM Func