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

2009-09-03 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 http://google.com"; target="_blank">google.com b). exam...@example.com should become mailto:exam...@exampl

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

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

[jQuery] Re: Form is always submitting

2009-09-03 Thread Cold Flame
Hi, If you set value of type attribute to button instead of submit the form will not submit. Like if you want to make an ajax call on send message button. i.e Regards Umair Shahid On Sep 4, 11:03 am, Bluesapphire wrote: > Hi! >     Kindly visit following link: > > http://www.articlecon.com/si

[jQuery] Form is always submitting

2009-09-03 Thread Bluesapphire
Hi! Kindly visit following link: http://www.articlecon.com/sitesdemo/ship/viewquote.php?mid=1 When I click 'Send Message To Shipper' button, Form is submitted, where as I placed following jQuery code to stop submission. jQuery(document).ready(function(){ var Mts, clk, sShow;

[jQuery] Re: Is this "quirk" of jQuery still true?

2009-09-03 Thread RobG
On Sep 4, 11:28 am, p_W wrote: > I just wanted to address setAttribute real quick...correct me if I'm > wrong, but I was under the impression that IE does not support > setAttribute(), that you had to use dot notation for IE (so > element.attribute = value instead of element.setAttribute("attribu

[jQuery] Re: using ajaxForm for forms created -after- the document loads

2009-09-03 Thread Alan
Thanks, Mike. That's good to know. On Sep 1, 12:22 pm, Mike Alsup wrote: > >         $('#form1').ajaxForm(function() { > >                 alert("It helps to enter the correct form name."); > >         }); > > :-) > > By the way, you don't need to guard against accidentally invoking > ajaxForm m

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

2009-09-03 Thread brian
On Thu, Sep 3, 2009 at 10:23 PM, Alan wrote: > > Thanks, Brian. I appreciate it. > > As mentioned, the document has the following script references in > ... >         >         >         > > As a result of a user action, JavaScript (from script.js) generates a > form and inserts it into the html o

[jQuery] Re: Ajax not working in Firefox

2009-09-03 Thread emmecin...@gmail.com
Well what exactly is the error? What is different about the server response from FF2 vs. FF3? On Sep 3, 9:04 pm, RPrager wrote: > I've been using Firebug. The data that my browser is sending looks as > expected. > > Here is the information from firebug: > > Response Headers > Date: Fri, 04 Sep

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

2009-09-03 Thread Alan
Thanks, Brian. I appreciate it. As mentioned, the document has the following script references in ... As a result of a user action, JavaScript (from script.js) generates a form and inserts it into the html of a table cell. It also calls the Ajax form function to regist

[jQuery] Re: Ajax not working in Firefox

2009-09-03 Thread RPrager
I've been using Firebug. The data that my browser is sending looks as expected. Here is the information from firebug: Response Headers Date: Fri, 04 Sep 2009 01:54:24 GMT Server: Apache/2.2.6 (Fedora) Content-Length: 179 Connection: close Content-Type: text/html Request Headers User-Agent

[jQuery] Re: Is this "quirk" of jQuery still true?

2009-09-03 Thread p_W
I just wanted to address setAttribute real quick...correct me if I'm wrong, but I was under the impression that IE does not support setAttribute(), that you had to use dot notation for IE (so element.attribute = value instead of element.setAttribute("attribute", "value")) On Sep 3, 4:36 pm, Ricar

[jQuery] jcarousel bug when using header application/xhtml+xml

