[jQuery] missing background-image

2009-09-13 Thread macsig
Hello guys, I have a series of divs (all with the same CSS class) and I'm trying to add dynamically a background image to each one (each div needs a different image) so here my code $('.panel').css({'background-image' : 'url(../images/sub/'+ $ (this).attr(id) +'.png)'}); but unfortunately my

[jQuery] Re: missing background-image

2009-09-13 Thread Scott Haneda
Look at the network panel in firebugs or activity monitor in Safari. See what URL is being requested for the images. You can then see where there error in your path is. -- Scott Iphone says hello. On Sep 12, 2009, at 11:10 PM, macsig sigbac...@gmail.com wrote: Hello guys, I have a

[jQuery] Re: missing background-image

2009-09-13 Thread Macsig
http://localhost:3000/images/sub/undefined.png but I don't understand why. Thanks On Sep 12, 11:19 pm, Scott Haneda talkli...@newgeo.com wrote: Look at the network panel in firebugs or activity monitor in Safari.   See what URL is being requested for the images. You can then see where  

[jQuery] Re: ui Datepicker - only show days I want

2009-09-13 Thread ryan.j
if you only want to display a small selection of pre-defined dates it'd probably be easier to just write your own little pseudo- datepicker than modify the jquery UI one. unless i'm misunderstanding what you want, essentially you want to append array.length elements to a container you .toggle at

[jQuery] Re: Jquery Modal Dialog

2009-09-13 Thread NM
Hi, Thanks, but I have already tried this way and the issue that I am facing in this is that the whole dialog in which that div is contained is not being able to be dragged and the only portion that i making it draggable is dragged... Footer div is dialog1. Please let me know if I am doing

[jQuery] [Superfish] Dynamic width

2009-09-13 Thread Mnkras
Hey guys im using the superfish jquery works great! im having some trouble getting the widths to be dynamic per column it is a horizontal menu bar i got the parents to be dynamic and the children to be separate from the parent but i havent figured out how to make it so that each column is only

[jQuery] Bizarre error being thrown in my jquery plugin... Seems to be related to regexes...?

2009-09-13 Thread fitzgen
Sorry about the last post, I meant to hit shift and hit return instead and the form was submitted. Sorry about that. Embarrassing... :-/ Anyways, Here is my plugin that the error is getting thrown in:

[jQuery] [autocompleter] how to change the separator from , to +

2009-09-13 Thread James
hey, let me first thank for the great job you've done. could you please tell me how can I change the word separator from , to +? thanks in advance.

[jQuery] Auto Selecting Navigation

2009-09-13 Thread fx
Hello all, and thanks for making this available. I am trying to add a class to my menu for the page it is currently on. I followed this example: http://docs.jquery.com/Tutorials:Auto-Selecting_Navigation But I am not able to make it work at all. Here is my HTML:

[jQuery] Re: $(this).css({color : red})

2009-09-13 Thread fx
http://pastebin.com/m58a02ab3 Works fine on FF 3.5.3 on Windows as well

[jQuery] Looking for jQuery expert

2009-09-13 Thread imsam67
Hi, I'm looking for a jQuery expert to help me with my project. My website is developed in C#/ASP.NET so familiarity w/ ASP.NET would be a huge plus as you'd be also helping me with the integration of the solution. Looks like jQuery Tools has most of the functionality I'm looking for i.e.

[jQuery] (validate), submitHandler and custom function

