[jQuery] strange behaviour with .post

2009-04-07 Thread JimD
Hi all, Im sure I'm off somewhere with syntax but I get strange behavior with this script. sometimes it does the .post sometimes it doesnt. On top of that it doesnt return the alert if the post is successful or not. Is it better to use .ajax? function Validate() { if($('#title').val() == ){

[jQuery] Re: jquery website broken?

2009-03-19 Thread JimD
On Mar 18, 3:56 pm, David Meiser dmei...@gmail.com wrote: When I was developing our company's website, I had a coworker who kept complaining about how terrible it looked.  He complained that half the images were missing, half the text was unstyled, blah blah blah.  I asked him what browser he

[jQuery] Re: jquery website broken?

2009-03-19 Thread JimD
Actually regarding my statement about IE8 standards mode. it seems only the Documentation section is a bit broke. Rest of the site displays fine

[jQuery] Re: EZPZ Tooltip

2009-03-19 Thread JimD
Nice. I like the simplicity and the stayOnContent option.

[jQuery] Re: jQuery UI Question - Tool tip

2009-03-04 Thread JimD
I would also check out simpletip. http://craigsworks.com/projects/simpletip/# On Mar 3, 1:33 pm, webRat web...@gmail.com wrote: Thanks Karl Jörn for both your responses.

[jQuery] Re: Solution To Many Of Your CSS Nightmares!

2009-01-18 Thread JimD
Although I love CSS, it is interesting how it leads to some of the same spaghetti problems that people complained about by applying formatting to html. I try to keep my CSS to a minimum but over time on a large site it can get quite messy. Most CSS guru's relate their CSS to little blogs or

[jQuery] Re: I wrote a YUI Multi FIle Compression Utility

2008-12-26 Thread JimD
This is great. I've been looking for such a utility. Thank you. On Dec 23, 8:27 am, K-BL axel...@aim.com wrote: Hey Guys, I just finished writing aYUIMulti-File Compression Utility.  It's really simple, it just runs some CLI commands, but more importantly, it compiles entire directories and

[jQuery] Whats best for js compression, packer, jsminify, YUI?

2008-10-08 Thread JimD
Hi all, I know this has probably been discussed before but I with all the options available, I was wondering what method seems to work best overall for compressing js files. I want to put all my jquery plugins into one file and compress for performance but I'm worried about breaking things. I

[jQuery] Re: Whats best for js compression, packer, jsminify, YUI?

2008-10-08 Thread JimD
)... all you need to do is a search in the group On Oct 8, 3:21 pm, JimD [EMAIL PROTECTED] wrote: Hi all, I know this has probably been discussed before but I with all the options available, I was wondering what method seems to work best overall for compressing js files. I want to put all

[jQuery] autocomplete and updating different fields from delimited string

2008-10-07 Thread JimD
Hi all, I'm using rhe great jquery autocomplete plugin which works great. But Im returning a pipe delimited list so I can return more data and then populate specific fields with that info. So for example my autocomplete would return pipe delimited data like so for each line. Top

[jQuery] Re: autocomplete and updating different fields from delimited string

