[jQuery] Re: An idiot's question about returning results from a form submission

2009-09-04 Thread Alan
Wow, Brian, thanks so much for taking the time. I really appreciate it. On Sep 3, 8:06 pm, brian bally.z...@gmail.com wrote: On Thu, Sep 3, 2009 at 10:23 PM, Alanalanmand...@gmail.com wrote: Thanks, Brian. I appreciate it. As mentioned, the document has the following script references in

[jQuery] Parse html content and convert untaged links and emails to hyper links

2009-09-04 Thread IDEO
Hi, The plugin should parse In a HTML page once loaded and convert any link and email without a href tag to a proper clickable link... For example: a). google.com should be converted to a href=http://google.com; target=_blankgoogle.com/a b). exam...@example.com should become a

[jQuery] Re: Using jQuery to see if CSS is disabled.

2009-09-04 Thread Jonathan Vanherpe (T T NV)
mumbojumbo wrote: Hello All, I'm trying to code a site using progressive enhancement methods. It's built upon standards-compliant CSS and HTML and JS. I'm using jQuery on the site to animate some elements on hover etc. Now, when CSS and JS is disabled, it's all good. But, If CSS is disabled

[jQuery] Re: Form is always submitting

2009-09-04 Thread Bluesapphire
Thanks for reply. But as you can see in the code, I want to submit form but on some conditions (which are in IF clause). Right now it is going/executing 'SUBMIT' function when I click on the button. Thanks On Sep 4, 11:45 am, Cold Flame theumairsha...@gmail.com wrote: Hi, If you set

[jQuery] Re: Form is always submitting