2009-09-13 Thread bgumbiker
Hello, I am looking for a way to call successfully custom function from submitHandler to do proper ajax post. Here is my custom function: jQuery.fn.submitWithAjax = function() { this.submit(function() { $.post(this.action, $(this).serialize(), null, script); return false; })

[jQuery] Bizarre error being thrown in my jquery plugin... Seems to be related to regexes...

2009-09-13 Thread fitzgen
// Here is the error: [Exception... '[object Object]' when calling method: [nsIDOMEventListener::handleEvent] nsresult: 0x8057001c (NS_ERROR_XPC_JS_THREW_JS_OBJECT) location: unknown data: no] Line 0 // end

[jQuery] Handling result from the autocomplete plugin

2009-09-13 Thread Althalos
Hello I'm using the following autocomplete plugin: http://docs.jquery.com/Plugins/Autocomplete It's getting its data from an array, here are the first couple of values: data[0] = Magnesium (s) | R: 11, 15 | S: 7/8, 43; data[1] = Saltsyra 4M (aq) | R: 36/38 | S: 2. 28; data[2] = Natriumnitrat |

[jQuery] Re: (validate), submitHandler and custom function

2009-09-13 Thread Jörn Zaefferer
Try this: submitHandler: function(form) { $.post(form.action, $(this).serialize(), null, script); } Jörn On Sun, Sep 13, 2009 at 12:42 AM, bgumbiker bogumil.bial...@gmail.com wrote: Hello, I am looking for a way to call successfully custom function from submitHandler to do proper ajax

[jQuery] jquery authendicated post request..

2009-09-13 Thread Eren Yagdiran
$.post('http://'+$('#tUsername').attr(value)+':'+$('#tPassword').attr (value)+'@'+'twitter.com/statuses/update.xml',{status:$ ('#tMessage').attr(value)}); why this code when activated doesn't make a post request to the twitter ?

[jQuery] open link from left column in right column

2009-09-13 Thread finnertyManuel
Hello, I have been searching Google with something like the title to this post for awhile and can't seem to find what I am sure is obvious somewhere... I have seen, such as on the Apple iTunes support page, here... http://www.apple.com/es/support/itunes/ Where on the left, there is a list of

[jQuery] Re: Auto Selecting Navigation

2009-09-13 Thread Charlie
several things might help: 1) the use of "@" is deprecated within selectors. Tutorial was likely written prior to jQuery 1.3 try: $(function(){ var path = location.pathname.substring(1); if ( path ) $('#sidebar_content a[href$="' + path + '"]').addClass( 'selected'); // used addClass

[jQuery] Remove subscrition

2009-09-13 Thread Info - Easyeos
Please remove subscription of i...@easyeos.it

[jQuery] Re: [autocompleter] how to change the separator from , to +

2009-09-13 Thread alexbodn . groups
multipleSeparator='+' On Sun, Sep 13, 2009 at 14:22, James spidman...@gmail.com wrote: hey, let me first thank for the great job you've done. could you please tell me how can I change the word separator from , to +? thanks in advance. -- alex smime.p7s Description: S/MIME Cryptographic

[jQuery] Re: $(this).css({color : red})

2009-09-13 Thread Matthew Rolph
i have win so yea and i figured out, for some reason, double quotes: selectors(i.e. $(p)) single quotes: handlers or attributes(i.e. .toggleClass('red')) the new and improved On Sat, Sep 12, 2009 at 8:59 PM, Charlie Griefer charlie.grie...@gmail.com wrote: All 3 of the samples I pasted above

[jQuery] Re: $(this).css({color : red})

2009-09-13 Thread Matthew Rolph
CSS Testhttp://testingspot.hostcell.net/sandbox/tests/css.jquery.test.html On Sun, Sep 13, 2009 at 10:01 AM, Matthew Rolph marine.ro...@gmail.comwrote: i have win so yea and i figured out, for some reason, double quotes: selectors(i.e. $(p)) single quotes: handlers or attributes(i.e.

[jQuery] Re: missing background-image

2009-09-13 Thread Andi23
I think that $(this) may not work in that context. See if this works: $('.panel').each(function(){ $(this).css(/*set CSS here*/); });

[jQuery] Why no entire text is replaced when I pick a date on the datepicker?

2009-09-13 Thread wei
I have a datapicker on the date field with a format of -mm-dd. After selecting a date on the datepicker, only a portion of the default value is replaced. Can someone tell me what is missing and how to resolve this problem? Thanks very much in advance.

[jQuery] Re: Auto Selecting Navigation

2009-09-13 Thread fx
You did it! Thank you.

[jQuery] answer group

2009-09-13 Thread moiramethot45250
Find answer for any question here http://radiowiki.teknusi.org/cheap-flight-256

[jQuery] answer group

2009-09-13 Thread moiramethot45250
Find answer for any question here http://radiowiki.teknusi.org/cheap-flight-256

[jQuery] Google Maps, JQuery and KML file need Help

2009-09-13 Thread pennfoli0
Hi, I'm new to Google Map API and also with JQuery Javascript framework. I really need help in building this project that uses Google Map, JQuery and a KML file. To give you an Idea of what I'm planning to build. This is an image preview of my interface (http://pennfolio.com/

[jQuery] Unknown pseudo-class or pseudo-element 'odd'.

2009-09-13 Thread shapper
Hello, I am using JQuery 1.3.2 and the following code line: $(table.Engine tbody tr:odd).addClass(Alternate); I get the following error on firebug: Unknown pseudo-class or pseudo-element 'odd'. What am I doing wrong? Thanks, Miguel

[jQuery] this.each is not a function

2009-09-13 Thread shapper
Hello, I am using JQuery 1.3.2 and I get the error this.each is not a function when I try to use the following plugin: jQuery.fn.defuscate = function(settings) { settings = jQuery.extend({ link: true }, settings); var regex =

[jQuery] Re: this.each is not a function

2009-09-13 Thread Olivier Percebois-Garve
return $(this).each(function() { shapper wrote: Hello, I am using JQuery 1.3.2 and I get the error this.each is not a function when I try to use the following plugin: jQuery.fn.defuscate = function(settings) { settings = jQuery.extend({ link: true }, settings); var regex

[jQuery] Superfish: Leave sub ul menu visible when a tag class is set as active

2009-09-13 Thread LoicDuros
Hello, I'm using superfish for a drop down hover menu. It works perfect except I would like the sub menus to remain visible when one of the a tag from the menu has class=active. Here is a quick overview of the menu html: ul class=primary-links li a href=mainitem parent 1/a ul

[jQuery] Twitter for support?

2009-09-13 Thread Mike Alsup
Over the past few months I've been fielding an increasing number of support requests via Twitter (for Cycle, BlockUI, and Form plugins). In some ways it's a nice way to respond to simple questions but obviously it's not well-suited for more in-depth questions and responses. I generally direct

[jQuery] Browser Stop call's ajax.Error

2009-09-13 Thread nirazue...@gmail.com
Hi, I've noticed that when I click the Stop button on the browser, or navigate to another page, jQuery.ajax calls the error event. You can see the problem live at: http://www.pingmyport.com/ Code: this.getJson = function(timeout) { if(this.XMLHttpRequest) this.XMLHttpRequest.abort();

[jQuery] Re: $(this).css({color : red})

2009-09-13 Thread Matthew Rolph
New Link: CSShttp://testingspot.hostcell.net/sandbox/tests/jquery/css.html On Sun, Sep 13, 2009 at 10:01 AM, Matthew Rolph marine.ro...@gmail.comwrote: i have win so yea and i figured out, for some reason, double quotes: selectors(i.e. $(p)) single quotes: handlers or attributes(i.e.

[jQuery] Re: jQuery called twice, if I delete one, all jQuery scripts stop working

2009-09-13 Thread Alex Weber
did you get it to work? On Sep 12, 1:33 pm, Adrian Chen ac...@mac.com wrote: On Sep 12, 10:09 am, Alex Weber alexwebe...@gmail.com wrote: That's totally weird! I would start over, delete all the include files and add it once before any other external js script.  Test it and gradually

[jQuery] Re: this.each is not a function

2009-09-13 Thread shapper
On Sep 13, 7:28 pm, Mike McNally emmecin...@gmail.com wrote: Have you used a debugging tool to figure out what this is?  Also, your function isn't returning this, possibly an unrelated problem but it probably should be fixed. What should I do? Sorry, I am not familiar with JQuery. I am just

[jQuery] Re: Twitter for support?

2009-09-13 Thread John Resig
That sounds about right - hopefully we'll be able to direct them to a forum, eventually (which would be much easier to use, I'd expect, for someone who's using twitter). --John On Sun, Sep 13, 2009 at 2:53 PM, Mike Alsup mal...@gmail.com wrote: Over the past few months I've been fielding an

[jQuery] Re: Twitter for support?

2009-09-13 Thread MorningZ
Hah, and John posted that right before he gave a closing state of jQuery address... looking forward to the day of getting to a more traditional forum engine As for original posted question, I've been thinking of implementing something Twitter related on my car website, as after a month ago

[jQuery] Re: Does anyone see any problem with this code that might cause IE not to work with it?

2009-09-13 Thread MorningZ
i don't know about the rest of the code, but are you aware you are redefining and reattaching the plugin code getCheckboxVals on *each and every .live() call* ? On Sep 13, 4:08 pm, Rick Faircloth r...@whitestonemedia.com wrote: There are more pieces to the code puzzle than this section, but

[jQuery] Re: jquery validate and datepicker.

2009-09-13 Thread Williamk
Was it something I said? Or didn't say? :/ On Sep 8, 8:28 am, Williamk bkopl...@gmail.com wrote: Oh, I put the demo page for the remember the milk with the datepicker on a site, so you can see what I am talking about. No porn or viagra or Nigerian cons or anything else dubious. If you are

[jQuery] Re: Does anyone see any problem with this code that might cause IE not to work with it?

2009-09-13 Thread Rick Faircloth
I just wrote that piece of code to see if it would work like I was hoping it would to get and create a comma-delimited list of the same-named checkbox values. I'll move it out when I clean up the code. No ideas about the rest of the code being a problem for IE? I think I'm just going to have

[jQuery] Re: Twitter for support?

2009-09-13 Thread Jack Killpatrick
My feeling is that without threaded discussions doing support via Twitter feels a but clunky. I usually end up taking the conversation into direct messages, which then feels like a workaround and doesn't really contribute to the community, since the solutions end up being in DM's (not

[jQuery] JQuery cycle plugin bug(?) in firefox

2009-09-13 Thread sidders
Hi All, I've discovered some odd Firefox behaviour when using the JQuery cycle plugin. I'm simply trying to cycle through a few images. When you first visit the page, firefox fails to render the images correctly with the first overflowing it's container and the rest appearing as squashed

[jQuery] Grid as Subgrid: '+' symbols not showing up

2009-09-13 Thread uncertainGenius
Hello... I have a nice little grid going, and I'd like to add in a 'grid as subgrid' to view details of each record. I have a function which looks something like this (see below) - now the column where the plus symbol should show up is there, but with nothing in it - and clicking on the empty

[jQuery] Re: JQuery cycle plugin bug(?) in firefox

2009-09-13 Thread Mike Alsup
When you first visit the page, firefox fails to render the images correctly with the first overflowing it's container and the rest appearing as squashed thumbnails.  When you refresh the page (but not shift+refresh) it all works fine.   Seehttp://www.thecathedraldeli.com/beta.html for an

[jQuery] Re: Autocomplete -- Autofill Comma Seperator Issues

2009-09-13 Thread Mil
Wow, how did I miss that option. Thanks Patrick. On Sep 7, 9:18 am, Patrick Wolf patrick.wolf...@gmail.com wrote: Hi, have you tried to set the option selectFirst to false? Regards Patrick On Sep 3, 8:15 am,Milformboardem...@wdoenterprises.com wrote: Does anyone have any ideas for

[jQuery] shadowbox / ajax IE8.0.6 issue

2009-09-13 Thread Duncan
Hi All, We have an issue in our site that only occurs in IE 8.0.6, 8.0.7 / FF / Chrome / Safari are all fine. To replicate visit http://www.sportsmembership.com.au/narrenorthcc/players-participants/adult-players-fees-280-00/and click add to cart on one of the 1/2/3 month badges. We take some

[jQuery] Re: Autocomplete -- Autofill Comma Seperator Issues

2009-09-13 Thread alexbodn . groups
try to remove the highlight flag, so you'll have a better idea on what's going on. On Mon, Sep 14, 2009 at 03:13, Mil formboardem...@wdoenterprises.com wrote: Wow, how did I miss that option.  Thanks Patrick. On Sep 7, 9:18 am, Patrick Wolf patrick.wolf...@gmail.com wrote: Hi, have you

[jQuery] Re: missing background-image

2009-09-13 Thread Macsig
You are the man!!! it works just fine Thanks and have a good 1 On Sep 13, 9:24 am, Andi23 dowhatyouw...@gmail.com wrote: I think that $(this) may not work in that context. See if this works: $('.panel').each(function(){     $(this).css(/*set CSS here*/); });

[jQuery] Re: event coordination problem

2009-09-13 Thread Mr Speaker
I pasted your code into a new HTML doc and it ran as expected: if you put the focus in the textbox (#id1) then click the button (#id2) both events get fired (blur event fires first, click event fires second). Is there anything else in your page? Are you getting any JS errors? On Sep 13, 4:27 

[jQuery] Re: Selects populating other selects from JSON data

2009-09-13 Thread Steffan A. Cline
on 9/12/09 8:02 AM, Alex Weber at alexwebe...@gmail.com wrote: Hey, two suggestions: First off, if you're using JSON data to populate it then I assume the data will come from an external source and you are only generating it in your script for testing purposes. Actually, I wrote this for

[jQuery] Re: event coordination problem

2009-09-13 Thread Rick Faircloth
if you put the focus in the textbox (#id1) then click the button (#id2) both events get fired Jim... Preventing this occurrence is what I was talking about. What I do is keep the submit button disabled until all required fields have been validated on blur. That way you can't have a field

[jQuery] Jquery gradient and tabs

2009-09-13 Thread Anush Shetty
When I try using jquery gradient plugin with tabs, I see that the tabs get disabled. Does anybody here know the reason behind it ? -- Anush

[jQuery] Help with getting variable

2009-09-13 Thread Dave Maharaj :: WidePixels.com
Hoping for some simple help here. I have this structure in my forms name=data[User][username] But depending on the form it the ['User'] section will change throught the site. How can I pull the User as a variable? The script has something like this: $.post('/ajax_validate/users/', {

[jQuery] Get help with wildCard selector

2009-09-13 Thread Conrad Cheng
Dear all, I have certain div with below format div id=abc-01 /div div id=abc-02 /div div id=abc-03 /div I want to get the no of div who contain abc-* and i have used the wildcard , but i seems not work for me... I have tired $('#div[id^=abc-]').size() Can anyone give some hints to me with many

[jQuery] Re: Get help with wildCard selector

2009-09-13 Thread Steven Yang
i think what you want is $('div[id^=abc-]').size() $('#div[...') means id=div and something else but you dont have anything with id = div On Mon, Sep 14, 2009 at 11:30 AM, Conrad Cheng yfch...@gmail.com wrote: Dear all, I have certain div with below format div id=abc-01 /div div id=abc-02

[jQuery] Re: this.each is not a function

2009-09-13 Thread Ricardo
How are you using it? On Sep 13, 3:24 pm, shapper mdmo...@gmail.com wrote: Hello, I am using JQuery 1.3.2 and I get the error this.each is not a function when I try to use the following plugin: jQuery.fn.defuscate = function(settings) {     settings = jQuery.extend({         link: true  

[jQuery] Re: Get help with wildCard selector

2009-09-13 Thread Conrad Cheng
That's great, Thanks Steven. On Mon, Sep 14, 2009 at 11:33 AM, Steven Yang kenshin...@gmail.com wrote: i think what you want is $('div[id^=abc-]').size() $('#div[...') means id=div and something else but you dont have anything with id = div On Mon, Sep 14, 2009 at 11:30 AM, Conrad Cheng

[jQuery] validation plugin

2009-09-13 Thread runrunforest
Hi, I want to stop class error added to input element, how to do that please ?