[jQuery] Re: Superfish - random menu widths

2008-04-17 Thread Joel Birch
Hi Kelly, The JavaScript component of Superfish is only responsible for the showing and hiding behaviour of a menu and whilst a small parts of the Superfish CSS (the hover and sfHover parts) are required to make this happen whilst retaining accessibility when JS is not available, most of it is ju

[jQuery] Re: Superfish Menu Fade-out

2008-04-17 Thread Joel Birch
Thanks Stan, I have created a test page which includes a link to a zip file containing all the related files incase anyone wants to experiment further. I found only one or two things that I had to correct from the code on the page you linked to above - the one I can remember offhand (might be the

[jQuery] Re: WYSIWYG Editor

2008-04-17 Thread Mika Tuupola
On Apr 17, 2008, at 2:59 AM, Donald J Organ IV wrote: Does anyone know of a lightweight(code size) WYSIWYG editor that works with jQuery it needs to only do basic HTML editing. I have good experiences with MarkItUp! http://markitup.jaysalvat.com/home/ -- Mika Tuupola http://www.appelsiini

[jQuery] Re: What do you use?

2008-04-17 Thread Erik Beeson
Java. See also, this thread: http://groups.google.com/group/jquery-en/browse_thread/thread/ce0ddf8919cb9334/2613d125f737387d --Erik On Wed, Apr 16, 2008 at 4:31 AM, Chalkers <[EMAIL PROTECTED]> wrote: > > Hi jQueryers, > > I am curious what people use as on the server side with jQuery? > > PHP,

[jQuery] Re: What do you use?

2008-04-17 Thread MorningZ
ASP.NET 2.0 here, along with a few helpful add ons to help me with jQuery: - Wilco Bauwer's "ID Override" (http://www.wilcob.com/Wilco/Toolbox/ WilcoWeb.aspx) which keeps MasterPages and UserControls from messing with the control IDs and - Jason Newton's Json.NET library (http://james.newtonkin

[jQuery] Re: Selector: All links with HREF but not ones that start with #

2008-04-17 Thread Ariel Flesler
You can use $('a[href]:not([hash])') but that leaves href="#" in. -- Ariel Flesler http://flesler.blogspot.com On 17 abr, 19:22, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Sorry answered my own question. Whipped up a > demo.http://www.commadot.com/jquery/notSelector.php > >  $("a[href]:not([href

[jQuery] Select multiple elements with "almost" same id

2008-04-17 Thread Zlochko
Hallo everyone. My name is Gjoko Pargo. I am a new member of this group, in fact - this is my first message here. I work mainly as a web applications developer and have extensive experience in php, asp, coldfusion, javascript and several types of databases. Although I do have some pretty good expe

[jQuery] Re: Does *every* event bubble up?

2008-04-17 Thread Collin Allen
That was all extremely useful and informative :-) Exactly what I needed to know. Thanks!

[jQuery] Re: flicking screen on fade in FF Mac

2008-04-17 Thread David McFarland
On Apr 17, 2008, at 1:08 PM, Richard W wrote: > > Hi There > I was wondering if anyone else has noticed or experience the weird > effect that fade has on the screen when viewed in FF on a mac > (leopard). In safari and opera, even IE run under parallels, there is > no screen flicker. > When the f

[jQuery] Re: animation hover(over,out) + click to make static

2008-04-17 Thread Dilu
figured it out! i opened a new thread for a different issue the other night. On Apr 15, 4:04 pm, Dilu <[EMAIL PROTECTED]> wrote: > i think this is fairly simple for an experienced programmer to solve, > but i can't, as i'm a newbie to javascript. > > here's the link to what i'm working > on:http

[jQuery] Multiple forms, validation plugin

2008-04-17 Thread Paul Collins
Hi all, I have slowly put together a script to replace the input button with an image, using Jquery. Basically, the image is added as a CSS class; the Jquery replaces the input with a HREF. I have used this in conjunction with the validaition plugin, it works great with a single form, but I woul

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread Rick Faircloth
Are you saying that coming to the page straight from the URL or after refreshing that the page falls apart, but getting to a page via the menu makes the page line up properly? Thanks for the screen shots! Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTEC

[jQuery] Re: Selector: All links with HREF but not ones that start with #

2008-04-17 Thread Glen Lipka
Sorry answered my own question. Whipped up a demo. http://www.commadot.com/jquery/notSelector.php $("a[href]:not([href^=#])") Glen On Thu, Apr 17, 2008 at 3:01 PM, Glen Lipka <[EMAIL PROTECTED]> wrote: > Want to select: but not > > Would that be this? > $("a[href]:not([href^='#'])") > > Than

[jQuery] Selector: All links with HREF but not ones that start with #

2008-04-17 Thread Glen Lipka
Want to select: but not Would that be this? $("a[href]:not([href^='#'])") Thanks for the help. Glen

[jQuery] Re: Does *every* event bubble up?

2008-04-17 Thread Ariel Flesler
> Do you happen to know which events don't bubble up? I recently jQuery's FAQ, specifically about this: http://tinyurl.com/4z5ksl I included a link that reads "events that bubble". Note that some events do bubble on W3C browsers, but not on MSIE. I recommend you to follow that link, before readin

[jQuery] Re: $ is not defined error

2008-04-17 Thread Christoph Haas
On Donnerstag, 17. April 2008, dustinl wrote: > I get this error in the Firefox error console: "$ is not defined" and > it points me to line > > $(document).ready( function() { > > I have the most up to date jQuery and I am pointing it to the correct > location but I can't figure out why I get this

[jQuery] Re: $ is not defined error

2008-04-17 Thread David McFarland
On Apr 17, 2008, at 2:07 PM, dustinl wrote: > > I get this error in the Firefox error console: "$ is not defined" and > it points me to line > > $(document).ready( function() { > > I have the most up to date jQuery and I am pointing it to the correct > location but I can't figure out why I get th

[jQuery] Re: $ is not defined error

2008-04-17 Thread internetoutfitters
If you're certain your path is correct, another possibility may be that you're calling $ before you've included the jQuery lib. If that still doesn't do it, I'd take a look at your path again. On Apr 17, 3:07 pm, dustinl <[EMAIL PROTECTED]> wrote: > I get this error in the Firefox error console:

[jQuery] $ is not defined error

2008-04-17 Thread dustinl
I get this error in the Firefox error console: "$ is not defined" and it points me to line $(document).ready( function() { I have the most up to date jQuery and I am pointing it to the correct location but I can't figure out why I get this error. Anybody else experience this?

[jQuery] Re: Does *every* event bubble up?

2008-04-17 Thread Collin Allen
> > does jquery.delegate.js make every event bubble up to the > > watched ancestor? > > Nope. Do you happen to know which events don't bubble up? > > why would one use something like LiveQuery > > over a solution like delegate? > > Event delegation introduces some weak points that one needs to >

[jQuery] Re: Superfish Menu Fade-out

2008-04-17 Thread Stan Lemon
Just to follow up, I've documented my hack here: http://stanlemon.net/index/articles/hiding-a-superfish-menu.html Right now I've not seen any break down in other browsers, even with sub menus. Only issue I've seen is a closing animation to height the hide flickers a bit in IE - adding opacity hi

jquery-en@googlegroups.com

2008-04-17 Thread Dmitry Bykadorov
Hello all! I have some funny things with jquery. In developing my first application was confronted with such a problem: $.ajax () incorrectly works in IE6 and IE7. Example 1. jquery.autocomplete plugin. FF, Opera, Safari - all is well. In IE request sent to the server returns the data (text / p

[jQuery] Dragging out of iframe

2008-04-17 Thread Adam
I am really trying to figure out how to drag an item out from an iframe and into another element (a textarea in this example). I know it can be done with Prototype, but I do not have the ability to translate. Could anyone help with this task? I think it would make for a great plugin anyway. Here

[jQuery] Re: Quick AJAX question

2008-04-17 Thread Josh Nathanson
You may need to set cache = false in your ajax call. To do this, you'll have to use the base $.ajax function rather than $.get, like so: $.ajax({ cache: false, success: function() { // callback here }, // other options }); -- Josh - Original Message - From: "kwikgoal" <

[jQuery] flicking screen on fade in FF Mac

2008-04-17 Thread Richard W
Hi There I was wondering if anyone else has noticed or experience the weird effect that fade has on the screen when viewed in FF on a mac (leopard). In safari and opera, even IE run under parallels, there is no screen flicker. When the fade is occuring, some colours, even the font changes slighty,

[jQuery] Superfish - first two tiers horizontal, third vertical

2008-04-17 Thread Drew
Hi, Using a menu like this - http://users.tpg.com.au/j_birch/plugins/superfish/richard-willis-example/ - is it possible to have the 2nd tier of horizontal links appear by default, without hovering over the top level link, depending on what page you are on? Ideally, depending on what page you we

[jQuery] Re: IE XML Parsing problem - newb

2008-04-17 Thread nmadg
Do I need to add an ActiveXObject. I thought one of the great things about JQuery was you don't need to do browser specific stuff? On Apr 17, 3:43 pm, nmadg <[EMAIL PROTECTED]> wrote: > I swear I'm not blind, I believe I have an original problem. I've been > stuck on it for hours. PLEASE HELP!

[jQuery] IE XML Parsing problem - newb

2008-04-17 Thread nmadg
I swear I'm not blind, I believe I have an original problem. I've been stuck on it for hours. PLEASE HELP! My code works perfectly in FF and Safari on both PC and Mac. I am NOT using the meta plugin. The only other code i'm using is the YUI Grid CSS. Please advise and I will be forever indebte

[jQuery] Superfish - random menu widths

2008-04-17 Thread internetoutfitters
Wondering if there are any examples of a horizontal menu with vertical drops done with Superfish that have menus of varying width. Looks like the widths are all fixed in the stylesheet, and the application I was considering using this on requires them to be different for each drop down. I was thi

[jQuery] Re: Somebody know a plugin like a Yahoo UI Datable?

2008-04-17 Thread Alexsandro_xpt
Really, I saw the JS files and it has more than 100kb May be they are precursor to the ExtJS. And this is very bad because the JS files is largers. But I don't know what I do, may I will use YUI + jQuery together. You can see, I using Table Sort 2.0, but I not happy. I think table sort 2.0 is a

[jQuery] Re: Problem with using hasClass() within .each()

2008-04-17 Thread cmvonner
Thank you to Josh for helping me resolve this. After getting this working, I found that I need to approach this a different way. Is there any way to access the tablesorter configuration of the table in question? When I examine the DOM of the table in Firebug, I can see the "config" object, and

[jQuery] Re: Problem with using hasClass() within .each()

2008-04-17 Thread Carl Von Stetten
Josh, Thanks a million. Can't believe I missed that. It's working great now. Carl Josh Nathanson wrote: > > Carl -- Javascript is case-sensitive, so you have to use hasClass > rather than hasclass each time you call it. > > -- Josh > > > - Original Message - From: "Carl Von Stetten"

[jQuery] Quick AJAX question

2008-04-17 Thread kwikgoal
I have a select box that is loading some data depending on what was selected. I am just trying to find out why when I use any of the JQuery get functions, it will run the first time the value is selected from the select box, but then not run again. It seems to cache the result of the AJAX call s

[jQuery] Re: jCarousel infinite loop problem w/ multiple carousels on display: none

2008-04-17 Thread jack
I was having a problem across all browsers, with both vertical and horizontal carousels, where upon resizing the browser window, no more new items would be visible in the carousel, something like a miscalculation of height or width following the resize/reload. Whatever the specific cause, the end

[jQuery] Re: jqModal + Form plugin - Page is reloading in Firefox on form submit, IE works perfect

2008-04-17 Thread Naveen
On Apr 17, 1:00 am, Christoph Haas <[EMAIL PROTECTED]> wrote: > On Dienstag, 15. April 2008, Naveen wrote: > > > > > I've tried a million workarounds for this, but it just doesn't seem to > > work in Firefox! I fire up a jqModal login box which is calling a > > separate html page, which connects

[jQuery] Re: Does *every* event bubble up?

2008-04-17 Thread Ariel Flesler
> does jquery.delegate.js make every event bubble up to the > watched ancestor? Nope. > why would one use something like LiveQuery > over a solution like delegate? Event delegation introduces some weak points that one needs to overcome. LiveQuery should work reliably without requiring any speci

[jQuery] Re: Somebody know a plugin like a Yahoo UI Datable?

2008-04-17 Thread Steve Blades
I may be wrong, but I believe that the YUI DataTable was originally the precursor to the Grid components in ExtJS. I have seen some very nice grids in JQuery, but none quite as nice (or complete) as those in ExtJS. On Thu, Apr 17, 2008 at 11:56 AM, Alexsandro_xpt <[EMAIL PROTECTED]> wrote: > > I'

[jQuery] [Delegate] Does *every* event bubble up?

2008-04-17 Thread Collin Allen
When run, does jquery.delegate.js make every event bubble up to the watched ancestor? If so, why would one use something like LiveQuery over a solution like delegate? So far, I've only tested onclick and onchange with delegate, but it's proving to be quite slick. I ask because I'm developing a

[jQuery] Re: What do you use?

2008-04-17 Thread Christoph Haas
On Mittwoch, 16. April 2008, Chalkers wrote: > I am curious what people use as on the server side with jQuery? Pylons (pylonshq.com). PHP is a no-go for me. Christoph (who wonders how long this thread will become) -- When you do things right people won't be sure you've done anything at all.

[jQuery] Re: Problem with using hasClass() within .each()

2008-04-17 Thread Josh Nathanson
Carl -- Javascript is case-sensitive, so you have to use hasClass rather than hasclass each time you call it. -- Josh - Original Message - From: "Carl Von Stetten" <[EMAIL PROTECTED]> To: Sent: Wednesday, April 16, 2008 5:38 PM Subject: [jQuery] Problem with using hasClass() withi

[jQuery] Re: Targeting nested items by class name

2008-04-17 Thread Bernhard Mager
For the first you should close the -Tags correctly with : content here content here content here $('div.car div') gives you the three div-Elements inside . With $('div.car div').click(function(event){ alert(this.className); }) you bind a function to the click event of every enclose div

[jQuery] Re: need help escaping cookie for user initiated click

2008-04-17 Thread somnamblst
This may not be the most elegant solution but I thought if I duplicate sbTrigger as sbTrigger2 and then repeat my function I can circumvent the cookie preventing a user-initiated 2nd slide. On Apr 16, 1:43 pm, somnamblst <[EMAIL PROTECTED]> wrote: > I have a cap frequency cookie  capping the slid

[jQuery] Re: What do you use?

2008-04-17 Thread Richard Weeks
ASP.NET 2.0 with (usually) Umbraco CMS running on top. jQuery is client-side, right? Or am I missing something of momentous importance? :) Also on the client side I use bits of the Yahoo User Interface Library (YUI), mainly reset-fonts-grids. That stops me having to care about bloody 3 column ce

[jQuery] Re: Plugin and child plugins

2008-04-17 Thread Ariel Flesler
Hi I'd just use unique names. Or one method with commands, like jQuery UI. I have one plugin, with 2 (or 3) child plugins. Each one takes one name from jQuery.fn. -- Ariel Flesler http://flesler.blogspot.com On 16 abr, 13:02, oravecz <[EMAIL PROTECTED]> wrote: > As I'm developing a plugin, I'm

[jQuery] Re: Adding class pager slideshow

2008-04-17 Thread Ariel Flesler
Inside the onBefore, add: $('div.carousel_counter_nav li').removeClass('active').eq(pos).addClass('active'); You can use any class, 'active' is just an example. Cheers -- Ariel Flesler http://flesler.blogspot.com On 17 abr, 08:56, IschaGast <[EMAIL PROTECTED]> wrote: > Example file:http://isc

[jQuery] Re: How to pass mouse events around in a document?

2008-04-17 Thread GaryM
Doug, I looked at source codes for clickmenu & contextmenu to figure out the same thing, and the below variation works for me. 1) Add this to your openMe function: $(document.body).mousedown(function(e){ if ($(e.target).parents("#mymenu").length == 0) closeMe();

[jQuery] Re: Targeting nested items by class name

2008-04-17 Thread Ariel Flesler
$('div.car div'); You should add the tagname if possible, it makes it MUCH faster. Use $('div.car > div'); if the divs need to be exactly (one level) below div.car. Please... do check the docs, it's faster for everyone: http://docs.jquery.com/Selectors Ciao -- Ariel Flesler http://flesler.blo

[jQuery] Re: Error using jQuery multifile plugins

2008-04-17 Thread chris
Additional info. What I meant by multiple is jQuery multiple file upload plugin ( http://www.fyneworks.com/jquery/multiple-file-upload/ ) On Apr 17, 6:20 pm, chris <[EMAIL PROTECTED]> wrote: > Hi all, > >I'm using jQuery and jQuery multifile plugins. If I put the page as > second page ( n

[jQuery] Re: email plugin

2008-04-17 Thread Ariel Flesler
> Besides the above reasons I believe there are two more, 1. Learning > and Experimenting, 2. A desire to give back. I totally agree with you ( I want to make it clear :) ). I love doing +submitting plugins (kinda stopped now), it's really a great feeling. > In addition, sometimes when we're loo

[jQuery] Re: email plugin

2008-04-17 Thread mdrisser
I don't mind your opinion at all, that's why I posted and asked for comments :-) I don't remember exactly why I do so much concatenation, I was actually thinking about that last night :-) that's something I'm going to fix. To be honest with you, I never really gave any thought to non-JS users, w

[jQuery] Re: Drupal 5.x jQuery Tools Tips Fails in Mozilla

2008-04-17 Thread rbottoms
Update: Seems nested Div tags were the culprit, though that is an issue itself. Any know problems about enabling the Tool Tips module inside DIV's?

[jQuery] Re: Superfish menu firefox cut down problem

2008-04-17 Thread Joel Birch
Hi Antreas, It seems that your problem is due to overflow:hidden on your #wrapper element. As the menu is inside that element, and you want it to be visible outside it's bounds, you will have to remove overflow:hidden. I notice your layout sort of relies on that property though - looks like you m

[jQuery] Re: Superfish menu firefox cut down problem

2008-04-17 Thread Giuliano Marcangelo
#wrapper {overflow:hidden} is causing your problem.. On 16/04/2008, antreas <[EMAIL PROTECTED]> wrote: > > > Hi all, > i have an issue with the superfish menu system. I used it on this page > http://www.smallhotelsingreece.com, and while hovering over "my > favourite places to

[jQuery] Drupal 5.x jQuery Tools Tips Fails in Mozilla

2008-04-17 Thread rbottoms
I have installed the jQuery Tooltips module in Drupal 5.x and I am getting the following error in my page:

[jQuery] Re: clone() not maintaining "checked" state of cloned checkbox inputs

2008-04-17 Thread Dan G. Switzer, II
Jim, >I'm using the following code to get all selected checkboxes from my >html page and copy them into the form I'm about to submit: > >$ >("[EMAIL >PROTECTED]'BatchItem']:checked").clone().appendTo("#checkboxContainer") >; > >I'm pretty certain that with previous versions of jquery (specifical

[jQuery] Re: triggering clueTip with inline javascript

2008-04-17 Thread Karl Swedberg
that's great news! really glad you figured it out. I feel bad that I wasn't able to help you with it, but my free time has been close to zero lately. I appreciate your being understanding about that, too. Cheers, --Karl _ Karl Swedberg www.englishrules.com www.learningjque

[jQuery] Re: Superfish with top-level background images - 2nd level hover not completely working

2008-04-17 Thread Joel Birch
Firebug shows that your menu items are filling the width of your ul.nav element. This means that when you mouse down through the nested submenu items your hover state is interrupted by the next main menu item (even though you can't see it), causing the link's hover never to trigger and the submenu

[jQuery] Re: CSS Design consideration

2008-04-17 Thread mdrisser
Use CSS to handle the overall style of your pages, the look and feel, and the layout and attach those styles to the HTML elements, either through IDs or classes or both. Use jQuery to add additional functionality to your pages, but keep as much of the styling as possible within the CSS file(s). T

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread Rick Faircloth
Thanks, Mike... Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike > Nichols > Sent: Wednesday, April 16, 2008 8:18 PM > To: jQuery (English) > Subject: [jQuery] Re: Anyone have trouble viewing this site on Vista? > > > looks fine

[jQuery] bug tracker error

2008-04-17 Thread PragueExpat
anyone getting this error when trying to open a bug report? http://dev.jquery.com/report/19 Trac detected an internal error: IntegrityError: (1062, "Duplicate entry '690bd2f84578796-0-0' for key 1")

[jQuery] A beautiful accessible slider

2008-04-17 Thread Matthieu BARBE
Hi, Look this script : http://www.filamentgroup.com/lab/developing_an_accessible_slider/ It's a nice slider but it runs with an older version of the jquery and the interface library :(

[jQuery] Targeting nested items by class name

2008-04-17 Thread cloudsteph
Is there a way of targeting nested elements by class name? In the example below, I want to be able to attach a "click" event to all divs with ".car" class applied and then control the children within the ".car" div that is clicked. None of the children can have unique IDs unfortunately. Any idea

[jQuery] pass multiple form fields to the $.ajaxFileUpload fileElementId

2008-04-17 Thread Chris Davies
Hi, I am trying to pass multiple form fields to the ajax_fileUpload.cfm page with no success. Is it possible to send a list of form ID's as I am trying below? $.ajaxFileUpload ( { url:'ajax_fileUpload.cfm', secureuri:false, fileE

[jQuery] Re: WYSIWYG Editor

2008-04-17 Thread Richard D. Worth
Take a look at jWysiwyg: http://code.google.com/p/jwysiwyg/ - Richard On Wed, Apr 16, 2008 at 7:59 PM, Donald J Organ IV <[EMAIL PROTECTED]> wrote: > Does anyone know of a lightweight(code size) WYSIWYG editor that works > with jQuery it needs to only do basic HTML editing. > > Insert links >

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread Rick Faircloth
Thanks for the feedback, Chris. I think the primary reason for the slowness of the sight's loading is the images involved. It's fairly heavy on the image side. Plus, it's loading a lot of jQuery. But, the images are what the client wanted... A screenshot in Opera 9 would be welcome, if you do

[jQuery] [Validation] Validate differently based on different action

2008-04-17 Thread Jacky See
Hi all, I think this is a rather rare situation but it happens in our apps all the time. The layout is like --- Search Result [checkbox] status [input text] [input text] [textarea] [Delete button] [Reject Button] [Update Button] There are different case of validation: - when

[jQuery] Re: jqGrid 3.1 version

2008-04-17 Thread matt.payne
Is there a supported way of hyperlinking data? I would like to click into a sub page using an id of one of the columns. Seems like like support for this should be built in. Just curious, Matt Tony-109 wrote: > > > Hi all, > A new version of jqGrid is out. This is a bug fix release, but in

[jQuery] Re: WYSIWYG Editor

2008-04-17 Thread Andy Matthews
TinyMCE works really well. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Donald J Organ IV Sent: Wednesday, April 16, 2008 6:59 PM To: jquery-en@googlegroups.com Subject: [jQuery] WYSIWYG Editor Does anyone know of a lightweight(code size) WYSIWYG editor that

[jQuery] Re: copying from one select box or combobox to another.

2008-04-17 Thread millitheKidd
Hi Seth, well I played around with your example above but still couldn't get it to work. I also found some code below on texotela's site, so I might be able to come up with something using your code and some code from this site. http://www.texotela.co.uk/code/jquery/select/ Anyway, thanks a mill

[jQuery] Re: triggering clueTip with inline javascript

2008-04-17 Thread az
Good news everyone! I solved the mystery of the missing waitImage. I'm in so deep that I'm not sure if this will ever be relevant to anyone else, but I'll post it for the sake of completeness. Background: I had too many clueTips on my page to bind them the normal jQuery way (when the page load

[jQuery] [treeview] Mix of sync and asynced tree.

2008-04-17 Thread dbruensicke
Hi, i am using Jörns TreeView Plugin (http://bassistance.de/jquery-plugins/ jquery-plugin-treeview/). I try to use the async version of it, because i need lazy loading (more than 9000 elements) but i want to render the starting with the following elements: root + folder one + folder two - curre

[jQuery] Error using jQuery multifile plugins

2008-04-17 Thread chris
Hi all, I'm using jQuery and jQuery multifile plugins. If I put the page as second page ( not the first one to load, i.e., this page loaded after someone click a hyperlink on the first page ), it works. But if I put as the first page, the javascript generates error. Did anyone has this experie

[jQuery] Adding class pager slideshow

2008-04-17 Thread IschaGast
Example file: http://ischagast.nl/jquery/carousel.html In the example file you see a slideshow of news items where you can navigate with the arrows. I wanted too add some extra features and that's the pager option on the bottom right. That features works great but now I also want that when news i

[jQuery] Error-Message: is not a function

2008-04-17 Thread Sen
I've been thinking the last two hours about this problem: The following function is part of a form validation script. The targeted selects contain a name attribute like "accomodation[1]" or "accomodation[2]". I neet the number within the brackets. The alert- function is just for testing and will b

[jQuery] Re: Wait for Fade event to complete before initiating next action

2008-04-17 Thread Iminay
Thanks for your replies guys, Worked like a charm :) On Apr 15, 11:28 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Dennis, > > Yes, use the callback function. > > $(document).ready(function(){ >         $("#menu li").click(function(){ >                 $(this).fadeTo(1000, 0, function() { >

[jQuery] Re: jqModal + Form plugin - Page is reloading in Firefox on form submit, IE works perfect

2008-04-17 Thread Ken Gregg
I ran into a similar problem including jquery in a page loaded into an iframe in thickbox. Had to do with the iframe not being visible when the page loaded. This may be a similar case. Here is my thickbox fix: http://groups.google.com/group/jquery-en/browse_thread/thread/39b126236d6781df/683c68ae

[jQuery] [Tooltip] How to implement an fadeIn and fadeout?

2008-04-17 Thread [EMAIL PROTECTED]
Hi! I use the tooltip from here: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ I use Jquery 1.2.3 and wish to know how to implement an fadeIn and fadeOut into it. I use this code: //

[jQuery] Any idea how can this be achieved

2008-04-17 Thread dizarter
Hello everybody :) Please check out this page http://www.wacom.com/bambootablet/bamboo.cfm Click on the image "BAMBOO PHOTO GALLERY" on the right side. Nice thingy! I can see it's thickbox, along with jQuery easing... But how can I apply this feature? Thanks

[jQuery] Tablesorter plugin question

2008-04-17 Thread Mark Quezada
First of all, this is a great plugin, many thanks! I have a bit of a specific implementation that I can't figure out. I have a table working and sorting correctly with the plugin, but because of a design decision, I have to allow the table body to scroll while the table headers remain fixed... an

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread Mike Nichols
looks fine on my machine On Apr 16, 12:02 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > Hi, all.. > > I was attempting to demo this site and show off > the Cycle plug-in to a prospective client, but the > Cycle plug-in was acting very strangly... flickering, not > showing images, etc. > > The

[jQuery] Problem with using hasClass() within .each()

2008-04-17 Thread Carl Von Stetten
Using jQuery 1.2.3 Firefox 2.0.0.14 I am trying to loop through the headers of a tablesorter table and find out which columns are being sorted which way. I'm building an array of arrays that can be fed into the tablesorter.trigger function to resort the table after changes are made to the DOM

[jQuery] conflict

2008-04-17 Thread fib
Hi I am getting into jquery and quite excited issue I am using 2 plugins and can only get one to work at a time I am sure this is a simple issue and it is just a colon or some such but I am stuck I have tried putting the 2 pieces of script together and I have tried adding the 2 plugin scripts to

[jQuery] WYSIWYG Editor

2008-04-17 Thread Donald J Organ IV
Does anyone know of a lightweight(code size) WYSIWYG editor that works with jQuery it needs to only do basic HTML editing. Insert links bullets images from a given path and formating of text.

[jQuery] Re: HOWTO: Nested hover

2008-04-17 Thread Hamish Campbell
You could reapply the effect with mousemove. On Apr 17, 4:46 am, weepy <[EMAIL PROTECTED]> wrote: > Hi > > I have a div with other divs nested inside it (these may have further > divs nested inside). I want to provide a hover effect when each is > hovered upon. > > The trouble I have is that upon

[jQuery] Re: Do I need Livequery?

2008-04-17 Thread ripple
Huh? I don't get your code? What is this? $( '.showlayer' ).click( function () { $( '#div1 ).fadeIn( 750 ); } #div1 = href ?? #div1 is id http://2whoa.com/dominate/ "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: Hello there :) I've got a bi

[jQuery] Re: Jquery, AJAX and MySQL update

2008-04-17 Thread cjant83
Hi Scott (and others), Thanks for all the posts and help ! It actually did make some sense in the end :). The success message was based on AJAX success function, so that was part of the confusion. It was giving me a success message but not actually doing anything. Changing 'serial.hash' to be 's

[jQuery] Re: Do I need Livequery?

2008-04-17 Thread David McFarland
On Apr 16, 2008, at 5:25 PM, [EMAIL PROTECTED] wrote: > > Hello there :) > > I've got a bit stuck. I suspect this is a job for Livequery, but can't > understand how to use it (sorry, Ariel). > > With this: > $( '.showlayer' ).click( function () { > $( '#div1 ).fadeIn( 750 ); > > I'm trying

[jQuery] Error-Message: is not a function

2008-04-17 Thread Sen
Hi, I've been thinking the last two hours about this problem: The following function is part of a form validation script. The targeted selects contain a name attribute like "accomodation[1]" or "accomodation[2]". I neet the number within the brackets. The alert- function is just for testing and w

[jQuery] Expand one, collapse the rest

2008-04-17 Thread Dilu
I'm working on a navigation bar using jquery for my first time ever! Up until the last hour of coding, I had been achieving all my desired effects for hover and onclick. I didn't foresee this problem I've just run into although I should have and I can't figure out what I have to do to get out of

[jQuery] Tablesorter plugin question

2008-04-17 Thread Mark Quezada
First of all, this is a great plugin, many thanks! I have a bit of a specific implementation that I can't figure out. I have a table working and sorting correctly with the plugin, but because of a design decision, I have to allow the table body to scroll while the table headers remain fixed.

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-17 Thread cjant83
Hi Rick, I have a Vista laptop (unfortunately) with Sp1. The crossfade and web site seems to be working fine with IE7, Firefox 2(.0.0.13), but problems with Opera 9. I experience the weird slow downloading of images under the menu, but also underneath that big image the body is aligned to the lef

[jQuery] CSS Design consideration

2008-04-17 Thread JFrameworks.com
Hi, I have moderate experience with CSS, HTML & JScript. I have task of making for HTML Pages using CSS and JQuery. Those pages will be further extended, copied to full fledged system. I am thinking of two patterns for html pages 1. Define only class selectors in CSS and use JQuery to attach tho

[jQuery] Regarding some effects created on the joost.com website.

2008-04-17 Thread newttyy
Hello there, I'm a designer and I have to admit coding is not really my strength. I recently found the joost.com website and I'm really impressed by their feature box ... that is not a flash. I will be able to re-create the same thing in flash, but as far as I see is only JavaScript. I understan

[jQuery] [validate] - IE6 Issue

2008-04-17 Thread Up-Works
$('form#order').validate(); $('input#step2').livequery('click',function() { if($('form#order').valid()) { $('div#stepOne').hide(); $('div.step').html('StepTwo'); $('div#stepTwo').show();

[jQuery] Re: copying from one select box or combobox to another.

2008-04-17 Thread millitheKidd
Hi Seth and thanks for your reply and code. I played around with it but unfortunately I still couldn't get it to work with telerik's radcombobox. I'll keep messing with it though. Once again, I do appreciate your input and code. milli...

[jQuery] DataTables plugin

2008-04-17 Thread theallan
Hello all, I've recently being trying out jQuery for the first time and it has been absolutely outstanding. I'm currently working on a project that needs tables with filter, pagination, sorting etc, and I found that no one plugin does all of this, so I thought it would be interesting to try and

[jQuery] anonymous callbacks and memory

2008-04-17 Thread Eric
Hi, I was wondering about the performance/memory consumption of something like the following: $("div").each(function() { $(this).bind('click', function() { alert('clicked'); }); }); I'm creating an anonymous function for every div element rather than passing a generi

[jQuery] Superfish with top-level background images - 2nd level hover not completely working

2008-04-17 Thread waldo-web
almost have Superfish working but running in to problems with the 2nd level drop-down. development link is here http://cmswebsolutions2.com/surefoot/careers.php. i only have a 2nd level list under the "services" tab. the menu flies out but i can't hover down the list - only the first href tag s

[jQuery] jQuery.extend and prototype inheritance?

2008-04-17 Thread edwardbaafi
Hi All, Sorry if this is my second post but I have no idea if my first post went through.. Plus I have additional info/questions: So I'm trying to wrap jQuery/DOM elements with custom methods.. I've looked around and people claim you can use jQuery.extend (the one documented under utilities not

[jQuery] Re: Cutting load time with jQuery plugins

2008-04-17 Thread Ariel
Check out Yslow (http://developer.yahoo.com/yslow/). I find it VERY useful when trimming the load time. --Ariel On Apr 14, 9:30 pm, Jimmy Gambier <[EMAIL PROTECTED]> wrote: > Hi, > > Our site is mainly a jQuery shop, with lots of JavaScript > goodness:http://www.freeidentityprotect.com. > > We'

  1   2   >