Re: schema replication 2.4

2008-09-09 Thread Daniel Paufler
Hell Again Unfortunately, i still have a problem to replicate my schema with openldap 2.4. I found one thread in the archives [1], but it did not help me much. Can anyone give me some hints how to replicate my masster schema to the slave, but still be able to change e.g. LogLevel on my slave? R

[jQuery] jQuery noConflict breaks the galleria in IE 6 & 7

2008-09-09 Thread sutra
Hi, I am curious if anybody ever implemented jQuery noConflict with Galleria? It's working fine in IE browsers but when I implemented the noConflict (because the system I used for the site is full of prototype scripts), IE stops working. I filed a bug report but have no hope it will get fixed so

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

2008-09-09 Thread Karl Swedberg
You're right Aaron. The attribute selector was malformed. The other problem is that the '.child' element is not the previous sibling of the 'a[name=selected]' element, which is what the .prev() method is looking for. Keir, you need to go *up* the DOM. Also, not sure why you want to hide t

[jQuery] Validate dynamic-totals.html

2008-09-09 Thread john henderson
Hi, Brilliant bit of work! Your example is just what I need for my PDA web form. I use dreamweaver with php and mysql. I have a form that I need to validate containing multiple rows of records. At the present moment there is no extension from ADOBE that provide validation on multiple records, whi

[jQuery] Re: clueTip plugin DOM manipulation clarification.

2008-09-09 Thread Karl Swedberg
Hi Alex, Sorry you're having problems with this. I just committed a patch related to those lines today: http://jqueryjs.googlecode.com/svn/trunk/plugins/cluetip/ Maybe it'll help with the issue you're having, but I'm not sure if you want the events to be cloned along with the content or n

[jQuery] Re: non-recursive element filtering

2008-09-09 Thread Karl Swedberg
Hi Dominique, You could do this: $('button').filter(function() { return $(this).parents('div.list').length == 1; }); That will select all button elements that have only one ancestor div.list element. Hope that helps. --Karl Karl Swedberg www.englishrules.com www.learn

[jQuery] offset bug on YUI grid css

2008-09-09 Thread james_027
Hi, I am using the offset() to get the top and left properties of an html element. I am getting a different result from FF2 and FF3. FF2 got it right while FF3 got it wrong but has almost same result with Chrome. I think it's because of the complexity of YUI grid css? but it was right on FF2 ...

[jQuery] Re: bug in "fix" method?

2008-09-09 Thread Karl Swedberg
Hi there, I think this one has been fixed already: http://dev.jquery.com/ticket/2947 You might want to grab a copy of the svn version and see if it works there. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Sep 9, 2008, at 12:32 PM, [EMAIL PROTECTED]

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

2008-09-09 Thread Jove
any idea?

[jQuery] Re: Superfish Sub menu position

2008-09-09 Thread Joel Birch
You could either design the page to avoid this, or you can alter the CSS so that the right most nav item's submenu uses right:0; , or you could search for the 'Supposition' plugin and use that instead. Joel Birch.

[jQuery] Re: Superfish Issues

2008-09-09 Thread Joel Birch
As shown in the Superfish documentation, you need to call supersubs() after superfish() in the chain. Give that a go and see if it works. Joel Birch.

[jQuery] Re: Superfish with custom backgrounds

2008-09-09 Thread Joel Birch
Sure. Just specify the hovers for the top level links, then override the rest using more specific selectors to set their backgrounds to a solid colour, or whatever you want them to be. Joel Birch.

[jQuery] Re: Superfish Navigation bar text color

2008-09-09 Thread Joel Birch
Please supply a link to your example so we can give specific help. Here is my general help: .sf-menu a { color:white; } .sf-menu ul a { color:red; } Joel Birch.

[jQuery] Re: Superfish: Gap between top level menu and popup..

2008-09-09 Thread Joel Birch
Notice in superfish.css, this rule: .sf-menu li:hover ul, .sf-menu li.sfHover ul { left: 0; top:2.5em; /* match top ul list item height */ z-index:99; } The "top" property dictates where the top of the first submenus a

[jQuery] Re: Superfish: onBeforeShow and onHide callback functions

2008-09-09 Thread Joel Birch
Hello, Superfish does not handle closing animations. The main reason for this is that it is surprisingly tricky to do without triggering buggy behaviour and adding too much code bloat to handle those bugs. Doesn't seem worth it to me. Joel Birch.

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

2008-09-09 Thread Joel Birch
Hello, We would have to see your page to figure out which of your other scripts are not playing nice with Superfish. Maybe those scripts use the dollar symbol? If so, you could just rewrite your jQuery code to use the 'jQuery' function name instead of '$' as they are both equivalent to each other