2009-09-04 Thread Cold Flame
Hi, You can call the submit function of the form on any event. jQuery('#smts').click(function(){ alert('Click'); //Form Submit function call. }); On Sep 4, 1:15 pm, Bluesapphire ahmadsaa...@gmail.com wrote: Thanks for reply.  But as you can see in

[jQuery] Reverse slideUp/slideDown

2009-09-04 Thread V
When using slideDown, you will see the content. Using slideUp will hide the content. Now I want to use slideUp to view the content, so it will start from nothing and slide to an object from bottom to top. Is there a good way to do this, or should I fox it with animate and scrollTop?

[jQuery] How to handle onmouseover event with keyboard

2009-09-04 Thread Aravind - User experience
Hi Team, How to handle onMouseOver event with keyboard. Scenario: With JQuery, onMouseOver on a plus symbol, small banner with some text content will be shown, it has been working with Mouse(input device), but same effect has been expecting from keyborad tab ordering on to that particular plus

[jQuery] Remote Success message

2009-09-04 Thread Danny
Hi, I'm trying to figure out how to display a Success Message upon remote returning 'true'. Yes, I know this can be done with success: function() {}, however I have multiple fields that I want to use this on, and I want to display more than just a generic message. Let's say I have a Username

[jQuery] jQuery Superfish Problem

2009-09-04 Thread Lexmarketing
Hello, iam a new here. I will creat a jQuery menu on my typo3 site but still some problems. I have add the jQuery in the head of the site and all needed scripts! Then i give the ul a class name ul class=sf-menuli/li/ul ... Here a link to the side: http://typo3.lexmarketing.eu/ Best regards

[jQuery] Detect form change

2009-09-04 Thread Gael
Hi all ! I'm looking for a way to detect form change in jQuery. For exemple I display a big and dynamic form pre-filled with values and splitted in tabs. I would like that when some form values in a tab is changed an icon appears showing that a save is needed. I also would like to have an alert

[jQuery] spritemenu customise

2009-09-04 Thread joey santiago
hello everyone, i found quite interesting the spritemenu (http:// www.distinctcorp.com.au/jquery/spritemenu.html) idea and used it on my website. It works quite fine, but i'd like to ad some functionality: when the user click on a menu element, i want it to remain selected (in hover state

[jQuery] Re: How to handle onmouseover event with keyboard

2009-09-04 Thread Cold Flame
If you want to achieve the functionality of mouse over on an element as you press tab from key board. Then try onfoucs event of that element. When u press tab foucs is set on the next ordered element. Regards On Sep 4, 10:18 am, Aravind - User experience aravind.dok...@gmail.com wrote: Hi

[jQuery] Hidden div height width

2009-09-04 Thread Rupak
Hi all Can any one tell me is it possible to get the height and width of a hidden div. I have to apply animation to a hidden div. But is don't know how to do this. Thanks Rupak

[jQuery] Re: jquery menu that works with ie6 (plugin?)

2009-09-04 Thread Matthew Abbott
Do you know how to enable the top level links in the jdmenu? I never could get the top level links in the menu to work once i applied the jdmenu to a unordered list. On Aug 21, 4:09 pm, con-man-jake jakedim...@gmail.com wrote: Did it.  Works like a charm!  Thanks again Jack. jake On Aug 21,

[jQuery] Re: Hidden div height width

2009-09-04 Thread rupak mandal
Thanks for the quick reply . The problem is that i cannot use visibility:hidden or position absolute. On Fri, Sep 4, 2009 at 3:42 PM, joey santiago federico.pr...@yahoo.itwrote: exactly... but if you hide it with visibility:hidden, then you still see an empty space on the page... you should

[jQuery] Re: Detect form change

2009-09-04 Thread Matthew Abbott
Here is a plugin that may get you started. http://bit.ly/cZQ9K

[jQuery] Re: Hidden div height width

2009-09-04 Thread Cold Flame
Hi Rupak, if div is hidden using css display:none then you can't get its height or width because logically that element is that drawn on the browser. While if u hide the div using css visibility:hidden then u can get the height and width of the element. Regards Umair Shahid On Sep 4, 3:45 pm,

[jQuery] Re: Hidden div height width

2009-09-04 Thread joey santiago
exactly... but if you hide it with visibility:hidden, then you still see an empty space on the page... you should hide it by setting his absolute position to top and left negative values, or (probably better?) using z-index property. hope it's useful! :) On 4 Set, 12:04, Cold Flame

[jQuery] Re: Hidden div height width

2009-09-04 Thread Liam Potter
why not position absolute ? rupak mandal wrote: Thanks for the quick reply . The problem is that i cannot use visibility:hidden or position absolute. On Fri, Sep 4, 2009 at 3:42 PM, joey santiago federico.pr...@yahoo.it mailto:federico.pr...@yahoo.it wrote: exactly... but if you hide

[jQuery] Re: KFManager v1.0

2009-09-04 Thread mdjamal
Hi, Can you please share on how to config this to run in localhost. I tried but the folder and file section has the loading.gif displayed and nothing else. Thanks! On Aug 19, 7:03 am, Meroe whme...@gmail.com wrote: I was able to get this working.  I'm now integrating with codeigniter to see

[jQuery] possible to override inline onchange() event?

2009-09-04 Thread Alex Weber
I have a select box with an inline onchange() event that reloads the page. Using jQuery I've created a $('#myForm select').live('change', function (e){...}) event handler to intercept the onchange() behavior and even though I have e.preventDefault() and e.stopPropagation() after my jquery event

[jQuery] Has anyone now how to simplify the following expression by avoiding using attr(id)

2009-09-04 Thread varlo
Has anyone now how to simplify the following expression by avoiding using attr(id) alert($(#+$(obj).attr(id)+~p:last).attr(id)); I need this because not every image could have an id. script language=javascript type=text/javascript function ExpandCollapseOnLeftPanel(obj) { if

[jQuery] Auto play Accessible News Slider

2009-09-04 Thread j...@orango.nu
Can anybody tell me how i Make the Accessible News Slider from http://www.reindel.com/accessible_news_slider/#jquery_resources to switch slide after e.g. 4 sec. ?

[jQuery] ArgumentOutOfRange Exception

2009-09-04 Thread Rachael
Hi, All I use jquery 1.2.6 in one of my projects and it will call some webmethods without arguments. it works properly in my dev machine. However, ArgumentOutOfRange Exception (parameter: length) will be thrown after deployment. Any idea? Thanks in advance. Snippet like: $.ajax({ type:

[jQuery] Re: error when uploading files

2009-09-04 Thread Alin
I had the same problem, just rename the submit button to something else, an example: input id=submitButton type=submit value=update name=submitButton/ On Sep 2, 8:27 pm, undertow qode.qr...@gmail.com wrote: I get an error Error: Form elements must not be named submit. when i have a form with

[jQuery] Preventing browser scrollbars from bumping content in slideDown()

2009-09-04 Thread Jonathan del Strother
Say I have a site that's centered on the page, and do $ (#some_content).slideDown(). If the appearance of the new content means that the page no longer fits in the browser window, scrollbars will appear, and so the available page width decreases slightly, and so my centered content jumps left

[jQuery] Re: unblockUI() problems in IE

2009-09-04 Thread Mike Alsup
It seems to bug because i am using a form Ive tried the form tag inside the div and outside the div like below. If i take out the form tag, it goes away fine without issues. script src=js/jquery.js/script script src=js/jquery.blockUI.js/script script         $(function() {              

[jQuery] Re: Form is always submitting

2009-09-04 Thread Mike Alsup
        jQuery('#recFrm').submit(function(){                 return false; If you put a breakpoint on that line you will see it is never invoked. Your form has an id of recfrm, not recFrm.

[jQuery] Re: jQuery Superfish Problem

2009-09-04 Thread TheoSoft
You don't have any submenus. On Sep 4, 3:48 am, Lexmarketing gmt...@gmail.com wrote: Hello, iam a new here. I will creat a jQuery menu on my typo3 site but still some problems. I have add the jQuery in the head of the site and all needed scripts! Then i give the ul a class name ul

[jQuery] Re: error when uploading files

2009-09-04 Thread Mike Alsup
I get an error Error: Form elements must not be named submit. when i have a form with the ability to upload files.  If a file is selected for upload i get the error, and not when there is no file for upload. why is that?  what difference does it make if there is a submit button? This is a

[jQuery] Re: unblockUI() problems in IE

2009-09-04 Thread Matthew Abbott
Yeah take out the html head body tags in your example, and in IE you should get the error i was talking about. just leave the script tags and the div. On Sep 4, 8:25 am, Mike Alsup mal...@gmail.com wrote: It seems to bug because i am using a form Ive tried the form tag inside the div and

[jQuery] Re: slide one div out left while sliding one in right

2009-09-04 Thread W. Young
I tried animate before I found the slide effect and obviously it isn't quite that simple if the slide effect won't work. On Aug 29, 7:56 am, Anoop kumar V anoopkum...@gmail.com wrote: You can also try to use animate which is part of jquery core. Look up some examples on the jquery website,

[jQuery] jCarousel: restart the carousel

2009-09-04 Thread Lleoun
Hi all, I'm using jCarousel as a video playlist. There's a total of 8 items, 6 shown at load. The playlist plays item to item in the carousel until the last one. Once the last item is played, the first item starts playing again. As I need the carousel to scroll to the first item when the

[jQuery] Re: An idiot's question about returning results from a form submission

2009-09-04 Thread Alan
When you say... Then, in your JS function, test the returned text for failure or reject first, or parse the JSON object and create a new image tag with the supplied src, width, height. ... what's the exact code for parsing the JSON object within my current structure?

[jQuery] New iPhone-style button plug-in released...

2009-09-04 Thread Dan G. Switzer, II
We've just released another jQuery plug-in which emulates the iPhone-style button used to toggle settings on/off. The plug-in works with both checkbox and radio button groups and we've worked hard to make this a complete plug-in. While there are several similar plug-ins, we couldn't find one that

[jQuery] How to unbind data?

2009-09-04 Thread MiKiTiE
Hi everyone I'm trying to write a function that will pass through the id of a clicked element, and then use that id for spellchecking the word that's been clicked on. However, although this seems to work, when i click on another word, it returns the previous corrected word rather than the new

[jQuery] Re: unblockUI() problems in IE

2009-09-04 Thread Mike Alsup
Yeah take out the html head body tags in your example, and in IE you should get the error i was talking about. just leave the script tags and the div. Why would I want to do that?

[jQuery] Re: New iPhone-style button plug-in released...

2009-09-04 Thread MorningZ
Very slick! nice work On Sep 4, 10:05 am, Dan G. Switzer, II dswit...@pengoworks.com wrote: We've just released another jQuery plug-in which emulates the iPhone-style button used to toggle settings on/off. The plug-in works with both checkbox and radio button groups and we've worked hard to

[jQuery] Re: Ajax not working in Firefox

2009-09-04 Thread RPrager
Here is the only difference I found in the Request Headers: FF2: Content-Typeapplication/x-www-form-urlencoded FF3: Content-Typeapplication/x-www-form-urlencoded; charset=UTF-8 Any ideas? On Sep 4, 9:47 am, RPrager ryan.pra...@gmail.com wrote: Firefox 3 response: HTMLBODYHR H1

[jQuery] Re: Ajax not working in Firefox

2009-09-04 Thread Mike McNally
Well frankly that's not looking like a jQuery problem to me. Your *server* is returning different results. I have no idea why, but I don't see what jQuery (or anything else at the client) is supposed to do about that. Do you have debug logging or other debug facilities at the server to see

[jQuery] Re: Ajax not working in Firefox

2009-09-04 Thread RPrager
Firefox 3 response: HTMLBODYHR H1 ALIGN=CENTERNot available at present/H1 PStatus code = NL !-- NL --HR/BODY/HTML According to our back end developer, the NL = 'Null execution'. Meaning that the page (newcoleng) was launched without any input at all. I.e., neither a FORM nor any positional

[jQuery] Re: An idiot's question about returning results from a form submission

2009-09-04 Thread brian
On Fri, Sep 4, 2009 at 9:48 AM, Alanalanmand...@gmail.com wrote: When you say...        Then, in your JS function, test the returned text for failure or        reject first, or parse the JSON object and create a new image tag        with the supplied src, width, height. ... what's the

[jQuery] Re: unblockUI() problems in IE

2009-09-04 Thread Matthew Abbott
Normally you wouldnt. I just had a blank page and didnt put in all the html tags in there. Felt stupid afterwards. It worked in Firefox. Anyway, it works fine now. all is good. On Sep 4, 10:08 am, Mike Alsup mal...@gmail.com wrote: Yeah take out the html head body tags in your example, and

[jQuery] Re: Port Prototype Code to jQuery?

2009-09-04 Thread Dave Methvin
Any thoughts on my previous reply? Leave the markup as-is and replace the Prototype script with this jQuery. I tried to make the selectors do most of the work, but it still has the downsides of the original code such as not validating price inputs. $(function(){ var calculate = function() {

[jQuery] animate : animable properties

2009-09-04 Thread Nico
Hi, I'm coding a jQuery plugin to draw modal windows. In this plugin, I make animations to show and hide the modal window. I'd like my plugin to be as much customizable as possible. So I want the animations to be customizable also. To do this, I have one option for the general css properties

[jQuery] jcarousel

2009-09-04 Thread ORY
Hello, i tought of using your slider on my website, but is there anyway to make the slider larger and were in the code would i do that? thx for a creat slider!

[jQuery] fading images

2009-09-04 Thread InLife
Hi all, I am trying to create a fading image swap for my body's background, using jQuery. Since I could not find out how to just fade a backgroundImage (especially) on the body tag in the CSS, I created a #background tag in my CSS looking like this: #background { width: 100%;

[jQuery] Re: New iPhone-style button plug-in released...

2009-09-04 Thread Mike Alsup
You can see a demo here:http://www.givainc.com/labs/ibutton_example.htm Love it, Dan. Nice job.

[jQuery] TableSorter and colspans

2009-09-04 Thread Mike Alsup
Anyone familiar with this plugin? The docs say that it supports colspans but it doesn't appear to do so. The script has a checkCellColSpan function defined but it is never invoked. I really need colspan support.

[jQuery] Re: Ajax not working in Firefox

2009-09-04 Thread RPrager
I'll see if I can take a look at server log files. Has anybody else experienced problems using ajax with FF3? Any other ideas are appreciated. Thanks On Sep 4, 10:10 am, Mike McNally emmecin...@gmail.com wrote: Well frankly that's not looking like a jQuery problem to me.  Your *server* is

[jQuery] Re: New iPhone-style button plug-in released...

2009-09-04 Thread Dave Methvin
We've just released another jQuery plug-in which emulates the iPhone-style button used to toggle settings on/off. Very nice, Dan. I like the way you haven't forgotten keyboard access.

[jQuery] Re: error when uploading files

2009-09-04 Thread Dave Methvin
I get an error Error: Form elements must not be named submit This is a handy page to use for checking your code, or just for reading the notes to be sure you aren't using any of the special DOM names that trigger problems. http://yura.thinkweb2.com/domlint/

[jQuery] Re: error when uploading files

2009-09-04 Thread Mike Alsup
This is a handy page to use for checking your code, or just for reading the notes to be sure you aren't using any of the special DOM names that trigger problems. http://yura.thinkweb2.com/domlint/ Excellent link, Dave. Thanks.

[jQuery] Re: plugin: combine features from multiple demos + skip validation of hidden sections [validation] [accordion]

2009-09-04 Thread seezee
ok, i'm getting closer ... although i still haven't figured out how to do custom contextual warnings as noted in the last post. the problem i'm having now is that i have a radio button in my final accordion container. i want the button to be required (checked=checked) for the form to validate.

[jQuery] Re: New iPhone-style button plug-in released...

2009-09-04 Thread Dan G. Switzer, II
Keyboard support is often overlooked, but it's always high on our priority list because many of our users are very keyboard centric and don't like using the mouse at all. On Fri, Sep 4, 2009 at 12:23 PM, Dave Methvin dave.meth...@gmail.comwrote: We've just released another jQuery plug-in

[jQuery] Proper way to detect webkit-based browsers?

2009-09-04 Thread D A
Now that we're switching to feature detection rather than browser detection, how does/should one detect for a webkit browser? Is there a known feature that we can check for that would Identify Safari and Chrome? We're running into some (rather minor) layout issues with some jquery plug-in

[jQuery] Re: Clickable div?

2009-09-04 Thread MorningZ
and don't forget to add the css cursor: pointer to make the user's mouse cursor look like a link On Sep 4, 1:15 pm, Charlie Griefer charlie.grie...@gmail.com wrote: does that div have an id attribute?  if so, $('myDivID').click(function() { do stuff here }); On Fri, Sep 4, 2009 at 10:13

[jQuery] Re: Clickable div?

2009-09-04 Thread lukas
Thank you! It somehow does not work. Here is what I got: $(#logo:a).click(function(){ $.cookie('startCookie', 'default').load('http://www.mylink.com'); }); And here is the html: div id=logoa href=template language defines the link here/ a/div Does anybody have

[jQuery] Re: An idiot's question about returning results from a form submission

2009-09-04 Thread Alan
Thank you, once again, Brian. I got everything working by replacing... $('#imageUploader1').ajaxForm(function() { alert(I wish I could post the actual server response.); }); with... var options = {success: showResponse};

[jQuery] Re: Clickable div?

2009-09-04 Thread Charlie Griefer
I don't know that you can use a filter the way you're trying to (using the colon in #logo:a). Filters are more like tr:first (matches the first tr element), tr:odd (matches odd-numbered table rows.. good for zebra-striping)... See the sections about the various types of filters at

[jQuery] Adding/Removing and Resizing jScrollPane - Reinitializing jScrollPane

2009-09-04 Thread pedalpete
I am building a little widget which is using jScrollPane to add a scrollbar for where the data doesn't fit inside the alloted space. When the user clicks on the data, I hide what they had, and show the clicked data in a different format. Sometimes the data needs a scrollbar, sometimes not, and

[jQuery] Re: Clickable div?

2009-09-04 Thread Charlie Griefer
Oooh good call. I had forgotten :) On Fri, Sep 4, 2009 at 10:20 AM, MorningZ morni...@gmail.com wrote: and don't forget to add the css cursor: pointer to make the user's mouse cursor look like a link On Sep 4, 1:15 pm, Charlie Griefer charlie.grie...@gmail.com wrote: does that div have

[jQuery] Clickable div?

2009-09-04 Thread lukas
I have a div that only contains an image. How would I create a jquery-click function that basically would represent a normal a tag for his div? Thank you!

[jQuery] Re: Clickable div?

2009-09-04 Thread Charlie Griefer
does that div have an id attribute? if so, $('myDivID').click(function() { do stuff here }); On Fri, Sep 4, 2009 at 10:13 AM, lukas animod...@gmail.com wrote: I have a div that only contains an image. How would I create a jquery-click function that basically would represent a normal a tag

[jQuery] Test message - Please disregard

2009-09-04 Thread Rey Bango
Testing out an issue on the list. Please disregard. Rey jQuery Team

[jQuery] Re: Clickable div?

2009-09-04 Thread MorningZ
I don't understand... The first post says I have a div that only contains an image and later on a post says: And here is the html: div id=logoa href=template language defines the link here/ a/div That wouldn't be a div with only an image there On Sep 4, 2:02 pm, Charlie Griefer

[jQuery] Superfish - Not Rendering on Postback

2009-09-04 Thread 3M | Ryan
Hello, I am using Superfish for the menu system on a 3.5 asp.net webform. Everything is working good except during postbacks. For instance we use the selected ID, during the postback event of a dropdown list to filter data for another list. The menu is rendering fine until the postback event.

[jQuery] Superfish Menu

2009-09-04 Thread PasKa
Hello, I'm trying to use de Superfish menu in a site i'm developing. I would like to change the jquery animation but i really don't know how. In the menu options there is a line like this: animation : {opacity:'show'}. But i can't make it work if i change the word 'opacity'. Thakns in

[jQuery] Re: Superfish Menu

2009-09-04 Thread Charlie
don't know what animation you want here's an example: animation:{width:'show', height:'show'}, speed:800 speed option controls animation PasKa wrote: Hello, I'm trying to use de Superfish menu in a site i'm developing. I would like to change the jquery animation but i really don't

[jQuery] Re: Has anyone now how to simplify the following expression by avoiding using attr(id)

2009-09-04 Thread Ricardo
$(obj).siblings('p:last') should give the same results. Remember that you can access the id via obj.id directly. Here are two possible rewrites: http://snipt.org/mHj On Sep 4, 7:22 am, varlo va...@ukr.net wrote: Has anyone now how to simplify the following expression by avoiding using attr(id)

[jQuery] Re: Clickable div?

2009-09-04 Thread Anoop kumar V
Can you try this: $(#logo).click(function(){ $.cookie('startCookie', 'default').load('http://www.mylink.com '); }); You do not have to put the a there as logo being the parent will receive the click even as part of the event bubbling. Thanks, Anoop On Fri, Sep 4, 2009 at

[jQuery] Re: Clickable autocomplete, like google

2009-09-04 Thread ladksak
nobody knows? :p On 3 set, 12:59, ladksak slingrs...@gmail.com wrote: the problem is that i need it to work with the script i posted the link thats because the UI Autocomplete is not as good... if i type ODE in the ui he doesn't show CODE i need it to ODE show CODE and ODESSA, like he

[jQuery] Re: Clickable div?

2009-09-04 Thread lukas
Thank you everybody! I made it work by applying display:block and width/height to the a tag within the div. The confusion was created by IE treating the image-containing div differently than the rest of the crop. It tried everything that the next div would not jump below the logo div in IE. The

[jQuery] Validate Plugin - Charcode Warning in Firebug

2009-09-04 Thread Aaron Kreider
I'm using the jQuery Validate plugin. I have a basic form that asks for someone's name: input type='text' name='gsFname' class='required ' class='prompt' size='18' maxlength='50' When I enter the first character into the field, I get a Firebug warning: The 'charCode' property of a keyup event

[jQuery] Re: Reverse slideUp/slideDown

2009-09-04 Thread Karl Swedberg
On Sep 4, 2009, at 3:43 AM, V wrote: When using slideDown, you will see the content. Using slideUp will hide the content. Now I want to use slideUp to view the content, so it will start from nothing and slide to an object from bottom to top. Is there a good way to do this, or should I fox it

[jQuery] Re: Form Serialize - Not replace space with plus

2009-09-04 Thread Mike Alsup
I'm using $(form).serialize(), and then doing an AJAX request. JQuery automatically replaces spaces with the + character. How can I keep my spaces? (I couple replace the + character with a space on the server side, but I want the users to be able to enter the + character when they submit

[jQuery] Looking for plugin to refresh images randomly

2009-09-04 Thread Bhaarat Sharma
Hello, I am looking for some jquery plugin that would replicate what is done on this page http://www.lorigrahamdesign.com/index.php Basically there are 5 images which keep changing (fade in/out) randomly and when clicked they take the user to a new page. I remember seeing lots of jquery

[jQuery] Re: JCarouselLite - pause scrolling

2009-09-04 Thread Steffan A. Cline
on 8/28/09 5:37 PM, Steffan Cline at stef...@hldns.com wrote: I have a carousel that auto scrolls images. I was asked if there is a way to make it so that if you mouse over the carousel, it stops and when you mouse out, it starts up again. Is this possible? Anyone? Thanks Steffan

[jQuery] Form Serialize - Not replace space with plus

2009-09-04 Thread Aaron Kreider
I'm using $(form).serialize(), and then doing an AJAX request. JQuery automatically replaces spaces with the + character. How can I keep my spaces? (I couple replace the + character with a space on the server side, but I want the users to be able to enter the + character when they submit

[jQuery] Re: plugin: combine features from multiple demos + skip validation of hidden sections [validation] [accordion]

2009-09-04 Thread seezee
not sure what i did, but i got this last bit working. i still need help on custom messages, could use some guidance on getting contextual dependencies working with the accordion (making a radio input required only if a previous checkbox was selected -- i've looked at the examples, but can't get

[jQuery] Re: Replacing like items

2009-09-04 Thread Steffan A. Cline
on 8/31/09 10:42 AM, mkmanning at michaell...@gmail.com wrote: Play around with this: $('input[value*=||]').change(function(){ var $this = $(this),val = $this.val().split('||')[1]; if($this.is(':checked')){ $this.removeAttr('disabled').siblings('input[value$='+val+']').attr

[jQuery] Re: New iPhone-style button plug-in released...

2009-09-04 Thread Cesar Sanz
Great... great.. congrats.. - Original Message - From: Dan G. Switzer, II To: jquery-en@googlegroups.com Sent: Friday, September 04, 2009 10:45 AM Subject: [jQuery] Re: New iPhone-style button plug-in released... Keyboard support is often overlooked, but it's always high

[jQuery] Re: Hidden div height width

2009-09-04 Thread Charlie
not sure if this is practical or not but you could clone it offscreen , get clone dimensions, then remove clone rupak mandal wrote: Thanks for the quick reply . The problem is that i cannot use visibility:hidden or position absolute. On Fri, Sep 4, 2009 at 3:42 PM, joey santiago

[jQuery] Re: Form Serialize - Not replace space with plus

2009-09-04 Thread Scott Haneda
Encode the URL string prior to submitting? This is almost always the safest method. Just decode it server side. With all encoded characters, JQ has nothing it need add +'s to. -- Scott Iphone says hello. On Sep 4, 2009, at 1:19 PM, Aaron Kreider aa...@campusactivism.org wrote: I'm

[jQuery] Re: TableSorter and colspans

2009-09-04 Thread Matthew Abbott
Ive used the tablesorter alot in my projects, and Ive had the need for this as well. I found a DataTables plugin which looks like it can do colspans, but I havent tried it. I actually looked after reading your post to see if it supported the colspans now, as earlier versions didnt and I see it

[jQuery] clicking Submit does not refresh the page -but- submitting with an onchange event does

2009-09-04 Thread Alan
I have a form... form id=imageUploader1 action=upload-image.php method=post enctype=multipart/form-data input name=photoNumber type=hidden value=1 input name=sourceFile type=file size=20 style=font-size: 8pt; brinput type=submit

[jQuery] Re: clicking Submit does not refresh the page -but- submitting with an onchange event does

2009-09-04 Thread Alan
I should be clearer on what I mean when I say the page refreshes when an onchange event is used to submit. Specifically, I see the echo'd result from PHP. {result:success,surveyID:0001.1252110846.2,submitTime: 1252110846,photoNumber:1}