Re: [jQuery] Re: Generating a CSV of values from a bunch of Checkboxes with same id

2010-01-10 Thread Md. Ali Ahsan Rana
$(this).attr('title') -- http://ranacseruet.blogspot.com/ On Mon, Jan 11, 2010 at 11:58 AM, swfobject_fan wrote: > Peter, > > The $(this).getAttribute didn't work for me in any browser. > > I changed it to this: > checkedGenres.push(this.getAttribute('title')); > > But is this a standard meth

[jQuery] Re: Generating a CSV of values from a bunch of Checkboxes with same id

2010-01-10 Thread swfobject_fan
Peter, The $(this).getAttribute didn't work for me in any browser. I changed it to this: checkedGenres.push(this.getAttribute('title')); But is this a standard method? Safer? -guru On 9 Jan, 20:30, Peter Edwards wrote: > You could use the title attribute rather than your non-standard txt > at

Re: [jQuery] jquery.stylish-select.js - problem in Internet Explorer

2010-01-10 Thread Richard D. Worth
My guess is the field you are calling the plugin on also has an ASP.Net validator on it. When the plugin triggers the change event to notify the form element that the user changed the value, the ASP.Net validator receives the event with the wrong target. See http://dev.jqueryui.com/ticket/4071 Th

[jQuery] Re: SimpleModal (probably something really stupid)

2010-01-10 Thread polarwarp
For anyone interested - my issue was trying to integrate this stuff into .net with an updatepanel thrown into the mix. The javascript wasn't actually being called as expected and I'd accidentally done a pnl.visible = true which is why I thought it was working. So yeah that's why the sample didn't

[jQuery] Using cluetip with image maps and area element

2010-01-10 Thread Khiet
Hi, I am trying to use an image map with cluetip. Everything seems to work as expected on IE 8, but the tooltip refuses to display on all other browsers (Firefox, Chrome) I am not a Javascript expert, could someone help out and point me to the right direction? I also tried the plugin "stickytoolti

[jQuery] jcarousel issues

2010-01-10 Thread RoxAnne
Hi! I'm RoxAnne and a total newb to jQuery. I'm trying to make a carousel with two slides. The code is supposed to loop them so at the second slide, the next button takes you back to the first. When I open it up to test, I see the first slide in its place and then the second slide out to the righ

[jQuery] Re: Superfish

2010-01-10 Thread brixbrax
Add this to your flash code: On Jan 10, 4:44 am, JW wrote: > Alright, so I have a Superfish menu with a rotating flash banner > rotator.  When I highlight over my menu item that has sub items, it > goes behind the flash instead over top of it.  Is there a way to > correct this issue?

[jQuery] Easy way to do this in jQuery?

2010-01-10 Thread Nick Le Mouton
Hi everyone, I've just started using jQuery and so far I'm impressed with the power and simplicity of it. At the moment I'm looking for a better way to do the shape dropdown selector on http://www.drugs.com/imprints.php. It's currently done with a bit of ddrive and some custom code, but I'd rathe

[jQuery] Superfish IE6 dies with opacity CSS attribute

2010-01-10 Thread cubefree
I have experimented in a variety of ways, and when I use the opacity CSS attribute, it kills the next level of the menu in IE6, FF as always no prob. Thus, when I had the CSS opacity code to , does not appear. If I add it to , then the second level ( ) does not appear. The menu's next level does

[jQuery] Re: Superfish

2010-01-10 Thread Adrian Lynch
This is a problem that goes back a while. The same problem happened with select drop downs appearing above divs etc. Haven't had to deal with this in a while so no straight answer for you, but z-index and/or wmode of the flash might be the way forward. Out of interest, what browers? Adrian On J

[jQuery] Re: Optimized jQuery

2010-01-10 Thread Adrian Lynch
I get a bad feeling when I'm asked to go to a site using IE! Anyone had a look? Adrian On Jan 10, 3:41 am, Legostrat wrote: > Hey, > > I've got a website in which I've put in some elementary jquery code, > and when tested on internet explorer 8, the animations slow down > exponentially.  I'm re

[jQuery] Re: Validation Plugin

2010-01-10 Thread Adrian Lynch
Got any code to show us? You need an event to fire off the remote call, either onBlur or onClick of a button. You examine the returned data and act accordingly. Adrian On Jan 10, 12:28 pm, Richard Beacroft wrote: > People enter an address to lookup on a google map, this makes an > asynchronous

[jQuery] Re: Making a Sliding Tab Menu

2010-01-10 Thread Šime Vidas
1. Why is your "menu" UL wrapped by a DIV, which is wrapped by a DIV? 2. Why do you have anchors (A) inside the menu items? 3. Why SPANs inside the anchors? Why not just this: News Team Gallery Contact the content for the News tab the content f

[jQuery] Re: Link override problem

2010-01-10 Thread Šime Vidas
Your code is a mess :) To many DIVs/classes, and the jQuery code is really bad... it's hard to watch... I'd like to help but, from what you've supplied it's not possible for me to construct a demo... why don't you put a demo online? Or copy the complete code here?

[jQuery] Re: Selecting a value with up down keys