[jQuery] Re: Superfish - display2 deep and have mouseover for anything deeper

2008-09-09 Thread Joel Birch
Arrgh. I meant "Hi Mike". Sorry.

[jQuery] Re: Superfish - display2 deep and have mouseover for anything deeper

2008-09-09 Thread Joel Birch
Hi Andrew, Superfish doesn't have the feature of being able to skip the first level of menu. I'll consider how best to do this for a future version of Superfish as long as it doesn't bloat the code too much. Sorry I couldn't help. Joel Birch.

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

2008-09-09 Thread Joel Birch
Sorry, that response was meant for Mike - sorry for the confusion! However, I was just about to write you a near-identical response anyway. I'll keep your feature request in mind, but for now I'm afraid you are out of luck with this. Joel Birch.

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

2008-09-09 Thread Joel Birch
Hi Andrew, Superfish doesn't have the feature of being able to skip the first level of menu. I'll consider how best to do this for a future version of Superfish as long as it doesn't bloat the code too much. Sorry I couldn't help. Joel Birch.

[jQuery] Re: jquery cycle - advanced uses

2008-09-09 Thread Mike Alsup
> 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 resume once you've left. > This code appears to work correctly, but it occasionally says paused > or if you m

[jQuery] Re: Validate remote: passing multiple variables?

2008-09-09 Thread Xinhao Zheng
hi ryanstreet, You can use $.('xxx').serialize() to collect all the input element into an array,or else you may try json,like json = '{ "a": "{\"p\":\"cc\",\"m\":\"aa\",\"s\":\"bb\"}", "b": 2, "c": 3, "d": 4, "e": 5 }'; $.post(url, {data:json}, fu

[jQuery] Comparing two textboxes

2008-09-09 Thread Littletower
Hi, I wrote a script to verify if two text boxes have the same value/text. checkpasse.php just verifies if the text box edtMdp($_POST['edtMdp']) equals edtCMdp ($_POST['edtCMdp']), if they do: echo "yes", if the don't echo "no" so if the result of checkpasse.php is, for example, "no" (datamdp=='no

[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 use input with the aucomplete plugin binded. 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 P

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

2008-09-09 Thread FrenchiINLA
to make id simple i add an 'notoggle' id to your link you can use the following code: $('#toggle').click(function() { alert('toggle'); }); $('#notoggle').click(function() { alert('No Toggle'); return false; }); or if you don't want use id for the link $('#toggle a') instead of $('#

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

2008-09-09 Thread FrenchiINLA
how about: $('input:not[type=submit], input:not[type=button] ') 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

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-09 Thread Richard D. Worth
Slick! Very nice demos. You said there were some minor issues, so you may already know about this, but when the mouse is moved outside the image (while dragging) it gets unsynced. That is, move 100px away from image edge and as soon as you start moving back, crop box starts moving, instead of waiti

[jQuery] Re: New jQuery Website...

2008-09-09 Thread Rick Faircloth
Chris. Check this one in IE7. http://docs.jquery.com/Tutorials:jQuery_For_Designers# Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Tuesday, September 09, 2008 12:55 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: New jQuery

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-09 Thread Sam Sherlock
awesome stuff on every level. extremely simple - immediately usable 2008/9/10 Stephen <[EMAIL PROTECTED]> > > Had play with the online demo, very cool Kelly. > > Would have quite a few applications, and allow non tech (photoshop) > users to edit images on the fly with little to no hassle. > > Che

[jQuery] Re: scrollTo anchor or class in div

2008-09-09 Thread pedalpete
Sorry Ariel, My bad, this might make it easier http://HearWhere.com?showid=1388718 if you follow that link, it will load coldplay and there shows. If you scroll down to the upcoming coldplay shows, there is a section with a small map on the left and a scrollable list on the right. >From that lin

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-09 Thread Stephen
Had play with the online demo, very cool Kelly. Would have quite a few applications, and allow non tech (photoshop) users to edit images on the fly with little to no hassle. Cheers Stephen

[jQuery] Re: ClueTip ?? HOw to hide or turnOff tooltips

2008-09-09 Thread T3 2006 TEAM ALPHA
Hi Karl, I did use onActivate and return false. But now what happen is that when user click again on link to turn tool tip on. Half of the tool tips not getting text in it. They just displaying empty div even no title on top (jtip) where as rest half are showing and it's happening ra

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

2008-09-09 Thread Andrew Lysyuk
Not at all the same, but near )) Do you have any ideas? I tried to edit source code, but I'm very newbie in jQuery... There is one method, but IE braek layout of HTML template after that - I tried to wrap elements that I need to proccess with SuperFish to : This must be always visible, so