2009-09-03 Thread oly
on line 111 the nodeNames need changing from upper case to lower case. from if (e.nodeName == 'UL' || e.nodeName == 'OL') { to if (e.nodeName == 'ul' || e.nodeName == 'ol') { simply because all tags should be lower case, if using the xhtml+xml header you will get an error about clip[0] being und

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

2009-09-03 Thread brian
I've done this. The PHP script can just echo the path (from webroot) to the saved image. You'd then just create a new Image, assign the src, and add it to the DOM. What I do, though, is echo a JSON object with the src, width, and height, then append the image. If you post your code, I'm sure we c

[jQuery] Re: Testing the first character of an H1

2009-09-03 Thread dashard
jQuery.expr[ ":" ]["begins-with"] = function(elem, index, match) { return ( new RegExp("^" + match[3]).test( elem.textContent || elem.innerText || "" )); } $("p:begins-with('\“'), h1:begins-with('\“'), h2:begin

[jQuery] Re: Testing the first character of an H1

2009-09-03 Thread dashard
Where would I put the "jQuery.expr" code you created? Would love to test. And thanks in advance! On Sep 3, 10:32 am, KeeganWatkins wrote: > You can always create a new selector, one that works *almost* > as :contains does. The issue in your case (as I understand it) is > that :contains does a

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

2009-09-03 Thread mumbojumbo
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 JS is still enabled

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

2009-09-03 Thread Alan
I've been reading a variety posts, looking at code examples, and still not able to wrap my head around getting results returned from the server. So, if anyone has the time to answer this, please assume I know very little. Here's what does work: I have a webpage that references three scripts: my

[jQuery] Help modifying jquery.lavalamp.min.js

2009-09-03 Thread Karen Morales
Hi Is it possible to modify the class below (jquery.lavalamp.min.js) so that when the LavaLamp click event is set on a specific text, the text color is set to red. For instance when loading this link http://karen.2kmegs.com/ the 'Home' (since its the active one) is set to red. (function($) { $.fn

[jQuery] Help modifying jquery.lavalamp.min.js

2009-09-03 Thread Karen Morales
Hi Is it possible to modify the class below (jquery.lavalamp.min.js) so that when the LavaLamp click event is set on a specific text, the text color is set to red. For instance when loading this link http://karen.2kmegs.com/ the 'Home' (since its the active one) is set to red. (function($) { $.fn

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
Looks like i have to put in all the tags etc... I was just trying to run a quick test so i didnt put all the tags in there. When i put it all in, the unblockUI worked. I feel like a an Id10t. -m On Sep 3, 4:19 pm, Matthew Abbott wrote: > Yup took out the z-index too. I have it in there bec

[jQuery] Re: Port Prototype Code to jQuery?

2009-09-03 Thread Jermaine
Any thoughts on my previous reply? On Sep 2, 9:51 am, Jermaine wrote: > @Josh Powell: Sure here is the full source in HTML (below you'll find > the Javascript Source written in Prototype) > > > HTML: > ==

[jQuery] Image processing for IE navigators ?

2009-09-03 Thread zeflex
Hi, About images, when an image is resized into Firefox ; the image seems to be clean ( ex : 150x150 to 130x130 ). Into IE , the same image is very bad , IE do nothing to treat this image. Maybe Jquery can do that ? In php I know how to do this but it's for too many images with differents size

[jQuery] Re: Is this "quirk" of jQuery still true?

2009-09-03 Thread Ricardo
Nope. The DOM (Document Object Model) has a tree structure, just like HTML, with elements owning children. And as HTML is a "static" document (you can't mess with it any other way except via DOM), you can't traverse it, you can only traverse the DOM that represents it :) On Sep 3, 10:15 am, "Rick

[jQuery] Re: Ajax not working in Firefox

2009-09-03 Thread emmecin...@gmail.com
You **must** install and use something like Firebug or TamperData to see what your browser is sending to the server, and what your server is sending back. Just because the HTML response content looks like an error does not necessarily mean that the HTTP response contained an error code (for exampl

[jQuery] Effects like slideDown() that leave display set to "inline"

2009-09-03 Thread emmecin...@gmail.com
The online documentation for "slideDown" and "slideUp" says that only the height is affected by those routines. That claim is false: the value of "display" is also changed, and for me that's a problem. I have a div that's set up with "position: absolute" and "display:inline". I want that box to

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
Yup took out the z-index too. I have it in there because when i use the UI datepicker it goes behind the blockUI. Still has the IE problem. On Sep 3, 4:16 pm, MorningZ wrote: > have you tried dropping the z-index styling?  that's got to be an > issue > > On Sep 3, 3:49 pm, Matthew Abbott wrot

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread MorningZ
have you tried dropping the z-index styling? that's got to be an issue On Sep 3, 3:49 pm, Matthew Abbott wrote: > 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. > > > > >      

[jQuery] Re: Looking to sell a jQuery Conference (Boston) ticket

2009-09-03 Thread nextpulse
Ticket is sold. On Sep 2, 11:16 pm, nextpulse wrote: > I am selling mine too - selling at original price: $150 > (Last minute plan change - so I can't make it) > PM me if you are interested. > > On Sep 1, 12:49 pm, "Eric S." wrote: > > > Thetickethas been spoken for. > > > On Sep 1, 11:19 am,

[jQuery] Autocomplete: implement result() to link a selection

2009-09-03 Thread ripcurlksm
I have autocomplete working for a list of colors(red, green, blue, etc). I created an array of $id's to match each color. For example if someone types and selects "red", I want it to go to a page like mypage.php?id=1. How can I (1) parse the ids in the array and (2) implement the result() func

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
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' } }); $('#btnClose').cl

[jQuery] Re: Cancel combo change event

2009-09-03 Thread James
You need to save the original value somewhere. You can store it in a Javascript object/array. Though that requires generating the Javascript beforehand. If you want to actually put that value in the HTML, I suggest the jQuery Metadata plug-in. http://plugins.jquery.com/project/metadata Basically i

[jQuery] Re: AJAX-queries in Internet Explorer

2009-09-03 Thread James
Hmm.. It looks okay to me. Could you define "In IE I need to wait 5-6 seconds" a little more? Does that mean you have wait for the page to finish loading, then wait 5-6 seconds, then do any drop-down selection? Or does it mean you do a drop-down selection, then wait 5-6 seconds (with a setTimeout

[jQuery] Re: Thickbox action back

2009-09-03 Thread ebru...@gmail.com
I fount a solution myself. On 3 sep, 19:56, "ebru...@gmail.com" wrote: > Hello, > > I am using the Thickbox extension for jQuery. I have added a form > field to send data, but when there are errors he shows those in a list > but the form is gone. Is there a way to go a action back in the > Thick

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
no sorry its not on a public server where anyone can access it. I have been going back and taking things out.. and puting the stuff back in to see what part is making it fail.. On Sep 3, 2:26 pm, Mike Alsup wrote: > > Im using the blockUI() plugin in jquery and I attached a click event > > to a

[jQuery] Re: unblockUI() problems in IE

2009-09-03 Thread Mike Alsup
> Im using the blockUI() plugin in jquery and I attached a click event > to a button to call the unblockUI(). > > What it does is make the content of the block disappear, but the block > and the modal background still are visible. This is only happening in > IE.  Im using IE7 currently.  Firefox i

[jQuery] Re: Ajax not working in Firefox

2009-09-03 Thread RPrager
I just tested this code using FF2 and it works just fine. This appears to be a FF3 problem only. I'm currently using Firefox version 3.5.2. Any ideas? On Sep 3, 10:31 am, RPrager wrote: > Thanks for the idea but adding (dataType: 'text') did not produce a > different result. > > On Sep 3, 9:32 a

[jQuery] SUPERFISH -joomla- HELP

2009-09-03 Thread ShekinahArts
I have two superfish menus installed on joomla. (topmenu & mainlevel). see: joomla.shekinah-arts.com I am having major issues trying to get the widths right. I'm using the "CUSTOM MENU WIDTH" in joomla and not sure how to get it right without that either. Whatever way works will be helpful! If I

[jQuery] Re: (validate) Is it possible to explicitly call a registered rule

2009-09-03 Thread Jörn Zaefferer
Sure. Something like this: $.validator.addMethod("custom", function() { var validEmail = $.validator.methods.email.apply(this, arguments); return validEmail && someOtherCheck(); }); Jörn On Thu, Sep 3, 2009 at 6:37 PM, TheChrisPratt wrote: > > I have a case where I want to create a validato

[jQuery] Thickbox action back

2009-09-03 Thread ebru...@gmail.com
Hello, I am using the Thickbox extension for jQuery. I have added a form field to send data, but when there are errors he shows those in a list but the form is gone. Is there a way to go a action back in the Thickbox screen? Erwin

[jQuery] unblockUI() problems in IE

2009-09-03 Thread Matthew Abbott
Im using the blockUI() plugin in jquery and I attached a click event to a button to call the unblockUI(). What it does is make the content of the block disappear, but the block and the modal background still are visible. This is only happening in IE. Im using IE7 currently. Firefox is fine. An

[jQuery] Re: Email obfuscator/defuscator plugin

2009-09-03 Thread brian
Nice catch, thanks. I really should also make it a bit more configurable. On Wed, Sep 2, 2009 at 8:44 PM, JazeNZ wrote: > > instead of > >                var address = obfuscated[1] >                        .replace(' AT ', '@') >                        .replace(' DOT ', '.') >                    

[jQuery] Re: Hiding table rows based on value

2009-09-03 Thread evanbu...@gmail.com
I was able to work it out with this code if this helps anyone $(document).ready(function() { $('#chkInternal').click( function() { $('.internalField').each(function() { if ($("#chkInternal").is(":checked")) { alert("Showing all fi

[jQuery] (validate) Is it possible to explicitly call a registered rule

2009-09-03 Thread TheChrisPratt
I have a case where I want to create a validator that makes use of already defined rules. Is it possible to somehow call $.validator.rules.ruleA('value',element,null)?? Thanks. (*Chris*)

[jQuery] Re: setting height of popup multiple times, background image still shows in IE6

2009-09-03 Thread Andy
Bump On Sep 1, 5:27 pm, Andy wrote: > I have a hidden popup that I populate with content and it dynamically > expands to the size of the content. > > I then show the popup. > > When a user clicks on another link, it populates the popup with longer > or shorter content. > > When the content is SH

[jQuery] Re: Clickable autocomplete, like google

2009-09-03 Thread ladksak
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 the string in any part of the keywords and highlight that thats w

[jQuery] Re: Do I need to include whole JQuery file ?

2009-09-03 Thread Charlie Griefer
On Thu, Sep 3, 2009 at 4:28 AM, Gaurang Mistry wrote: > > Hello, > I am new to jquery. > > I am using only hide and show functions. > > Do I need to include whole jquery file ? > Which part of file I need to remove ? > I think manipulating the core file in any way is a bad idea. I mean orders o

[jQuery] Trying to access elements created by remotely loaded script

2009-09-03 Thread AsymF
I am currently trying to add extra functionality to the AddThis and OnlyWire social bookmarking scripts. Basically I want to be able to send calls back to our server using AJAX to track when using these services results in a sale and how popular they are on a site. For instance, in AddThis, there

[jQuery] Jquery with .each and .load

2009-09-03 Thread noobtube
I am trying to run a .each(function()) within a document.load. but it does not seem to work. the minute I make it a "document.ready" it works (not properly). can you not run .each within a doc.load. I need too as I am trying to resize images (hence the load) the specific resizing code works well o

[jQuery] Re: tool tip / ajax / image map

2009-09-03 Thread webguy262
Sorry, not sure what you mean by reinitialize. Can you be more specific? Here's what's happening / not happening... Please go here: http://brinsterinc.com/blazzi/events1.php Click the image in the footer. It loads in the main div. Mouse over the headlight. No tooltip, just an alt tag. Clic

[jQuery] Re: Ajax not working in Firefox

2009-09-03 Thread RPrager
Thanks for the idea but adding (dataType: 'text') did not produce a different result. On Sep 3, 9:32 am, 月讀 wrote: > My english is not well. > > $.ajax({ >         type: "POST", >         url: "newcoleng", >         data: "F10=Yes&F11=No", >         dataType: 'text', >         success: function(

[jQuery] IE7 dxtrans.dll crash!!

2009-09-03 Thread CvP
AppName?: iexplore.exe AppVer?: 7.0.6000.16441 ModName?: dxtrans.dll ModVer?: 7.0.5730.11 Offset: 87fe sample file: http://riasat-al-jamil.com/template_code_geass%20v7.html clicking the "screenshot" tab causes crash ONLY in IE7. IE8, IE8 compatibility mode, Chrome, Firefox, Opera works fine

[jQuery] jQuery Coda Slider Tweak - Move three panels at a time

2009-09-03 Thread scotthaslehurst
I have implemented a coda slider using coda-slider.1.1.1.js on a e- commerce products page here http://absolute-advantage.net/sheadorns/?page_id=4 At the moment clicking the arrows moves each panel one at a time. However, I would like it to scroll three. I'm assuming that I will have to edit th

[jQuery] Re: Ajax not working in Firefox

2009-09-03 Thread 月讀
My english is not well. $.ajax({ type: "POST", url: "newcoleng", data: "F10=Yes&F11=No", dataType: 'text', success: function(data){ alert( "Data Saved: " + data ); } }); Try it.

[jQuery] Troubles with binding to an element by id

2009-09-03 Thread Alonzo
Hi What im trying to do is that when the esc key is pressed on the text input field (id = txtSearch), some code will run. this is my code: $(document).ready(function() { $('#txtSearch').bind('keyup', function(e) { var characterCode; // literal character code will be

[jQuery] Re: [validate] plugin: combine features from multiple demos

2009-09-03 Thread seezee
hi, jörn, thanks for the great plugin. if i can get it working as we need it on our main site, we'll be adding it to all our other sites as well. i managed to get the form to validate w/ accordion functionality yesterday (i found the custom method before you replied), but i don't see how i can

[jQuery] Re: abeautifulsite.net plugins : tree view and context menu together

2009-09-03 Thread Julien
LRancez comment on tree view plugin : To add a context menu you need add some lines inside the js so you can configure any callback function: function showTree(c, t) { $(c).addClass('wait'); $(".jqueryFileTree.start").remove(); $.post(o.script, { dir: t }, function(data)

[jQuery] Re: Testing the first character of an H1

2009-09-03 Thread KeeganWatkins
You can always create a new selector, one that works *almost* as :contains does. The issue in your case (as I understand it) is that :contains does a global search, so text that is not at the beginning is still matched. It sounds like what you need is a :begins- with filter. Extending the filter e

[jQuery] Hiding table rows based on value

2009-09-03 Thread evanbu...@gmail.com
Hi I have a checkbox that when clicked I want to hide all of the entire rows in my table where those fields with a class of internalField equals True. The hiding part works well but when I uncheck the checkbox the rows do not become visible again. So I guess my question is how do I toggle the v

[jQuery] Re: (autocomplete) Is it possible to cache the empty results ?

2009-09-03 Thread mathieuuu
I found it : in fact I had to replace "if (data && data.length)" by "if (data)" and now it's working with empty results. Shouldn't it be the appopriate behaviour ? On Sep 3, 2:47 pm, mathieuuu wrote: > Does somebody has any idea ? > > On 31 août, 15:28, mathieuuu wrote: > > > Hi, > > > Thanks

[jQuery] Re: Ajax not working in Firefox

2009-09-03 Thread RPrager
The url of the call is in the same domain. I added the error property but it still always comes back a success in both FF and IE. On Sep 3, 8:09 am, gil wrote: > The url of the call it's in the same domain? Because, FF does allow > cross domain. > > Also, try adding the error property, to see t

[jQuery] Re: rounded corner recommendations

2009-09-03 Thread Rich Sturim
ravi -- thanks so much for the feedback, I really appreciate your investigative work. cheers, Rich On Aug 31, 11:18 am, "[ ravi ]" wrote: > On Aug 31, 2009, at 10:31 AM, [ ravi ] wrote: > > > On Aug 31, 2009, at 10:13 AM, Rich Sturim wrote: > > >> That looks like a great choice -- thanks for t

[jQuery] How do I prevent the newly entered text in the text input from disappearing upon focus?

2009-09-03 Thread Rick Faircloth
I posted this yesterday, but didn't see my original in my email, so didn't know if it never made it, or if it was perhaps just not answered.but I thought I'd post it again so if anyone has any ideas. Rick ---

[jQuery] Cycle Plugin - Pager and link to new page

2009-09-03 Thread Beasty
I have got existing markup for my pager (see below). How can i get the links working (got to the "href"-page) by clicking on them? It does not work right now.. It seems, that the pagerAnchorBulding prevents the default event? Please help. header header ... using this cycle setup: $('#slidesh

[jQuery] Do I need to include whole JQuery file ?

2009-09-03 Thread Gaurang Mistry
Hello, I am new to jquery. I am using only hide and show functions. Do I need to include whole jquery file ? Which part of file I need to remove ?

[jQuery] jquery validate submit character set error

2009-09-03 Thread abitnerdy
I have this form that shows up on http://www.bspmedia.eu/inspiration.html by clicking on the last paragraph. type a message with for example "testöäå" and then hit the submit button. On submit the form validates and then sends the mail. But it sends this message as "testöäå". If I look in fir

[jQuery] Image Resize onload - works 50% of the time : help?

2009-09-03 Thread Roboto
Hey everyone, Still new to jquery, I was just using it to resize large images to ensure my css wouldn't break. Sometimes it works, and sometimes it doesn't. By working, it's working as intended. By not working, the images aren't showing at all (FF, IE, Saf4) -- or safari 4.0 isn't rendering it co

[jQuery] Re: Is this "quirk" of jQuery still true?

2009-09-03 Thread Rick Faircloth
> It is impossible to know the OP was just a bit lazy or > doesn't fully understand the concepts. The latter...I'm the OP and I can promise you that I don't fully understand all the concepts. :o) Anyway, back to the DOM & HTML... If, as you state, "there is no HTML in the DOM," from a "technica

[jQuery] Re: Is this "quirk" of jQuery still true?

2009-09-03 Thread Rick Faircloth
Saving state for positioned elements, etc. (other than just form field data) is an interesting problem, as you say, with the complexity of apps using user-positioned elements or other manipulations. I've no solution at this point...haven't run into that situation...yet... -Original Message-

[jQuery] Re: Ajax not working in Firefox

2009-09-03 Thread gil
The url of the call it's in the same domain? Because, FF does allow cross domain. Also, try adding the error property, to see the message. On Sep 2, 3:58 pm, RPrager wrote: > Hello Everyone, > > I'm fairly new to using ajax with jQuery and I'm having an issue in > firefox. Here's my ajax call:

[jQuery] Re: (autocomplete) Is it possible to cache the empty results ?

2009-09-03 Thread mathieuuu
Does somebody has any idea ? On 31 août, 15:28, mathieuuu wrote: > Hi, > > Thanks for your answer rupak but I tried your fix and it did not give > the expected result. > On the contrary, now I think that the plug in is no longer using > cache, even for non-empty results... > > On 31 août, 13:58,

[jQuery] Re: [validate] plugin: combine features from multiple demos

2009-09-03 Thread Jörn Zaefferer
Take a closer look at the multipart demo and its custom pageRequired-method - thats key! Jörn On Wed, Sep 2, 2009 at 11:24 PM, seezee wrote: > > i posted this to the plugin group, but it appears to be a dead forum > -- last post was february. i'm trying to combine features of these 2 > demos: >

[jQuery] Re: Newbie: Cannot get .text() to work with IE7

2009-09-03 Thread Knight, Doug
Hi Leonardo, I caught that right after I posted. With it fixed, I still have the same issues between FF and IE7. Doug From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Leonardo K Sent: Wednesday, September 02, 2009 8:41 AM To: jquery-en@googlegroups.com Subject:

[jQuery] [Form plugin] clearForm:true strange behavior in IE8

2009-09-03 Thread Massimiliano Marini
Hi all, this behavior happen only in IE8 (now in my case), instead FF3+ and Chrome both works well. I've a form with two tag e two input text, I do a validation and submission with ajaxSubmit(). In IE8 clearForm:true works well but when I do another Submit and I've not changed the select valu

[jQuery] Re: Accessing Elements after adding them with Append

2009-09-03 Thread Daniel
Hi mkmanning, works like a charm, thanks a lot! :) Daniel On 2 Sep., 18:00, mkmanning wrote: > Use .live() > > http://docs.jquery.com/Events/live#typefn > > On Sep 2, 1:51 am, Daniel wrote: > > > > > Hi There, > > > I'm having trouble accessing some Elements with jQuery after I created > > th

[jQuery] Re: Hover does not stop

2009-09-03 Thread Mario
Now it works fine! Thanks a lot to all for your help! $(function(){ var state = 0; $('#navigation').mouseover( function() { if(state == 0) {$(this).animate({left: '0'}, 'slow'); state = 1;}} ); $('#navigation').mouseout( function() {if(state == 1)

[jQuery] Jumpstart

2009-09-03 Thread Liam Potter
http://starter.pixelgraphics.us/ Can someone explain what's happening in this plugin pattern. Thanks, Liam

[jQuery] Autocomplete plugin onclick event

2009-09-03 Thread Searcher
Hi, I'm trying to use the Autocomplete plugin from http://docs.jquery.com/Plugins/Autocomplete in a pseudo select box. I'd like the suggestions to appear when the user clicks on the appropriate arrow. $('#input').autocomplete(['0','1','2','3','4','5','6','7','8','9'], { minChars: 0 }); $('#inpu

[jQuery] jquery tablesorter deleted by antivirus

2009-09-03 Thread ethodaddy
Hey guys, wondering if anyone has experience this before. I'm a sys admin for a web dev company and have multiple servers in different locations. this morning domains on different servers stopped behaving the way the should because the tablesorter plugin was deleted because the antivirus on both

[jQuery] jQuery Build Procedure - Help

2009-09-03 Thread Lokesh
Hi, I am new to jQuery, and following the link http://docs.jquery.com/Downloading_jQuery - section Build Process to build it And ended up with the error. Execute failed: java.io.IOException: Cannot run program "svn": CreateProcess error=2, The system cannot find the file specified Could some o

[jQuery] Testing the first character of an H1

2009-09-03 Thread dashard
Is there a way -- I've wracked my brains on this but I'm a jQuery novice -- to determine what the first letter of a selector is? For example, if the very first letter of a paragraph is a quote (or a ‘ , or a “ , etc) I would like to apply a negative text- indent to the found paragraph so as to re

[jQuery] Why is my mopbox fading when hover over forward/backward buttons?

2009-09-03 Thread alyanm
I have put in the mopbox plugin on my site to display pictures and I really love it. There are just a few quirks about it and I'm wondering if anybody can help me. 1. In firefox/safari, when I hover my mouse over the forward/backward arrow buttons the entire mopbox, including the picture becomes

[jQuery] document fadein cancels other jquery effects

2009-09-03 Thread eveo.org
so i have this scroller on my homepage, you click the arrow, new image fades in i then add a general page fade in and it cancels my other one here is the script that makes it not work $(document).ready(function(){ $(document).ready(function () { $('#cont').fadeIn(800);

[jQuery] Re: Email obfuscator/defuscator plugin

2009-09-03 Thread JazeNZ
instead of var address = obfuscated[1] .replace(' AT ', '@') .replace(' DOT ', '.') .replace(/^\s+|\s+$/g, ''); try var address = obfuscated[1] .replace(' AT ', '@')

[jQuery] Cancel combo change event

2009-09-03 Thread supermozzie
I've got 4 identical combo boxes like the one below. Retained Rolled-over Recommended Not recommended I need to limit the combo box, so that only 1 can have the "Recommended" value at any one time. When the user tries to set other combo boxes to "Recommended", i

[jQuery] Ajax not working in Firefox

2009-09-03 Thread RPrager
Hello Everyone, I'm fairly new to using ajax with jQuery and I'm having an issue in firefox. Here's my ajax call: $.ajax({ type: "POST", url: "newcoleng", data: "F10=Yes&F11=No", success: function(data){ ale

[jQuery] Overriding a link

2009-09-03 Thread s15199d
Here's my code: 1. function handleLoading(data) { 2. var $content = $("").html(data); 3. var $visualBadge = $("#visualBadge"); 4. 5. $visualBadge.children("div").replaceWith($content); 6. $visualBadge.find("a").click(handleClick); 7. } 8

[jQuery] [validate] plugin: combine features from multiple demos

2009-09-03 Thread seezee
i posted this to the plugin group, but it appears to be a dead forum -- last post was february. i'm trying to combine features of these 2 demos: http://jquery.bassistance.de/validate/demo/milk/ http://jquery.bassistance.de/validate/demo/multipart/ specifically, i want the ability to use custom e

[jQuery] Returning an XML attribute from success or complete

2009-09-03 Thread Dave Cooper
I am trying to create a function where i can return some values from an XML file with the $Ajax call. The XML: located in the root of my webb application /languagemap.xml The Script: function callerFunction(languageName) { var lang

[jQuery] Re: Strange behaviour when de-activating form

2009-09-03 Thread RobG
On Sep 3, 3:32 am, burlistic wrote: > Hi All, > > Not sure this is the best place for this question, but I hope someone > can help. > > I have a form which requires a lot of client side validation. As this > takes a while I am using an overlay to stop access to the form. That is probably point

[jQuery] Re: [jgGrid] How to populate editoptions:{value: ... } with query result.

2009-09-03 Thread Massimiliano Marini
Never mind, I've solved with dataUrl that works perfectly. Regards -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ "It's easier to invent the future than to predict it." -- Alan Kay

[jQuery] Re: Animating show() and hide() of TBODY

2009-09-03 Thread candlerb
Ticket http://dev.jquery.com/ticket/5157

[jQuery] AJAX-queries in Internet Explorer

2009-09-03 Thread nubcake
Hello! I've having troubles in Internet Explorer with AJAX-queries using jQuery. When I change 'option', located in the below code, in FF/Chrome the $.post is sent almost instantly. In IE I need to wait 5-6 seconds otherwise the $.post will not be sent to query.php. Is there any solution to this

[jQuery] Re: Animating show() and hide() of TBODY

2009-09-03 Thread candlerb
I have made a frig which solves this, by applying display: table-row- group instead of display: block for TBODY elements. There's a slight "bounce" when unhiding (Firefox 3.0.13) - seems the height goes a few pixels to far - but otherwise it seems OK. I doubt this hard-coded logic is the right wa

[jQuery] Re: Strange behaviour when de-activating form

2009-09-03 Thread burlistic
Any suggestions welcome.. I really need to get this working today and I can't understand the behaviour. Many thanks Will W On Sep 2, 6:32 pm, burlistic wrote: > Hi All, > > Not sure this is the best place for this question, but I hope someone > can help. > > I have a form which requires a lot

[jQuery] Re: Strange behaviour when de-activating form

2009-09-03 Thread burlistic
Any suggestions welcome.. I really need to get this working today and I can't understand the behaviour. Many thanks Will W On Sep 2, 6:32 pm, burlistic wrote: > Hi All, > > Not sure this is the best place for this question, but I hope someone > can help. > > I have a form which requires a lot

[jQuery] Re: Animating show() and hide() of TBODY

2009-09-03 Thread candlerb
Here's a page which demonstrates the problem; hiding and showing tbody#middle makes it jump to the end of the page as it gets display: block. It works if you set anim_speed to 0 (but then it's not animated, of course) Test animate of tbody jQuery( function($) { var anim_speed = 250; var t

[jQuery] Re: Ajax get contents question

2009-09-03 Thread David .Wu
it's funny that I can use find to get res2's html, why? filter res get res2 failed find res failed res2 get On 9月3日, 下午12時11分, "David .Wu" wrote: > This is my testing php code, I found if I use filter, I can only get > the content from first level of object, for example > 12 > > I can get res's