2010-01-10 Thread Šime Vidas
Actually, this is right... $().keydown(function(e) { var $item = $(".selected"); if (e.keyCode === 40) { // bottom if ($item.next().is("li")) { $item.removeClass("selected").next ().addClass("selected");

[jQuery] Re: Selecting a value with up down keys

2010-01-10 Thread Šime Vidas
The code above is wrong... here: $().keydown(function(e) { var $item = $(".selected").removeClass("selected"); if (e.keyCode === 40) { // bottom if ($item.next().is("li")) { $item.next().addClass("selected");

[jQuery] Re: SimpleModal (probably something really stupid)

2010-01-10 Thread polarwarp
Hi, I was told to use this by our tech lead but given how much time I've spent - I might look at this other one. Thanks :) On Jan 8, 3:27 pm, slmnhq wrote: > Did you look at jQuery UI's dialog plug-in? > > It's very easy to use:http://jqueryui.com/demos/dialog/#modal-message > > Salman > > On J

[jQuery] Re: SimpleModal (probably something really stupid)

2010-01-10 Thread polarwarp
I have looked at the simple example - and whilst that works I do not know why mine doesn't. When I click my link it shows the hidden div underneath the content on the page -and it doesn't operate like a modal dialogue and doesn't apply the overlay. I am not getting any javascript errors and I'm j

Re: [jQuery] [apycom Menu] Submenu items showing as top level items in IE

2010-01-10 Thread brian
W3.org's validator shows 163 errors and 46 warnings. Best you get the page to validate first as this may be caused by invalid/broken markup. On Sun, Jan 10, 2010 at 2:55 PM, speedpac...@gmail.com wrote: > Hi, > > I'm using the (paid) version of Apycom's jQuery menu; you can find it > at http://ap

[jQuery] Re: Superfish License

2010-01-10 Thread decola
if you look into the code of superfish you would see this /* * Superfish v1.4.8 - jQuery menu widget * Copyright (c) 2008 Joel Birch * * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * *

[jQuery] Re: Superfish showing problems in IE7

2010-01-10 Thread decola
1st site ... sry does not the the problems 2nd site 1.) + 2.) maybe this a css problem with the tag "z-index" On 4 Jan., 21:25, "i...@woosh.nl" wrote: > Hello there, > > I am using Superfish for some Joomla websites. I face problems on the > following sites an hope that you can help me out with

[jQuery] Ajax forms help

2010-01-10 Thread Dave Maharaj :: WidePixels.com
I need some help with a form. I submit the form fine, my problem is depending on the success or failure of the form being saved. I will try to explain as simple as possible form is in its own div saved data will appear here So what I need is i guess json success true or false response fro

[jQuery] Re: Superfish Nav-bar Joomla issue

2010-01-10 Thread decola
i can´t really imagine what you mean ... do you have a link for the site ??? or could you just make an image ??? so far decolaimagine On 6 Jan., 18:08, Jason wrote: > I'm using the superfish module for joomla 1.5 all options except Nav- > bar seem to work fine i have a fix menu area width 705px

[jQuery] Re: SUPERFISH - version of jQuery

2010-01-10 Thread decola
superfish comes with an with an own version of jquery. But you can disabel that and use your own version. You maybe just look into the jquery files in the mod dir and check shich version it is. for the rest ... try and error :D so far decola On 7 Jan., 14:54, assur3 wrote: > Joel, > > I forgot

[jQuery] Re: SUPERFISH - submenus not

2010-01-10 Thread decola
this is not an issue its a function :) i have the same problem and fixed it too but i am not sure if you really should release it ... but if you want to you can get an beta version. so far decola On 7 Jan., 14:40, assur3 wrote: > Joel, > > Thanks for a great module. Everything seems to wor

[jQuery] Re: superfish menu problem

2010-01-10 Thread decola
Yes you can you just have to look at the code of the menu ... i will see that the items get some ids like "item54". With this ids and css you can modifie the color of the items yourself. About this option i thought to maybe i will make an own versione with this feature. Would be very happy to kno

[jQuery] Re: Superfish 1.4.8 accessibility enhancement

2010-01-10 Thread decola
Im really wondering where the developer of this project ... anyway i made some enhancements to superfish by myself. Am i allowed to copy and paste your code into my work. Because if the developer of superfish does not answer i will maybe make an own project like "superfish menu enhanced" or so. s

[jQuery] Re: Superfish separator

2010-01-10 Thread decola
If tried css and modified the mod files it could get very tricky. Maybe you just make an image with paint or so and show me where this seperator should go and i maybe could help you. so far decola On 8 Jan., 18:36, eddybaby wrote: > Hi, > > Only found superfish today, and man oh man do I love it

[jQuery] [apycom Menu] Submenu items showing as top level items in IE

2010-01-10 Thread speedpac...@gmail.com
Hi, I'm using the (paid) version of Apycom's jQuery menu; you can find it at http://apycom.com/ and it is looking really good. I have uploaded files, and published it on a test site - www.flexin.be Unfortunately, some of the submenus (starting from the second that has children elements), it adds

Re: [jQuery] Specific type of menu action

2010-01-10 Thread Andrei Eftimie
> here is the site: http://www.webdesignblog.gr/archives/ > > at the top the menu and the way the hover slides from button to > button, thats what I am trying to go for. anyone have any idea what it > is called so I can look for a tutorial or plug in? Its called Lavalamp http://www.gmarwaha.com/bl

[jQuery] jquery.stylish-select.js - problem in Internet Explorer

2010-01-10 Thread Yvan
I'm using Jquery's "Stylish Select" plugin to replace a dropdown box in a form (ie: "Facility Type"): http://www.coverall.com/cnaws/quoterequest.aspx Although it's working fine in both Firefox and Safari, .. I'm having a problem with it in IE 7/8. The first problem that I'm having is that I'm ge

[jQuery] Specific type of menu action

2010-01-10 Thread Glen_H
Hey guys I have been looking for a plug in and/or a name for this type of menu hover effect. Seems like I have seen this all over then as soon as I try to find one to show someone I cant locate it. to this point I haven't been able to describe what i was going for but now I just came across this s

[jQuery] Re: looping through form elements.

2010-01-10 Thread MorningZ
>> $(':input').each(function(idx, item) { >> alert(idx); >> }); > > There are lots of form controls that aren't input elements. They are > all in the form's elements collection. > But the ":input" selector will also get non- elements: http://docs.jquery.com/Selectors/input Overview: Matches

[jQuery] Issue with Colorbox + Cluetip (title not displaying correctly in Colorbox)

2010-01-10 Thread carl
I'm having an issue using both the Colorbox and Cluetip plugins together on a page. Basically what happens is that while Cluetip is displaying fine, when the object is clicked and the Colorbox overlay shows up, only part of the "title" attribute is displaying -- the part before the title separating

Re: [jQuery] Re: XML print all nodes ( html() )

2010-01-10 Thread John Arrowwood
Try it without the clone(). And try it without the '/' after ' wrote: > no go. > > On Jan 9, 10:56 pm, John Arrowwood wrote: > > console.log( $('').append( $(itemsXML).clone() ).html() ) > > > > See if that works. > > > > On Sat, Jan 9, 2010 at 7:27 PM, Shane wrote: > > > Is there a way to prin

[jQuery] Making a Sliding Tab Menu

2010-01-10 Thread Rebelj12a
Ok so im trying to make a sliding tab menu, The menu is already made with animations and such, however now im trying to integrate the menu with the Divs i have for each menu item. Would anyone know of any tutorials that would help accomplish this? I really just need something to start me off.. Bas

[jQuery] Link override problem

2010-01-10 Thread bkosborne
I posted an explanation of my problem on devshed - I think it will be easier to understand there because of the formatting. If this is an issue let me know and I'll post here. http://forums.devshed.com/javascript-development-115/jquery-question-666562.html Thank you

[jQuery] Optimized jQuery

2010-01-10 Thread Legostrat
Hey, I've got a website in which I've put in some elementary jquery code, and when tested on internet explorer 8, the animations slow down exponentially. I'm relatively new to coding, and I read here: http://old.nabble.com/jQuery-too-slow-on-IE!!!-td23504287s27240.html that it could be my code.

[jQuery] Validation Plugin

2010-01-10 Thread Richard Beacroft
People enter an address to lookup on a google map, this makes an asynchronous call and will either return a lat/longitude or not. if not, i want to display an error to the user that an address could not be found. How do I go about this? I've not managed to get it working using the remote attribute

[jQuery] Superfish

2010-01-10 Thread JW
Alright, so I have a Superfish menu with a rotating flash banner rotator. When I highlight over my menu item that has sub items, it goes behind the flash instead over top of it. Is there a way to correct this issue?

[jQuery] Re: Generating a CSV of values from a bunch of Checkboxes with same id

2010-01-10 Thread swfobject_fan
Edward, That's oh I forgot that. Anyways, the .each syntax was what I really wanted. Thanks a bunch. On 9 Jan, 20:30, Peter Edwards wrote: > You could use the title attribute rather than your non-standard txt > attribute, and achieve the same thing using: > > > $(document).ready(function(){ >

[jQuery] Re: Accessing value of a dynamic added input

2010-01-10 Thread -null-
Went back and double checked all the code. You were right about it being some other issue Brian, there was some other jquery removing the form element just before I was trying to get the value from it. Thanks

[jQuery] Re: Jquery UI tabs lockable ?

2010-01-10 Thread Ibatex
Or better yet use the tab enable/disable functionality. .tabs( 'enable' , index ) .tabs( 'disable' , index ) On Jan 8, 5:40 am, URBY wrote: > Hi i was wondering if it would be possible to lock out other tabs so > the user is stuck on one ..until a user hits a button. > > For example an Admin is

Re: [jQuery] Custom animations

2010-01-10 Thread Peter Edwards
Hi there, I've put up a basic example of how you would do this at: http://jsbin.com/ahevu (to edit the code, go to http://jsbin.com/ahevu/edit) I've used mouseenter to demonstrate - if you need a hover effect, then you will need to save the original dimensions/position of the div you are anim