[jQuery] Re: scrollTo anchor or class in div

2008-09-09 Thread Ariel Flesler
I really can't find what you mention, I see the content that is loaded by ajax, but can't figure out what kind of scrolling you need. If you can reduce the situation/problem to something small and minimalistic, I'll check it out asap. Cheers -- Ariel Flesler http://flesler.blogspot.com/ On Sep

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

2008-09-09 Thread Wooty
Hi Micheal, You've probably already sorted this, but: $('.checkbox').click(function(e) { e.stopPropagation(); var action=$(this).attr('checked') ? 'checkbox: you checked it' : 'checkbox: you unchecked it' alert(action) }); $('.myrow').click(function(e) { if (e.t

[jQuery] Tablesorter Tablepager problem, desperate for help

2008-09-09 Thread Charaseac
Hi guys, so i'm making this dynamically created table. Each row has checkbox. The table is sortable and i'm going to use tablesorter's pager plugin in it. I want to limit the number of the checked checkboxes to 7. So i wrote another havascript to control this. When the user checked 7 checkboxes a

[jQuery] Jcrop v0.9.0 image cropping plugin - comments please

2008-09-09 Thread Kelly
Announcing initial release of Jcrop image cropping plugin for jQuery. This is my first plugin release, so I would appreciate any feedback. http://deepliquid.com/content/Jcrop.html Also posted to plugins.jquery.com There are some rough edges in the API and a few other minor issues. More work to d

[jQuery] Re: jquery is breaking iWebSite.js

2008-09-09 Thread Stuart Dunkeld
I think the problem is that iWebSite.js uses the Prototype library, and there's a conflict over which library gets to use the $ shortcut. http://docs.jquery.com/Using_jQuery_with_Other_Libraries has some techniques which may help resolve the conflict.. -- stuart On Tue, Sep 9, 2008 at 9:28 PM, d

[jQuery] jQuery.post muti-threaded

2008-09-09 Thread DLCramer
Hi There, I have a problem that I cant seem to get around. If i make a jQuery.post request to process.php and that that page gets an infinate loop, the request just sits waiting until the script times out. Now while its waiting for the timeout, no other jQuery.post requests will complete until

[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. > > Ald

[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: Tues

[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 Requir

[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 l

[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: 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=gst&q=superfish#3f1a6ff2d1a2fdb2

[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: Click here for more info do something blah blah blah... $("#toggle").toggle( function () { $("#info").show(); }, fu

[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=gst&q=superfish#3f1a6ff2d1a2fdb2 It isn't solved yet but we maybe can combine our discussion if it is what

[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: 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: 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:2

[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 dep

[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 s

[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] 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: ---8<-

[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: "2

[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 res

[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] 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] 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] 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 br

[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] 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 is

[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 s

[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 h

[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: 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... > http://plugins.jquer

[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 7.0.5

[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: 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 helped me to much. > > best wishes 2 u :) > > sarmad > > > > On Tue, Sep 9, 2008 at 3:24 PM, mbraybrook <[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] 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"). ("td").eq

[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: Why doesn't my prev() work?

2008-09-09 Thread [EMAIL PROTECTED]
I think your attribute selector is malformed. Try: $(document).ready(function() { $('.child').hide(); $("a[name='selected']").prev('.child').show(); }); On Sep 9, 6:43 am, Keir <[EMAIL PROTECTED]> wrote: > Hi, > > I'm sure to a whizz this is goi

[jQuery] View a page in flash

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

[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 file:http://blahblahblah.com/de

[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] 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 d

[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 http://beckel

[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 a

[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.

[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] Expanded Div in which images change on mouseover

2008-09-09 Thread capnhud
I know that on http://www.wilson.com/wilson/home/ index.jsp">this 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 right o

[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 d

What causes hair loss?

2008-09-09 Thread karthik Moonnu
Hair loss can occur as thinning, in which you may not notice hair falling out, or as shedding, in which clumps of hair fall out. Because hair is an important part of appearance, hair loss can also result in loss of self-esteem and feeling unattractive

[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 <[EMA

[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: 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("textarea:f

[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 work.

[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] 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 n

[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 suppor

[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: 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. > >

[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 elements with class="no". I need Superfish don't react to events on the submenu inside this element.

[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: > > $("#ID1

[jQuery] Re: javascript enabled

2008-09-09 Thread Sarmad AL-Saiegh
hi, thanks alot. ur answer was quit good :) the tip about 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, detectin

[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 d

  1   2   >