[jQuery] Re: [validate] delayed validation

2008-09-09 Thread Jörn Zaefferer
You could try to implement for completion code as a custom method and add a rule before the date validation. Or just implement your own date validation as part of the completion method. Jörn On Mon, Sep 8, 2008 at 8:22 PM, Mike Nichols [EMAIL PROTECTED] wrote: Hi I have a text field which is

[jQuery] Using JQuery with other libraries (Lightbox)

2008-09-09 Thread adeking
Hi, I have read the documentation on using JQuery with other libraries by using the Noconflict call. I have to admit to being a total novice at this. I want to use Jquery to do a text replace on my search box for my site - and I have lightbox working for my images. I cannot get the two

[jQuery] Re: Traversing table

2008-09-09 Thread Jayzon
Hi Rene! Thanks for your answer - that would be a nice solution for one single table. But I'd like to use the script for various tables on different pages. That's why it is getting more complicated. If I could get this done, other editors wouldn't have to care about IDs etc., but could just wrap

[jQuery] removing a row dynamically...

2008-09-09 Thread [EMAIL PROTECTED]
Hi, I have the requirement to dynamically add and remove a row. Below is the code to dynamicaaly remove a row and it works fine in Mozilla but not in IE. Can anyone please advise me on this. Thanks. $('a.remove').click(function(){ $(this).parents(tr).remove(); }); - M

[jQuery] Re: Jquery .load() can't load style and js in html file on Safari and Chrome??

2008-09-09 Thread Jove
This is a solution about style, but how about js in loaded page?

[jQuery] url serialize or getUrlParam

2008-09-09 Thread drlinux
Hello, I want to get lastest url paramaters and add this paramater another url like that: http://blabla.com/action.php?q=1page=1rows=50sidx=id to http://blabla.com/action.php?q=5page=1rows=50sidx=id I tried out getUrlParam but it doesn't work with jqgrid. Thanks a lot. King Regards, Ibrahim PS:

[jQuery] javascript enabled

2008-09-09 Thread [EMAIL PROTECTED]
Hello again, howcan be detect whether or not the user has javascript enabled and then write certain if statements to account for that. How do I detect a user's javascript setting? thanks for ur help :) samrad

[jQuery] Re: New jQuery Website...

2008-09-09 Thread Sam Collett
As much as we don't like it, sites still have to be designed to cater for IE 6+ We are still on IE 6 at work, because some of the systems we use (not ones I have worked on of course!) only seem to work in IE 6. You would have thought when you pay for a system, it is updated as new browsers come

[jQuery] Re: New jQuery Website...

2008-09-09 Thread Rick Faircloth
It's relatively simple to make CSS-based layout work for IE6, IE7, and FF3, which are my target browsers for design. I make sure all my sites work well on all three and it doesn't take much extra work at all. I use conditional stylesheets for all browser-specific tweaks, so that once a

[jQuery] Re: url serialize or getUrlParam

