[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"}

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

2009-09-04 Thread Alan
I have a form... ... that is gets processed by AjaxForm on submit... // Set Ajax options var options = {success: respondToUpload}; // Register forms $('#imageUploader1').ajaxForm(options);

[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 loo

[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 wrote: I'm using $("form").serialize(

[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: 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 on

[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 > ('dis

[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] 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 form

[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 St

[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 plugin

[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 the

[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] 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: When I enter the first character into the field, I get a Firebug warning: "The 'charCode' property of a keyup event should not be used. The value is meaningless." Is there a way to fix this?

[jQuery] Re: Clickable ?

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

[jQuery] Re: Clickable autocomplete, like google

2009-09-04 Thread ladksak
nobody knows? :p On 3 set, 12:59, ladksak 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 could find th

[jQuery] Re: Clickable ?

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: 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 wrote: > Has anyone now how to simplify the following expression by avoiding > using attr("id") > > alert

[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 kno

[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. F

[jQuery] Re: Clickable ?

2009-09-04 Thread MorningZ
I don't understand... The first post says > "I have a that only contains an image" and later on a post says: > And here is the html: > a> That wouldn't be a with only an image there On Sep 4, 2:02 pm, Charlie Griefer wrote: > I don't know that you can use a filter the way you're

[jQuery] Re: Clickable ?

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 element), tr:odd (matches odd-numbered table rows.. good for zebra-striping)... See the sections about the various types of filters at http://docs.jquer

[jQuery] Re: Clickable ?

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: Does anybody have an idea?

[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}; $('#imageUploader1').ajax

[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 ad

[jQuery] Test message - Please disregard

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

[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 s

[jQuery] Re: Clickable ?

2009-09-04 Thread Charlie Griefer
Oooh good call. I had forgotten :) On Fri, Sep 4, 2009 at 10:20 AM, MorningZ 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 wrote: > > does that div have an id attribute? if so, > > > >

[jQuery] Re: Clickable ?

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 wrote: > 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 wrote: >

[jQuery] Re: Clickable ?

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 wrote: > > I have a that only contains an image. > How would I create a jquery-click function that basically would > represent a normal tag for his ? > Thank yo

[jQuery] Clickable ?

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

[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 render

[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 wrote: > > > We've just released another jQuery plug-in which emulates the > iPh

[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. b

[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: 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: 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: 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 wrote: > Well frankly that's not looking like a jQuery problem to me.  Your > *server* is returning different res

[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: 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] 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%; min

[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] 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 (the

[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] 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, Alan 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 exact cod

[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 what

[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 wrote: > Firefox 3 response: > > Not available at present > Status c

[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 wrote: > > Yeah take out thetags in your example, and in IE > > you should get th

[jQuery] Re: Ajax not working in Firefox

2009-09-04 Thread RPrager
Firefox 3 response: Not available at present Status code = NL 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 nor any positional parameters. The page is at a loss as to how to serve my need

[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" 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 make this a complet

[jQuery] Re: unblockUI() problems in IE

2009-09-04 Thread Mike Alsup
> Yeah take out thetags 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] 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 one

[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 a

[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] 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 playl

[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 wrote: > You can also try to use animate which is part of jquery core. Look up > some examples on the jquery website, there are quite simple.

[jQuery] Re: unblockUI() problems in IE

2009-09-04 Thread Matthew Abbott
Yeah take out thetags 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 wrote: > > It seems to bug because i am using a > > Ive tried the tag inside the and outside the like > > below. > > If i t

[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? Thi

[jQuery] Re: jQuery Superfish Problem

2009-09-04 Thread TheoSoft
You don't have any submenus. On Sep 4, 3:48 am, Lexmarketing 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 ... > > Here a li

[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: unblockUI() problems in IE

2009-09-04 Thread Mike Alsup
> It seems to bug because i am using a > Ive tried the tag inside the and outside the like > below. > If i take out the tag, it goes away fine without issues. > > > > >         $(function() { > >                 $.blockUI({ message: $('#question'), css: { width: '275px' } > }); >        

[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: error when uploading files

2009-09-04 Thread Alin
I had the same problem, just rename the submit button to something else, an example: On Sep 2, 8:27 pm, undertow wrote: > I get an error "Error: Form elements must not be named "submit"." when > i have a form with the ability touploadfiles.  If afileis selected > foruploadi get the error, and

[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: "POST

[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] 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. function ExpandCollapseOnLeftPanel(obj) { if ($(obj).attr("src") == "/Content/Images/arro

[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] 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 wrote: > I was able to get this working.  I'm now integrating with codeigniter > to see how it does ther

[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 > wrote: exactly... but if you hide it with visibility:hid

[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 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 wrote: > > 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 hi

[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 wrote: > Did it.  Works like a charm!  Thanks again Jack. > jake > > On Aug 21, 9:27 am, con-man

[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 wrote: > Hi R

[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] 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: 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 wrote: > Hi Team, > How to handle "onMo

[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 complet

[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 if

[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 ... Here a link to the side: http://typo3.lexmarketing.eu/ Best regards Swoboda Thomas

[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 and

[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 particula

[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] 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 wrote: > Thanks for reply.  But as you can see in the code, I want to s

[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 wrote: > Hi, > > If you set value of type attribute t

[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 and