2008-10-07 Thread JimD
Ok I got this figured out. maybe this can help anyone else looking for a similiar solution. bnased of the demo I can manipulate output with the findValueCallback function. $(document).ready(function() { function findValueCallback(event, data, formatted) { $(li).html( !data ? No

[jQuery] getting value of a radio button

2008-09-29 Thread JimD
Hi all I know this is pretty basic stuff and discussed before but Im having problems simply getting the value of a radio button that is checked in a group. For example in the code below why is 's' blank? // get value for checkbox or radio button that is checked $([EMAIL

[jQuery] Re: getting value of a radio button

2008-09-29 Thread JimD
(function(){    if $(this).is(':checked') alert(this.value);  }); - Ricardo On Sep 29, 7:15 pm, JimD [EMAIL PROTECTED] wrote: Hi all I know this is pretty basic stuff and discussed before but Im having problems simply getting the value of a radio button that is checked in a group

[jQuery] Assigning the value of a field to another hidden field.

2008-07-01 Thread JimD
Hi all, Quick question regarding retrieving a field value. I have the following code. Basically based on a select menu option I want to set a hidden field to specific value depending on what is selected. So if the user selects Urgent or Critical the hidden field would be set to the value of

[jQuery] Re: broken image url check options on jquery

2008-04-25 Thread JimD
, using the onComplete event, you can do something specific for those that failed. Cheers -- Ariel Fleslerhttp://flesler.blogspot.com On 24 abr, 20:37, JimD [EMAIL PROTECTED] wrote: Hi all, For awhile now I have used a simple onerror check to show an alternative if an img url

[jQuery] Re: broken image url check options on jquery

2008-04-25 Thread JimD
event, you can do something specific for those that failed. Cheers -- Ariel Fleslerhttp://flesler.blogspot.com On 24 abr, 20:37, JimD [EMAIL PROTECTED] wrote: Hi all, For awhile now I have used a simple onerror check to show an alternative if an img url is broken in the page

[jQuery] broken image url check options on jquery

2008-04-24 Thread JimD
Hi all, For awhile now I have used a simple onerror check to show an alternative if an img url is broken in the page. Something as shown below. Problem with this script, it will produce an error if the alternative image is actually not available as well. Can any one point me to a jquery solution

[jQuery] lost process running after form submit with impromptu

2008-01-15 Thread JimD
Hi all, I'm using Impromptu to provide a simple confirm before submitting a form from within a greybox. Everything works great, but whenever the form is submitted (im not using ajax, ajah). Its like some lost process starts running in the parent window that spawned the greybox. Once I click any

[jQuery] Re: jQuery 1.1.2 Released: Happy 2nd Birthday!

2008-01-15 Thread JimD
Yes I agree thanks to the Jquery team for all their efforts. Jquery is awesome. Happy Bday Jquery Donation on its way. On Jan 14, 10:05 pm, John Resig [EMAIL PROTECTED] wrote: On the 2nd birthday of jQuery we're happy to bring you a new release of jQuery! Here's the

[jQuery] Re: Space gallery

2008-01-11 Thread JimD
Wow Stefan that is awesome.

[jQuery] Re: help using selectors to set a hidden field value

2007-12-17 Thread JimD
differently, eg... $(document).ready(function(){ var upd = []; $( 'input[name^=rlinehval-]' ).each(function(){ upd.push( $(this).val(); }); $(#updstr).val( upd.join(';') ); }); On Dec 17, 11:35 pm, JimD [EMAIL PROTECTED] wrote: Hi all, Pretty basic but Im having

[jQuery] IE7 smudgy text issues with Superfish/hoverintent

2007-10-18 Thread JimD
Hi all, I just now decided to update to the latest version of jquery which means I had to update some plugin scripts. Everything works fine but I am having an issue specifically with my menu system which is using Joel Birch's great Superfish script. The menu works but in IE7 now the text is

[jQuery] accordian plugin brings up errors in IE7

2007-10-18 Thread JimD
Using accordian 1.5 and jquery 1.1.2 * $Rev: 3353 $ In IE7 I keep getting the following error when clicking on one of the menu items. it works in FF2 although it stutters a bit. ERRORS: errors at: elem[name] = value; segment of code in jquery: name =

[jQuery] getting query string val method with jquery

2007-08-30 Thread JimD
Hi all, Is there any new built in method to get a query string value into a var for jquery For example this same question came up awhile ago here: http://groups.google.com/group/jquery-en/browse_thread/thread/99e1bc29713bba37/09506175a651256e?lnk=gstq=query+stringrnum=2# I wasnt sure with the

[jQuery] Re: getting query string val method with jquery

2007-08-30 Thread JimD
/jqURLdemo.html Basically if your query string value is myvar, you do: var x = $.jqURL.get(myvar); There are some other useful functions too. -- Josh - Original Message - From: JimD [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Thursday, August 30, 2007 12

[jQuery] Re: jCarouselLite - my first plugin - anxiously awaiting comments

2007-06-25 Thread JimD
This is excellent. I too found Jcarousel to be very cool but a bit heavy for my needs especially as a secondary app on our site. As Xavier mentioned auto scroll would be great not much more needed. On Jun 25, 3:11 am, xavier [EMAIL PROTECTED] wrote: Hi, Like it as well. Would it be possible

[jQuery] error using jcarousel with jquery calendar

2007-06-19 Thread JimD
Hi all, I have a weird problem with jquery calendar that causes an error in Internet Explorer 7. If I use the jquery calendar and jcarousel on the same page together I get the following error: Internet Explorer cannot open the web site... Operation aborted. If I remove the calendar, or remove

[jQuery] Re: error using jcarousel with jquery calendar

2007-06-19 Thread JimD
Sorry, to be more specific I am reffering to the following calendar http://marcgrabanski.com/code/jquery-calendar/

[jQuery] Re: jTip and ToolTip featured on smashing magazine

2007-06-12 Thread JimD
Wow Jtip was great but cluetip takes it to another level. sticky ajax tooltips cool. Great job Karl. On Jun 12, 4:14 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hey, that's cool! They feature clueTip, too, and I haven't even blogged about it yet. Not sure how they found out about it, but I

[jQuery] keycode javascript conversion to jquery

2007-06-11 Thread JimD
Hi all, I'm looking to convert an old javascript function to jquery. It simple captured the keycode event 13 (user pressing enter on the keyboard) if the user hits enter it initiates the action of clicking a button. I want to try jquery because no matter what I do with regular javascript, the

[jQuery] Re: keycode javascript conversion to jquery

2007-06-11 Thread JimD
little mistake on my jquery attempt this $('buttonsmp').click(); should be $('#buttonsmp').click(); (the id of the button to be clicked) Jquery implementation $(document).ready(function() { $(#searchtxt).keydown( function(e){ var key = e.charCode || e.keyCode || 0;

[jQuery] Re: .load issue with IE7

2007-05-31 Thread JimD
Thanks so much for the tips Wizzud. You got me on the right track. On May 31, 12:44 am, Wizzud [EMAIL PROTECTED] wrote: Just so I'm straight on this In main page: on doc ready, 1. load 'invoices' code, with callback{ 2. load 'paybox' code 3. add click() to checkboxes

[jQuery] Re: .load issue with IE7

2007-05-30 Thread JimD
Weird I posted a reply about this earlier this morning and it never went through. Anyway, Wizzud thanks for the tip this worked. One other question related to this same piece. The .load works now in IE7 and FF, but for some reason I cant get IE to fire the click unclick actions on some checkboxes

[jQuery] .load issue with IE7

2007-05-29 Thread JimD
Ok so I have payment page. When the page loads I fill in a list of payments within a div using .load, and within the page being loaded in the div, I have another .load that feeds in a total box. This all works great in FF2, but for some reason in IE7 the paybox doesnt not display. So in the

[jQuery] Re: .load issue with IE7

2007-05-29 Thread JimD
Hi Olive thanks for the suggestion. Usually I dont have a problem with .load in IE7, but I assume this is because Im doing a .load within another file that was requested via ajax. On May 29, 5:00 am, Olive [EMAIL PROTECTED] wrote: Jim, there is a problem using load in IE when you have to

[jQuery] Re: .load issue with IE7

2007-05-29 Thread JimD
Well no luck with .get either. Guess Ill have to output the div as the page is generated. So much for IE. On May 29, 9:09 am, JimD [EMAIL PROTECTED] wrote: Hi Olive thanks for the suggestion. Usually I dont have a problem with .load in IE7, but I assume this is because Im doing a .load

[jQuery] ajax form loader displays on load even though loader is set to hidden

2007-05-24 Thread JimD
Hi all using Ajax form. Which works great, but Ive noticed lately when my page loads now the loader image displays event though Im hiding the div on load. Any ideas why this would be happening? $(document).ready(function() { $(busy).hide(); $('div id=busybr /img

[jQuery] Re: ajax form loader displays on load even though loader is set to hidden

2007-05-24 Thread JimD
Ok noted one mistake on my part this should be $(#busy).hide(); But even with that it doesnt work. This is in both IE7 and FF2. Stumped. It use to work. On May 24, 2:31 pm, JimD wrote: Hi all using Ajax form. Which works great, but Ive noticed lately when my page loads now the loader

[jQuery] Re: ajax form loader displays on load even though loader is set to hidden

2007-05-24 Thread JimD
Thanks Mike. I'll mess around with it. Whats strange is that this has been working in my code. I havent changed the version of jquery or anything weird. On May 24, 3:10 pm, Mike Alsup [EMAIL PROTECTED] wrote: You're hiding the busy div before it's been added to the DOM. Try changing that

[jQuery] Re: checkbox and .load

2007-05-08 Thread JimD
Hi Equand, THanks for the reply. I was testing in Firefox 2, but I created a plain example (Im reworking old legacy code) and I think the problem is with the page html. In a plain demo I dont get the refresh issue. Simple example !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

[jQuery] Re: General discussion

2007-04-09 Thread JimD
Wow this is very cool. Nice work Diego.