2008-09-09 Thread Tony
Hello, Use setGridParam something like jQuery(#mygridid).setGridParam({url:my_newurl.php}); Regards Tony On Sep 9, 11:59 am, drlinux [EMAIL PROTECTED] wrote: Hello, I want to get lastest url paramaters and add this paramater another url like

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread Velcrobelly
Anyone? On Sep 8, 5:01 pm, Velcrobelly [EMAIL PROTECTED] wrote: I am using the following to do a Hide/Show feature, and it works exactly as I want... --snip- script type=text/javascript $(function(){         $('#sender').click(function(){                         $('#container

[jQuery] Re: removing a row dynamically...

2008-09-09 Thread Ca-Phun Ung
[EMAIL PROTECTED] wrote: Hi, I have the requirement to dynamically add and remove a row. Below is the code to dynamicaaly remove a row and it works fine in Mozilla but not in IE. Can anyone please advise me on this. Thanks. $('a.remove').click(function(){

[jQuery] find specific parents?

2008-09-09 Thread rudgr
Hi, I have the code below to add a highlight class to the parent div if an input field gets focus - jQuery(this).parents(div:eq(0)).addClass('highlighted'); -- div class=formrow input type=text /div -- This works fine, but I would like to further specify the filter

[jQuery] Re: How to select a specific descendant of curent object

2008-09-09 Thread Ca-Phun Ung
Glen Lipka wrote: Wouldnt this work too? $(#box .grandchild). Yes but if you read the original question you'd see why I gave that particular solution: so is there a travesting method, or any other method which could select any descendant of curent element?

[jQuery] Re: Selecting a checkbox by clicking anywhere on a row

2008-09-09 Thread Michael Smith
Thank you - this seemed the neatest solution and worked nicely for me. Michael On Tue, Sep 9, 2008 at 12:53 AM, Karl Swedberg [EMAIL PROTECTED] wrote: Hi Michael, You could do it a little differently. This should work: $('.myrow').click(function(event) { if (event.target.type !=

[jQuery] how to control a imageover making one image to fade in a menu and fade out when....

2008-09-09 Thread Aaron
ok my problem is that I have the user upload a image file this image file on the page is a picture of them. What I want to do is when the mouse is over the image I want to fade in a menu this menu would contain buttons for editing the which photo to show and many other things about the image.

[jQuery] Re: Traversing table

2008-09-09 Thread Karl Swedberg
Hi Markus, Can you show us just a bit more of the HTML? It would help a great deal if we could see where the input field is in relation to the spans that you want to modify. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 8, 2008, at 4:38 PM,

[jQuery] Re: find specific parents?

2008-09-09 Thread Karl Swedberg
You can use a CSS selector. just add .formrow to the selector you already have: jQuery(this).parents(div.formrow:eq(0)).addClass('highlighted'); http://docs.jquery.com/Selectors --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 9, 2008, at 6:16 AM,

[jQuery] Re: Validate and FileStyle problem. Could someone, please, help me out?

2008-09-09 Thread shapper
Please, anyone? I am on this for 2 days ... Thanks, Miguel On Sep 8, 6:34 pm, shapper [EMAIL PROTECTED] wrote: Hello, I am using JQuery Validate plugin to validate a input of type file. I am also styling the same input using FileStyle plugin:http://www.appelsiini.net/projects/filestyle

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread tlob
Can you be more specific? I dont get it Sorry You fill out the first Input, save the form via a submit button and then? But now I need to be able to swap the name values of the text fields on the toggle as well, so that the visible text field always carries the name value of data01.

[jQuery] Re: Using JQuery with other libraries (Lightbox)

2008-09-09 Thread MorningZ
And making things even easier (isn't that what we're all after?) There's tons and tons of jQuery lightbox scripts out there... perhaps switching to one of those will make your conflict a moot point (plus won't make the users of the page download two libraries!)

[jQuery] [validate] metadata bug

2008-09-09 Thread Mike Nichols
If this is in a form: input class=required type=text/ and the form is validated with: jQuery(#demo_form).validate({meta:validate}); // inside $.ready Then I get this : meta is undefined file:///C:/Development/Assets/test/datetime/jquery.validate.js Line 507 Which is caused by this: return

[jQuery] Re: [validate] metadata bug

2008-09-09 Thread Jörn Zaefferer
Could you file a ticket for this? http://dev.jquery.com/newticket Thanks Jörn On Tue, Sep 9, 2008 at 3:22 PM, Mike Nichols [EMAIL PROTECTED] wrote: If this is in a form: input class=required type=text/ and the form is validated with: jQuery(#demo_form).validate({meta:validate}); // inside

[jQuery] Re: Traversing table

2008-09-09 Thread Jayzon
Hi Karl, I'm not sure if you missed them, but I placed the input fields inside the table, they are in tr.calc (the second row in the html in my first post). It's just an input / tag. That input field would then be a nice starting point, because it's placed directly under the span including the

[jQuery] Re: JQuery Form Plugin and json

2008-09-09 Thread Stefan Sturm
Hello, I'm using the jQuery Form PlugIn( http://www.malsup.com/jquery/form/ ) to handle my Forms. I like it, but I have a question about an improvment: At this time all form fields are send using post, but it wold be nice, to send all form fields json encoded as one post parameter. Is

[jQuery] Re: Set cursor position in textarea/input

2008-09-09 Thread Quess
hi Greeg, Probably you've found solution for your question but because I had faced the same problem as you, and it get me a while to find out solution i'll answer just in case somebody else will meet the same problem. Check this page

[jQuery] non-recursive element filtering

2008-09-09 Thread Dominique
hi, i have been trying to do something simple for the last couple of hours and i just can't seem to solve this problem: maybe easier to give a dom tree first: ... div class=list div class=item A div class=list style=margin-left:10px; div class=item1 button+/button/div

[jQuery] Re: find specific parents?

2008-09-09 Thread rudgr
Thanks! On Sep 9, 2:28 pm, Karl Swedberg [EMAIL PROTECTED] wrote: You can use a CSS selector. just add .formrow to the selector you   already have: jQuery(this).parents(div.formrow:eq(0)).addClass('highlighted'); http://docs.jquery.com/Selectors --Karl Karl

[jQuery] Re: removing a row dynamically...

2008-09-09 Thread [EMAIL PROTECTED]
Hi, Thanks for the reply. But this doesn't seem to work for me. Here is the code that i use to create a dynamic row. This works fine in Mozilla but the remove function doesn't seem to get even called from IE. Please take a look. ** Code to create a dynamic row where 'remove'

[jQuery] Re: how to control a imageover making one image to fade in a menu and fade out when....

2008-09-09 Thread mbraybrook
As for a proper example i can't do that too well as i don't have any original code to work with but something like this may work: html: div id=container img src=path/to/img.ext/ div id=menu class=menu !-- menu stuff here -- /div /div JScript: script //Add a listener to the

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread mbraybrook
You may have to replace slideToggle with a conditional .hide() .show() and some other information. Pseudo-code: .: Check the state of the two divs seperately, perhaps by providing unique ID's for each one? .: If one is hidden, show it and set the name attribute to data01 .: if one is shown, hide

[jQuery] Re: javascript enabled

2008-09-09 Thread mbraybrook
Whether or not a user has javascript is not something you would use javascript for (if you use javascript, detecting a user that has not got javascript is, by definition, impossible. Alternatively, do some research into the html noscript attribute, this will allow you to provide for those who do

[jQuery] jdMenu problem in IE6 IE7

2008-09-09 Thread Jason Stanbery
I will preface with the statement that I'm not a javascript super star. My drop down menu isn't functioning for either IE6 or IE7. In FF2 on Windows it works, acts a little funny sometimes, works fine on FF3 Safari on Mac. If I was to guess, I would probably guess that the issue is in my

[jQuery] Re: Using JQuery with other libraries (Lightbox)

2008-09-09 Thread mbraybrook
I must add at this point that if at all possible eradicate the requirement for 2 javascript libraries. Javascript libraries, though incredibly useful, are fairly large in size, and using two can raise all sorts of performance issues. As you stated you are a novice it think its more important

[jQuery] Why doesn't my prev() work?

2008-09-09 Thread Keir
Hi, I'm sure to a whizz this is going to be a bit of a noob question, but why doesn't my prev() work here: script type=text/javascript $(document).ready(function() { $('.child').hide(); $('name=selected').prev('.child').show(); }); /script HTML:

[jQuery] Any Fortune 500 using the Google Ajax Hosting?

2008-09-09 Thread rcherny
Hey, I'm implementing jQuery for a fairly large company, and was asked by their team if we knew if anyone in the Fortune 500 was using the Google Ajax hosting: http://code.google.com/apis/ajaxlibs/ They have some IT issues which are preventing proper server configurations in the short term at

[jQuery] Re: Selecting a checkbox by clicking anywhere on a row

2008-09-09 Thread Michael Smith
Except ... (sorry to come back on this one) I'm trying to do something else ('growl' actually but that's not important for the purposes of the issue) when the user checks/unchecks the box http://dev2.savingforchildren.co.uk/mjs/row_select_2.epl As this demo now shows, when you check the box

[jQuery] Superfish with custom backgrounds

2008-09-09 Thread Nathan
I am looking to see if I can specify two images tiles. One for the on state and one for the hover state of the primary navigation. All other sub navs would just have a solid bgcolor for their background. Anyone done this yet? Nathan

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread Velcrobelly
I am doing this for a custom layout that I can only upload basic HTML/ JavaScript to. When the page is rendered, the server unfortunately strips 'non- allowed' ID settings from the tags. Is it possible to do without setting ID values in the input tags? - VB On Sep 9, 8:14 am, mbraybrook

[jQuery] Re: Problem with Tablesorter Pager plugin - there should be an option to turn off absolute positioning of pager container

2008-09-09 Thread Eric
Try adding the option positionFixed: false, like so: tablesorterPager({container: $(#pager),positionFixed: false}); Here are the other defaults: this.defaults = { size: 10, offset: 0,

[jQuery] Re: javascript enabled

2008-09-09 Thread Sarmad AL-Saiegh
hi, thanks alot. ur answer was quit good :) the tip about noscript helped me to much. best wishes 2 u :) sarmad On Tue, Sep 9, 2008 at 3:24 PM, mbraybrook [EMAIL PROTECTED] wrote: Whether or not a user has javascript is not something you would use javascript for (if you use javascript,

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread Velcrobelly
I will try to be clearer... The checkbox controls the hide/show toggle of the two divs. Initially, the first div is visible and the name value for the input field in it is 'data01'. The second div is hidden and the name value of the input field in it is 'data02'. When the checkbox is clicked

[jQuery] Re: Fire events programmatically

2008-09-09 Thread Huub
I don't think that trigger() does the trick. First of all i tested it. second, more important, things like createEvent, dispatchEvent,fireEvent do not appear in jQuery.js Regards, Huub On Sep 8, 11:11 pm, Josh Nathanson [EMAIL PROTECTED] wrote: Isn't that the same as this:

[jQuery] Re: jdMenu problem in IE6 IE7

2008-09-09 Thread Jason Stanbery
I commented out stuff and noticed that the menu is showing, it's failing due to the z-index IE bug, staying behind page content in both IE6 IE7. On Sep 9, 8:58 am, Jason Stanbery [EMAIL PROTECTED] wrote: I will preface with the statement that I'm not a javascript super star. My drop down

[jQuery] SuperFish - always display some submenu items

2008-09-09 Thread Andrew Lysyuk
For some pages I want some menu-items to be always dropped-down. For example, I have li elements with class=no. I need Superfish don't react to events on the submenu inside this element.

[jQuery] Re: JQuery Form Plugin and json

2008-09-09 Thread Mike Alsup
I'm using the jQuery Form PlugIn(http://www.malsup.com/jquery/form/) to handle my Forms. I like it, but I have a question about an improvment: At this time all form fields are send using post, but it wold be nice, to send all form fields json encoded as one post parameter. Is there a

[jQuery] Re: Selecting a checkbox by clicking anywhere on a row

2008-09-09 Thread Wooty
Hi Michael, Have you checked out the stopPropagation() method for events? eg: $(check_id).click(function(e){ e.stopPropagation(); }); This may help - I have used this on a clickable image on a table row to stop the click expanding / contracting the table row. Cheers P On Sep 9, 2:59 pm,

[jQuery] Re: Fire events programmatically

2008-09-09 Thread Richard D. Worth
Sounds like you may be interested in jquery.simulate: http://dev.jquery.com/view/tags/ui/latest/tests/simulate/jquery.simulate.js It will create and fire/dispatch mouse and keyboard events. Here's an example of use: $(#myEl).simulate(mousedown, { clientX: 50, clientY: 100 }); Browser support

[jQuery] File Exists

2008-09-09 Thread Pete
Hi all- Looking for a way to determine if a file exists before uploading. I'm working in asp.net and jquery, essentially my idea was to capture the submit of the form, and .get the file name to another page that would return true/false if the file existed. If exists, confirm file overwrite, if

[jQuery] How to validate multiple fields with AJAX simultaneously before submit

2008-09-09 Thread ryanstreet
Hello, I am working with Jquery's validate script and form script as well for Ajax submits. I want to validate a credit card field against another field with my ajax call, but the way the form is set up it only spits one field per validation. Any ideas or help? Thanks in advance! snippet:...

[jQuery] Re: autocomplete questions

2008-09-09 Thread Shelane
To no avail, I tried adding this line: $('#topic1').trigger('keydown'); I also tried it as: $('#topic1').trigger('keypress'); to make this function like this: $('#topic1').focus(function(){ $('#topic1').search(); $('#topic1').trigger('keydown'); }); neither caused it to

[jQuery] Re: selectors in $.post return with HTML context

2008-09-09 Thread Michael Geary
I assume that you can do the cross-domain Ajax call because this runs in the browser chrome, is that right? If the Ajax call fails, then of course you won't get very far. Past that, I would take the code that is failing and break it down to see what data you have at each step:

[jQuery] Re: Any Fortune 500 using the Google Ajax Hosting?

2008-09-09 Thread Bil Corry
rcherny wrote on 9/9/2008 7:36 AM: Hey, I'm implementing jQuery for a fairly large company, and was asked by their team if we knew if anyone in the Fortune 500 was using the Google Ajax hosting: http://code.google.com/apis/ajaxlibs/ They have some IT issues which are preventing proper server

[jQuery] Re: New jQuery Website...

2008-09-09 Thread Chris Jordan
I just looked at the site in IE7 and I'm not seeing any problems. I clicked around in the documentation, and tutorials area, and just didn't notice a problem. Jeremy, maybe you *should* provide some specifics... either that or I'm blind! :o) Chris On Mon, Sep 8, 2008 at 12:26 PM, jeremyBass

[jQuery] Re: Any Fortune 500 using the Google Ajax Hosting?

2008-09-09 Thread rcherny
Hey Bill, thanks for the response. I don't recommend the Google AJAX hosting to my clients.  Here's why: the jQuery library is small to begin with, so we're not talking about saving oodles of bandwidth, and if you set the Expires header to expire in a year, then the browser will only

[jQuery] Expanded Div in which images change on mouseover

2008-09-09 Thread capnhud
I know that on a href=http://www.wilson.com/wilson/home/ index.jspthis/a site the navigation is flash based, but is it possible to do this with plain old html, css and some form of jquery. If so what plugin would I be looking for? The closest I seen was jDrawer, but that does not appear to be the

[jQuery] move object with all events.

2008-09-09 Thread Ami
Sorry about my grammar, English isn't my tango $(#elment).click ( function () { alert('ok') } ); Now, when I move the element: $(#element).insertAfter( otherElement); The click event is automatically unbind. How Can I fix it?

[jQuery] Re: how to control a imageover making one image to fade in a menu and fade out when....

2008-09-09 Thread Aaron
ok this is what I have right now in javascript: $(document).ready(function(){ $(document).pngFix(); $(#picmenu).hide(); $(#userimage).mouseover(function(){ $(#picmenu).fadeIn(slow);});$(#userimage).mouseout(function(){ $(#picmenu).fadeOut(slow);});

[jQuery] Re: selectors in $.post return with HTML context

2008-09-09 Thread [EMAIL PROTECTED]
I believe I found the problem, but haven't tested the update yet. According to the Learning jQuery book, I can't traverse AJAX'd HTML content until I insert it into the current DOM. I'll be testing inserting it into a hidden DIV and then going to town. Hopefully it works. . . On Sep 8, 8:18 

[jQuery] Re: New jQuery Website...

2008-09-09 Thread fairchild
I like the new site, but also kinda miss the cylinders logo. I thought that was such a great logo for jquery, ~michael On Sep 9, 5:05 am, Rick Faircloth [EMAIL PROTECTED] wrote: It's relatively simple to make CSS-based layout work for IE6, IE7, and FF3, which are my target browsers for

[jQuery] bug in fix method?

2008-09-09 Thread [EMAIL PROTECTED]
Hi, All! I can't submit bug into bug tracker - it says i have no rights. I found out that fix(event) method in 1.2.6 doesn't copy property altKey from original event. I think the cause is the incorrect iteration over array: var originalEvent = event; event = {

[jQuery] superfish menu, Error: $(ul.sf-menu) is null

2008-09-09 Thread oconshaw
I'm using the superfish menu with a navigation module in dotnetnuke that emits the page structure as an unordered list. Most pages work fine with the menu system and superfish. However, some pages give me the following error: Error: $(ul.sf-menu) is null, source

[jQuery] Re: File Upload

2008-09-09 Thread Jake
People keep claiming that but we haven't been able to reproduce an Adblock issue internally. What Adblock rule is blocking SWFUpload? Maybe we can fix it. On Aug 28, 4:16 pm, Fabian Alejandro [EMAIL PROTECTED] wrote: Hi, you can also trywww.swfupload.org, it is fully configurable. it

[jQuery] Validation Plugin Not Working in FF3 but okay in IE, Chrome and Opera 9.5?

2008-09-09 Thread Bill
I am using the great Validation plugin by Jörn Zaefferer (http:// bassistance.de/jquery-plugins/jquery-plugin-validation/). In my project it is working fine except when the page is viewed with FF3. It works fine with IE7, Chrome and Opera 9.5. You can view my post on this project at

[jQuery] View a page in flash

2008-09-09 Thread guilhermelima77
www.gamesflash.zip.net

[jQuery] How to read a HTML file outside current directory using Jquery Load function?

2008-09-09 Thread Mulpuru
$(#abc).load(../one.html); Doesn't work..

[jQuery] Re: Traversing table

2008-09-09 Thread Jayzon
Well, I just tried to get a starting point for the js file: $(document).ready(function() { var char_count = $(input).val; var position = $(input:focus).parent().eq(); var price = $(input:focus).parent().parent().children(pricing).

[jQuery] Re: autocomplete on cloned inputs

2008-09-09 Thread Xinhao Zheng
hi all,    is there anyone who knows why clone didn't work when input with aucomplte plugin used.   is there any walkround solution? George peCan wrote: I have the same question. Can I use jquery.autocomplete on cloned inputs? thx. On 30 Čec, 13:56, rayfidelity [EMAIL PROTECTED] wrote:

[jQuery] Re: jQuery and swapping name values

2008-09-09 Thread mbraybrook
Hmm, a quandry, I'll do a little testing for you and get back when/if I can, unless someone else can provide an answer in the mean time. Regards Mark On Sep 9, 3:10 pm, Velcrobelly [EMAIL PROTECTED] wrote: I will try to be clearer... The checkbox controls the hide/show toggle of the two

[jQuery] Re: javascript enabled

2008-09-09 Thread mbraybrook
Not a problem, glad I could help. M On Sep 9, 3:07 pm, Sarmad AL-Saiegh [EMAIL PROTECTED] wrote: hi, thanks alot. ur answer was quit good :) the tip about noscript helped me to much. best wishes 2 u :) sarmad On Tue, Sep 9, 2008 at 3:24 PM, mbraybrook [EMAIL PROTECTED] wrote:

[jQuery] clueTip plugin DOM manipulation clarification.

2008-09-09 Thread Alex
Hello all - I downloaded and used Karl Swedberg's (of www.learningjquery.com) excellent clueTip plugin. The scenario under which I used it led me to identify a small issue that I believe was a design decision by Karl but that behaved differently than I expected it to and, as such, made me spend

[jQuery] Re: New jQuery Website...

2008-09-09 Thread jeremyBass
Sure can... the page i was currently on... http://plugins.jquery.com/project/Intercept (but it's almost every page...) and here is a pic for you http://digitalbarn.tv/Proofs/NCITA/proofs/Untitled-1.jpg and the browser version IE 7.0.5730.11 which there is a big diff between that and IE

[jQuery] Re: New jQuery Website...

2008-09-09 Thread Chris Jordan
Hmm... still looks fine to me. I'm using IE 7.0.6001.18000 Yeah, I hope the designer can get this resolved too. Hope these version numbers help out. Chris On Tue, Sep 9, 2008 at 12:05 PM, jeremyBass [EMAIL PROTECTED] wrote: Sure can... the page i was currently on...

[jQuery] Re: scrollTo anchor or class in div

2008-09-09 Thread pedalpete
Hey Ariel, I've kept playing with this, but just can't seem to get it to work. I've launched my site now, so if you have a chance, can I ask you to take a look? The site is www.HearWhere.com - and the scroll I'm trying to get to is after you select an artist, and the artists shows list appears

[jQuery] Re: clueTip plugin DOM manipulation clarification.

2008-09-09 Thread Alex
Update: this only worked the first time the tooltip came up. After I closed it and opened it again, the body of the tooltip was empty. I'm still looking into another way around this. I've seen other posts referencing a quick .mouseout, .mouseover sequence. Maybe this is the solution? Anyone

[jQuery] Animation

2008-09-09 Thread Ronn Ross
Hello all, I have two images on a page, one on top of the other. I'm using them to do a rollover effect. One the top image I have a onmouseover event triggering a jquery fadeOut(). On the bottom image I'm adding the onmouseout event triggering the fadeIn() effect for the above image. The problem

[jQuery] Re: superfish menu, Error: $(ul.sf-menu) is null

2008-09-09 Thread oconshaw
I should also point out that this happens in both IE7 and Firefox. On Sep 9, 12:22 pm, oconshaw [EMAIL PROTECTED] wrote: I'm using the superfish menu with a navigation module in dotnetnuke that emits the page structure as an unordered list.  Most pages work fine with the menu system and

[jQuery] Access a example hibrid java and action script

2008-09-09 Thread guilhermelima77
www.gamesflash.zip.net

[jQuery] jquery is breaking iWebSite.js

2008-09-09 Thread dittmer
I'm a looser. I use iWeb. Every time I add jquery to my iWeb page it breaks all the functions made by this javascript file iWebSite.js. I really know nothing about javascript (I'm a wanna be. That is why I use iWeb.) Please help.

[jQuery] Superfish Issues

2008-09-09 Thread JasonHorizon
I cannot for the life of me get the Superfish menu to work correctly. Everything is fine in Firefox (except for the fact that the hoverIntent animations don't work) but it just throws errors in IE and the subnavs don't appear. Here's an example site: http://dev.ilrinc.com/index.php

[jQuery] Re: How to read a HTML file outside current directory using Jquery Load function?

2008-09-09 Thread [EMAIL PROTECTED]
If you mean a file outside the current server directory that the page was served from, then it doesn't work because jQuery is executing on the client, and needs a fully qualified path to the file: $(#abc).load(http://full.domain.path/to/file/one.html;); If you want to load a file from the

[jQuery] Validate remote: passing multiple variables?

2008-09-09 Thread ryanstreet
Does anyone know of a way to pass multiple form fields into one remote call in the validate script in Jquery? Any help appreciated. rules: { Field1: { required: true, remote: /path/to/script.php

[jQuery] slide down and up problem

2008-09-09 Thread evan
Hi. i just want my headers to slide up and down but they seem to execute twice. could someone look over my code to see why things are sliding up down then up down again? thanks code: $(document).ready(function(){ $(#subNav1 a).css({backgroundColor: #fff, color: #222 , borderRight: 2px

[jQuery] jquery cycle - advanced uses

2008-09-09 Thread bingaman
I'm using the jquery cycle plugin - it's fantastic, but I'm coming up just short of how I want it to function. The goal is to have a cycle that runs along with a pager. The pager is custom and works on hover. Additionally, I want the cycle to pause while you're hovering on a pager item, and

[jQuery] How to select all input elements but the button one?

2008-09-09 Thread aldomatic
I'm trying to select all input elements but the submit or button. I appreciate the help. Aldo

[jQuery] String passed by value or by reference

2008-09-09 Thread Ungebeten
Hi, I'm stuck with some code. I want to create some part of my html document by javascript. Every line contains some links, the links should trigger an action on that line. Here is some minimal sample code to reproduce the problem:

[jQuery] Drag screws with my mouseup event

2008-09-09 Thread Jeremy
I am trying to reproduce a calendar selector. Basically, I want the boxes to turn red when I have the mouse depressed only. Works great so far except that the drag event seems to be hiding the mouse up event (try it out, you'll see it happen), and then the logic is backwards until the mouse is

[jQuery] Superfish Sub menu position

2008-09-09 Thread matt
I am using superfish on a page and the top level menu spans across the entire page. The problem is that some of the dropdowns on the right have side of the page open their sub menus to the right so the user wont see them unless their browser window is wide enough. Has anyone attempted to get the

[jQuery] put image on top of another image

2008-09-09 Thread cc96ai
I m new on jquery, I am not can jquery can do or not I want to put a image on top of other image, e.g. we have a product image, we want to put a sign of sold or hot buy image on top , any idea how could I do it in jquery ?

[jQuery] Re: superfish menu, Error: $(ul.sf-menu) is null

2008-09-09 Thread oconshaw
Another comment -- the issue seems to be related to certain modules that are also included on the page. For example, there is a feedback form on one of the pages that fails. When I take it off the page and superfish menu load fine. Add it back and we have a problem once again. On Sep 9, 12:22 

[jQuery] Re: New jQuery Website...

2008-09-09 Thread jeremyBass
I figured that if we are trying to help I'd point out a few other flaws I'm sure was not meant to be there... look to here for FF and Safari very minor issue http://digitalbarn.tv/Proofs/NCITA/proofs/Untitled-2.jpg the version I'm running is on xp sp2... I'll get the version numbers on the vista

[jQuery] Re: Determine if a Javascript has loaded?

2008-09-09 Thread bcbounders
@Mike: Update - it's all up and running! You can see it here: http://tinyurl.com/5n8mco Thanks so much for your help (OK... for DOING it!). I really appreciate it! - John On Sep 8, 12:52 pm, bcbounders [EMAIL PROTECTED] wrote: Mike, WOW!  Thanks so much! This is TOTALLY the kind of

[jQuery] Re: SuperFish - always display some submenu items

2008-09-09 Thread Mike Henke
kinda like this? Superfish - display2 deep and have mouseover for anything deeper Options http://groups.google.com/group/jquery-en/browse_thread/thread/a1ea1b8efa9d60d1/3f1a6ff2d1a2fdb2?lnk=gstq=superfish#3f1a6ff2d1a2fdb2 It isn't solved yet but we maybe can combine our discussion if it is what

[jQuery] Cancel .toggle() when a link is clicked

2008-09-09 Thread jtibbetts
How do you stop .toggle() from toggling an object when a link (or any object) inside the object is clicked. Here's a quick contrived example: div id=toggle Click here for more info a onClick=DoSomething();do something/a /div div id=infoblah blah blah.../div script $(#toggle).toggle(

[jQuery] Re: SuperFish - always display some submenu items

2008-09-09 Thread Mike Henke
We might be trying to solve the same issue... http://groups.google.com/group/jquery-en/browse_thread/thread/a1ea1b8efa9d60d1/3f1a6ff2d1a2fdb2?lnk=gstq=superfish#3f1a6ff2d1a2fdb2

[jQuery] Re: jquery is breaking iWebSite.js

2008-09-09 Thread Andy Matthews
Can you post a link to your site, with jQuery and the iWeb javascript code? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dittmer Sent: Tuesday, September 09, 2008 3:28 PM To: jQuery (English) Subject: [jQuery] jquery is breaking iWebSite.js

[jQuery] Re: String passed by value or by reference

2008-09-09 Thread MorningZ
SUPER easy fix, and just a slight oversight linename = Row + linecount++; to var linename = Row + linecount++; this keeps linename *local* inside the function the way you had it, it was technically window.linename that was getting used, hence always showing the last (and last

[jQuery] Need AJAX Developers - Remote work

2008-09-09 Thread Chiru, Agile Enterprise Solutions, Inc.
Hi, We need 2 AJAX developers. This is a Remote project and the interview is telephonic. If you are interested please send your resume with contact details and rate per hour as soon as possible. Position: AJAX Developer Location: Can work remotely Duration: 2-3 months Positions: 2

[jQuery] Re: put image on top of another image

2008-09-09 Thread Andy Matthews
You don't need jQuery for this. It can be done with CSS. Here's a link that you can inspect to see what I'm talking about: http://www.commadelimited.com/code/overlapimages/ andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cc96ai Sent:

[jQuery] Re: How to select all input elements but the button one?

2008-09-09 Thread pedalpete
Are you trying to put them all into an object? or a variable? I would normally say use something like [code] $('input').each(function(){ On Sep 9, 12:00 pm, aldomatic [EMAIL PROTECTED] wrote: I'm trying to select all input elements but the submit or button. I appreciate the help. Aldo

  1   2   >