[jQuery] keeping table header fix

2009-09-16 Thread macsig
Hello guys, I'd like to know if there is a way to keep a table header fixed on top of a div while I scroll the table rows. I have a div high 200px and the table itself is around 300px so when I scroll down I'd like to always see the header on top. I already use for the table tablesorter so the

[jQuery] Re: Superfish menu problem.

2009-09-16 Thread rupak mandal
Drop-down menu is working, but it will no display due to overflow:hidden in clear. You have to make some changes. Add height width in tail-top-menu and remove clear class from that div. .tail-top-menu { height:30px; width:100% } and also add height in .sf-menu a sf-menu li class

[jQuery] Re: Object doesn't support this property or method in IE

2009-09-16 Thread Ricardo
Hmm. No idea why it doesn't work in IE, but here are some general observations: You don't need the jQuery(function(){ part around the function. setTimeout(updateStatus, 2); // use the function object $(document).ready(updateStatus); //same here, pass the object, don't call the function. this

[jQuery] Re: Object doesn't support this property or method in IE

2009-09-16 Thread rupak mandal
I have face similar problem . Just check is there any html open or close tag missing in provStats.php. Thanks Rupak On Wed, Sep 16, 2009 at 12:16 PM, Ricardo ricardob...@gmail.com wrote: Hmm. No idea why it doesn't work in IE, but here are some general observations: You don't need the

[jQuery] Problem loading flash movie inside div

2009-09-16 Thread ximo wallas
Hello, I have a div that already contains a flash movie and some code that adobe flash needs to display the movie: /// div id=mydiv !--url's used in the movie-- !--text used in the movie-- !-- p align=left/p p align=center/p -- !-- saved from url=(0013)about:internet

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-16 Thread Paul
Given that, how would you allocate a timeout for say the first 3 slides and then have the other slides all running at the default timeout? On Sep 9, 8:06 pm, Mike Alsup mal...@gmail.com wrote: On Sep 8, 6:48 pm, Mike Alsup mal...@gmail.com wrote: Hey thanks Mike, I got the random timeouts

[jQuery] Re: Blocking UI for synchronous ajax calls

2009-09-16 Thread nomen
Hi Mike: Thank you for your answer. I have understand what do you mean between lock the browser and block th UI. To test it I have put a sleep in my server (in the function that calls the synchronous ajax call ) and I have see that in IE7 and IE8, it´s true, but, in FF3, Opera 10, Chrome

[jQuery] Re: Blocking UI for synchronous ajax calls

2009-09-16 Thread nomen
Hi Mike: Thank you for your answer. I have understand what do you mean between lock the browser and block th UI. To test it I have put a sleep in my server (in the function that calls the synchronous ajax call ) and I have see that in IE7 and IE8, it´s true, but, in FF3, Opera 10, Chrome

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

2009-09-16 Thread James
but where should I put it? On Sep 13, 5:47 pm, alexbodn.gro...@gmail.com wrote: multipleSeparator='+' On Sun, Sep 13, 2009 at 14:22, James spidman...@gmail.com wrote: hey, let me first thank for the great job you've done. could you please tell me how can I change the word separator from

[jQuery] caching result of selector in object, reusing

2009-09-16 Thread pantagruel
Hi, I have some selectors - an example would be $(#LinkToPreviousHit) all of which work fine when used directly. If I use it to toggle the class, which also works, I might do - $(#LinkToPreviousHit).attr({class: activeNavButton}); since I am using my selectors in multiple places I figured I

[jQuery] Safari 4 with jQuery/Json - anyone experience problems?

2009-09-16 Thread MiKiTiE
Hi everyone I've been working on an ajax call which activates a spellchecker when someone inputs a word (if it's incorrect) and returns a Json string of suggestions for the user to choose from, and then be able to replace the incorrect word. It seems to work the first couple of times but then

[jQuery] Re: [ first quest...]

2009-09-16 Thread Lord Gustavo Miguel Angel
thank´s you understand me! From: Ralph Whitbeck Sent: Tuesday, September 15, 2009 11:01 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [ first quest...] So if I understand what you're trying to do correctly. You want to select the first p tag that has the index of 0 in the

[jQuery] Re: Quicksearch. How to match only the beginning of a word?

2009-09-16 Thread minbo
I actually found the answer by myself. I edited two functions in the plugin itself (not in the options). Here it is for anyone who might need it. Original functions: function get_key() { var input = strip_html($('input[rel=' + options.randomElement + ']').val()); if

[jQuery] Re: Timers plugin and IE8 trouble

2009-09-16 Thread Petar
I solved it. It was caching problem, adding random query string does the thing: $('.sidebar').load('getjobs.php?rnd=' + new Date().getTime() );

[jQuery] Re: jQuery cycle IE issue

2009-09-16 Thread kcory
Hi Mike, Thanks for taking the time to respond but it still doesn't work. I've tried #slideshow1 and #slideshow1 img but still no improvement. I'm still getting the DOM queuing slideshow error in my console but now the height and width do have values. Any more suggestions? Thanks in advance

[jQuery] [forms] [ajax] Form submits, success message displayed but no data seems to be passed to php file

2009-09-16 Thread HairyJim
Hi all, I have this Jquery code, below, which I was hpoing would pass the data from the form over to form processing script but the problem I have is that the success is returned but the processing script does not seem to get the form data passed to it. I have tested the script is called by

[jQuery] Re: [forms] [ajax] Form submits, success message displayed but no data seems to be passed to php file

2009-09-16 Thread Jörn Zaefferer
You don't specify any data to submit in your ajax call. Use the data option, or better yet, the form's plugin ajaxSubmit method. It will handle the form serialization for you. Jörn On Wed, Sep 16, 2009 at 11:42 AM, HairyJim james.d...@gmail.com wrote: Hi all, I have this Jquery code, below,

[jQuery] fadeIn with IE 8 Compatibility Mode forced off

2009-09-16 Thread Mad-Halfling
Hi, are there problems with the animation with IE8 compatibility mode forced off? I am using meta http-equiv=X-UA-Compatible content=IE=EmulateIE8 to force IE 8 out of compatibility mode for my site, as I need to use the new CSS support that IE 8 finally properly implements (it's an internal

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

2009-09-16 Thread alexbodn . groups
On Wed, Sep 16, 2009 at 11:17, James spidman...@gmail.com wrote: but where should I put it? as an additional argument to autocomplete(). On Sep 13, 5:47 pm, alexbodn.gro...@gmail.com wrote: multipleSeparator='+' On Sun, Sep 13, 2009 at 14:22, James spidman...@gmail.com wrote: hey, let

[jQuery] Re: Facebook Connect jQuery

2009-09-16 Thread Avishai
wow, that works brilliantly. thanks! On Aug 30, 6:50 pm, Stefan Klasen kla...@gmail.com wrote: Do you use the ruby gem facebooker? It's using prototype as it's default JavaScript framework. Call it this way to use jquery instead: %= init_fb_connect('XFBML', :js = :jquery) % hope this helps

[jQuery] Re: [forms] [ajax] Form submits, success message displayed but no data seems to be passed to php file

2009-09-16 Thread HairyJim
Sorry, I have no idea where to use the .ajaxSubmit() option in the code. What do I need to change to pass the data over to the processing file? Thanks James On Sep 16, 10:49 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: You don't specify any data to submit in your ajax call. Use

[jQuery] jQuery PDF Viewer?

2009-09-16 Thread benji++
I'm looking for something that can display a PDF in a way similar to a typical jQuery image gallery (or a desktop PDF viewer, e.g. Acrobat or Preview). I tried out Mike Alsup's jQuery Media Plugin (www.malsup.com/jquery/media/), thinking that the iframe player might do the trick. But of course,

[jQuery] Simple CSS selector Question

2009-09-16 Thread pritisolanki
Hi, I am a beginner in Jquery who simply set up the configs and start exploring.please help me in following. I have starter kit html page. form Form 2 input name=bar value=YYY / input / /form p p class=stuffOkie this is hiding

[jQuery] Re: [forms] [ajax] Form submits, success message displayed but no data seems to be passed to php file

2009-09-16 Thread Jörn Zaefferer
Here is an example: http://jquery.bassistance.de/validate/demo/ajaxSubmit-intergration-demo.html Jörn On Wed, Sep 16, 2009 at 12:39 PM, HairyJim james.d...@gmail.com wrote: Sorry, I have no idea where to use the .ajaxSubmit() option in the code. What do I need to change to pass the data over

[jQuery] Re: jQuery PDF Viewer?

2009-09-16 Thread Sam Sherlock
I have'nt tried this but it does look goodhttp://pdfobject.com/ - S 2009/9/16 benji++ bheneg...@speakeasy.net I'm looking for something that can display a PDF in a way similar to a typical jQuery image gallery (or a desktop PDF viewer, e.g. Acrobat or Preview). I tried out Mike Alsup's

[jQuery] Re: keeping table header fix

2009-09-16 Thread Liam Byrne
do you actually have the headers in a thead, with the content in tbody ? Most people forget about those. L macsig wrote: Hello guys, I'd like to know if there is a way to keep a table header fixed on top of a div while I scroll the table rows. I have a div high 200px and the table itself is

[jQuery] Re: Simple CSS selector Question

2009-09-16 Thread Ralph Whitbeck
Take out the @ in your attribute selectors. The @ was depricated in jQuery 1.2 and taken out in 1.3. So your new selectors will look like... 1. $(input[name=bar]) 2. $(p[class]) documentation http://docs.jquery.com/Selectors/attributeHas#attribute

[jQuery] Re: caching result of selector in object, reusing

2009-09-16 Thread pantagruel
Never mind, it should have been obvious, the object properties weren't in my document.ready On Sep 16, 10:31 am, pantagruel rasmussen.br...@gmail.com wrote: Hi, I have some selectors - an example would be $(#LinkToPreviousHit) all of which work fine when used directly. If I use it to

[jQuery] Re: [forms] [ajax] Form submits, success message displayed but no data seems to be passed to php file

2009-09-16 Thread HairyJim
hmmm Im getting nowhere with this :/ So following the code on the page you suggested and the notes made about .ajaxSubmit I transpose it like thus but nothing happens, it does not even call the referenced thanks.php. jQuery(function(){ var options = { type:

[jQuery] Re: jQuery PDF Viewer?

2009-09-16 Thread Geert Baven
Bumpbox works in all modern browsers. based on mootools Here's a list in which browsers it has been successfully tested: - *Firefox 3 - 3.5* - *Internet Explorer 6 | 7 | 8* - *Google Chrome* - *Apple Safari 3 | 4* - *Opera 9.04* http://www.artviper.net/bumpbox.php 2009/9/16

[jQuery] this.reset() doesn't work

2009-09-16 Thread pritisolanki
Hi, I am trying to reset all the form element but it is not working can someone suggest the reason. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type

[jQuery] JQUERY listnav: includeAll Parameter translation

2009-09-16 Thread mansoft
It would be nice, if the includeAll parameter could be changed or extended to work like the noMatchText: Instead of true or false it should be empty or the text for the link i.e All, Alle, tous, todos

[jQuery] Loop over all input elements in form

2009-09-16 Thread pritisolanki
Hi All, I tried $(form).each(function() { alert(this.name); alert($(input).val()); }); in following HTML form id=form name=form1 Form 1 input name=foo value=XXX / /form form id=form name=form2 Form 2

[jQuery] serializeArray() only for enabled form elements

2009-09-16 Thread nowotny
Hello. I noticed that serializeArray() method does only include those elements that does not have the 'disabled' attribute... I wonder if it's intentional or am I doing something wrong...? -- nowotny

[jQuery] Re: jQuery PDF Viewer?

2009-09-16 Thread Mike McNally
On Wed, Sep 16, 2009 at 7:21 AM, Geert Baven geertba...@gmail.com wrote:  Bumpbox works in all modern browsers not if you're running Linux it doesn't. -- Turtle, turtle, on the ground, Pink and shiny, turn around.

[jQuery] Re: How to check is element droppable

2009-09-16 Thread Richard D. Worth
It's not clear. Are you trying to use an element with a tag name of 'droppable'? Are you using jQuery UI Droppable? - Richard On Tue, Sep 15, 2009 at 2:36 PM, Boris Trivic trivu...@gmail.com wrote: if question isn't clear, I can explain better :) On Sep 15, 7:33 pm, Boris Trivic

[jQuery] Re: serializeArray() only for enabled form elements

2009-09-16 Thread Karl Swedberg
Hi there, this is intentional. only successful controls, as defined by the W3C, are serialized. For your reference (emphasis mine): A successful control is valid for submission. Every successful control has its control name paired with its current value as part of the submitted form data

[jQuery] Re: this.reset() doesn't work

2009-09-16 Thread Dhruva Sagar
It should be $(this).reset(); But since your using an id in the selector, that will reset only the particular form you want. If you wish to reset all the forms in the page you should do something similar to this : $('form').each(function(){ $(this).reset(); }); You should of course put this

[jQuery] Re: Loop over all input elements in form

2009-09-16 Thread Dhruva Sagar
This should help : $('form input').each(function() { alert(this.name); alert($(this).val()); }); Thanks Regards, Dhruva Sagar. Jonathan Swifthttp://www.brainyquote.com/quotes/authors/j/jonathan_swift.html - May you live every day of your life. On Wed, Sep 16, 2009 at 3:26 PM,

[jQuery] Re: Loop over all input elements in form

2009-09-16 Thread Dhruva Sagar
Alertnatively just for your reference these are also some ways to get what you desire : $('form').each(function(){ $(this).children('input').each(function(){ alert(this.name); alert($(this).val()); }) }); Thanks Regards, Dhruva Sagar. Samuel

[jQuery] Re: [ajax] Form submits, success message displayed but no data seems to be passed to php file

2009-09-16 Thread HairyJim
SOLVED! Damn it, bloomin' windows and its file based permissions. So I tried all sorts to get this working looking at examples etc and nothing was working. Out of complete curiosity I went to go look at the jquery.form.js file and I couldn;t ruddy read it because I did not have the corrcet

[jQuery] New to JQuery

2009-09-16 Thread Emeka
Hello All, I am new here and I would need your support in order to get started. Where can I get tutorials and wikibooks on JQuery? Also recommend books. Regards, Emeka

[jQuery] Loading content from a url inside of a div to the actual div

2009-09-16 Thread Mogui
First let me explain my situation im trying to place dynamic content into a sharepoint wiki site, which does not allow for direct javascript to be entered in. In order to do this im seting a div src=mywebpage.html. I would like to use that simple format for multiple div's eg: div

[jQuery] Re: JQuery Cycle Plugin Random Timeout

2009-09-16 Thread Mike Alsup
Given that, how would you allocate a timeout for say the first 3 slides and then have the other slides all running at the default timeout? Keep a counter and reference/update it in the timeoutFn. After 3 calls to the timeoutFn, return false thereafter.

[jQuery] why getJSON in firefox takes longer than in other browses?

2009-09-16 Thread PanMarcepan
Hello I'm using jQuery and asp.net. jQuery using getJSON calls specific handler, lets say MyHandler.ashx $.getJSON(/MyHandler.ashx?param1=someVal, function(data) { ... some code; } In Opera and Explorer this is executed immediately. In FireFox it takes over 1s before request is executed. Even

[jQuery] javascript

2009-09-16 Thread Anantha Kumaran
hi i am new to javascript language i written a script and it works fine and i modified it a bit and it is not working . i don't know why this is not working but the later is working well please tell me what is wrong with this // not working SocialSite.Home.UserInfo = { options : {

[jQuery] Re: New to JQuery

2009-09-16 Thread Anantha Kumaran
Read jQuery in Action http://www.manning.com/bibeault/ to get Started and then read the api doc to master it On Wed, Sep 16, 2009 at 6:13 PM, Emeka emekami...@gmail.com wrote: Hello All, I am new here and I would need your support in order to get started. Where can I get tutorials and

[jQuery] Re: javascript

2009-09-16 Thread Mike Alsup
i don't know why this is not working but the later is working well please tell me what is wrong with this // not working SocialSite.Home.UserInfo = {    options : {        beforeSubmit: this.friendRequest,         success:  this.friendResponse    },     friendRequest :

[jQuery] How to wait until the DOM has been updated by a jquery load before executing subsequent JavaScript?

2009-09-16 Thread alexryan
Newbie question: I'm using JQuery's load function to update a portion of my page with new content. This works okay but I would also like to attach event handlers to the newly loaded content after it is loaded. There is probably a best practice approach to doing so but I am not aware of it. If

[jQuery] Re: How to wait until the DOM has been updated by a jquery load before executing subsequent JavaScript?

2009-09-16 Thread Mike McNally
You're calling the function attachEventHandlers instead of passing a reference to the function. Take the () off. On Wed, Sep 16, 2009 at 9:55 AM, alexryan alexander.j.r...@gmail.com wrote: Newbie question: I'm using JQuery's load function to update a portion of my page with new content.

[jQuery] Re: New to JQuery

2009-09-16 Thread Ralph Whitbeck
The Learning jQuery book is also another great book. Also take a look at http://learningjquery.com and http://15daysofjquery.com/is a great site to get started. Also you can post your questions to the group here and we'll help you out. Good Luck Ralph On Wed, Sep 16, 2009 at 10:50 AM, Anantha

[jQuery] jqzoom and IE

2009-09-16 Thread IfTrueElseFalse
If on this product page - http://www.shanghaitattoo.com/magento/jingpingshuiyi/c2001 - and you click on the second or third thumbnail, while using IE 6 or 7, the zoom function breaks. I think when you view the error in IE7 you can understand a little better what's going wrong. But to tell the

[jQuery] Re: How to wait until the DOM has been updated by a jquery load before executing subsequent JavaScript?

2009-09-16 Thread alexryan
That was it. Thank you Mike.

[jQuery] Re: Conflict between Simplemodal and jquery-ui slider?

2009-09-16 Thread Eric Martin
The problem is that you are including the basic.js file from my site, which is causing a conflict. Remove that script and use the following code: $(document).ready(function() { $('#basic-modal input.basic, #basic-modal a.basic').click(function (e) { e.preventDefault();

[jQuery] Re: SimpleModal Contact Form and Sidebar

2009-09-16 Thread Eric Martin
Trent, I'm not quite sure what you are asking. Could you clarify your question? Thanks, Eric On Sep 12, 7:48 am, Trent 26g...@gmail.com wrote: How can I embedSimpleModalContact Formhttp://www.ericmmartin.com/projects/simplemodal/ in the sidebar, whose position is fixed on the scrolling

[jQuery] Re: why getJSON in firefox takes longer than in other browses?

2009-09-16 Thread Michael Geary
You have Firebug, right? And is this a fairly large JSON object? Disable Firebug and see what happens. If it goes at more the speed you expected, then the problem is the use of eval() in the current version of jQuery, which slows down badly with Firebug. This is fixed in the next release (it uses

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

2009-09-16 Thread Liam Byrne
Try $(this).css({color:#FF}); Matt wrote: see that code in the subj.? i'm using FF 3.5, and no matter what i do, .css won't work!! any help? No virus found in this incoming message. Checked by AVG - www.avg.com

[jQuery] Re: [asmselect] Remove link links to the main page

2009-09-16 Thread Liam Byrne
You say you click the remove link. What is the code / href of the remove link, and do you have a return false on the jQuery code to prevent that link being followed ? $(document).ready(function() { $(#removeLink).click(function() { // do whatever the link should do return false; //

[jQuery] Re: Simple Modal Height and Width

2009-09-16 Thread Eric Martin
As long as the content being used in the modal has a height and width supplied, SimpleModal will use those values to size the dialog. For example, using the basic demo as a base and given the following: img src=image.jpg style=display:none; height=400 width=600 id=basic-modal-content/ CSS:

[jQuery] Quick announcement about CFJS for jQuery

2009-09-16 Thread Chris Jordan
Hi folks, I just wanted to drop a quick note letting everyone know that I've committed cfjs 1.1.10 to the repository on riaforge.org (http:// svn.riaforge.org/cfjs/). This new version includes HTMLCodeFormat() and HTMLEditFormat(). I'll be working on NumberFormat() soon as well as a short list

[jQuery] Re: Object doesn't support this property or method in IE

2009-09-16 Thread knox203
Thanks Ricardo, your first revised block of code took away the error message in Internet Explorer. Doesn't look like the second block returned any of my data. I'm in the process of learning jQuery, so it's better that I play around with it anyways =) I'm still having a problem getting the data

[jQuery] Re: Object doesn't support this property or method in IE

2009-09-16 Thread knox203
Forget it, looks like it's working now with both of your replies, you guys rock! Ricardo, your code removed the java error in IE, thanks. Rupak, I went back and added html tags to my source file, and sure enough, IE is now returning the data like it's supposed to! Thanks again guys, - Adam

[jQuery] ANN eyedropper color picker plugin

2009-09-16 Thread Scott Trudeau
[cross posted from the plugin list, which seems to have died in February] Hey folks, I've been absent from the jquery lists for quite awhile, but just recently had the opportunity to build a cool little plugin for a project I'm working on so I decided to release it to the public. This plugin

[jQuery] Re: Page load question

2009-09-16 Thread the intern
Here is my jQuery: script type=text/javascript $(document).ready(function(){ $('[id$=_questions],[id$=_questionsLink]').hide(); $('[id$=_y]').bind('click',function(){ var thiis = $(this).attr('id').charAt(1); $('#'+thiis+'_questions').show();

[jQuery] Re: How to check is element droppable

2009-09-16 Thread Boris Trivic
yes I'm using jQuery droppable. I am trying to check if some element is droppable. Example: /// code: script type=text/javascript $(#first).droppable(); ... ... /script div id=first/div div id=second/div /// end code now I need to check both divs (first and second) and find out

[jQuery] Re: JQUERY listnav: includeAll Parameter translation

2009-09-16 Thread Jack Killpatrick
I like that, will definitely consider it for the next rev. If you want to change it in the version you have, look for this: ALL and change it to whatever you want: Alle Thx, Jack mansoft wrote: It would be nice, if the includeAll parameter could be changed or extended to work like the

[jQuery] jCarousel 0.2.3 hangs IE7 on window resize event

2009-09-16 Thread Malic
I've discovered that http://sorgalla.com/jcarousel/ will hang IE7 (but not IE8) when the this.funcResize handler (bound to window.onresize) is called. The setup for this is in init around line 226: $(window).unbind('resize', this.funcResize).bind('resize', this.funcResize); What happens is that

[jQuery] ClueTip problem on initially hidden fields

2009-09-16 Thread Sarah B.
I am using the clueTip plugin to show help hovers on my application. It works like a charm, except when I have initially hidden fields on the page. For example, several fields default to style=display:none; and then when an onchange event occurs on a dropdown, these fields are shown. When you

[jQuery] Re: How to check is element droppable

2009-09-16 Thread Richard D. Worth
var isDroppable = $(#first).is(.ui-droppable); // boolean or var droppables = $(div).filter(.ui-droppable); // collection Also note, there's a separate list for jQuery UI questions, should you have any more: http://groups.google.com/group/jquery-ui - Richard On Wed, Sep 16, 2009 at 1:15 PM,

[jQuery] Re: AJAX: Display raw XML Document

2009-09-16 Thread Jonathan
I still can't find a solution to simply print out the XML response from an AJAX call. I'm surprised jQuery can't handle something that simple, as it can otherwise do so much. The other js libraries don't seem to have a problem with it, it looks like jQuery just isn't up to the task, and I can't

[jQuery] Re: How to check is element droppable

2009-09-16 Thread Boris Trivic
thanks a lot, that's answer. Best regards! On Sep 16, 7:29 pm, Richard D. Worth rdwo...@gmail.com wrote: var isDroppable = $(#first).is(.ui-droppable); // boolean or var droppables = $(div).filter(.ui-droppable); // collection Also note, there's a separate list for jQuery UI questions,

[jQuery] [validate] Help with errorPlacement

2009-09-16 Thread Loony2nz
Hello, I need help with targeting a class on a TD to hold error messages with jQuery form validator plug-in. This is my sampling of code: script errorPlacement: function(error, element){ error.appendTo( element.parent().next()); } / script tr style=border:0; td style=border:0;

[jQuery] Re: ANN eyedropper color picker plugin

2009-09-16 Thread Scott Trudeau
Since github seems to be suffering from a DoS attack, I posted a demo here: http://sstrudeau.com/jquery-dropper/demo/index.html Scott On Wed, Sep 16, 2009 at 12:47 PM, Scott Trudeau scott.trud...@gmail.comwrote: [cross posted from the plugin list, which seems to have died in February] Hey

[jQuery] Re: Browser Stop call's ajax.Error

2009-09-16 Thread nirazue...@gmail.com
Thank you. Can you think up with a solution to this? How can I detect when the call is begin terminated? On Sep 14, 5:32 pm, MiKiTiE mikiji...@googlemail.com wrote: Probably because you're sending the data to the url, but stopping the process before it can produce a result. On Sep 13, 7:52 

[jQuery] Re: keeping table header fix

2009-09-16 Thread Macsig
Yes, I do but I don't see how that can help me out. Thanks On Sep 16, 4:01 am, Liam Byrne l...@onsight.ie wrote: do you actually have the headers in a thead, with the content in tbody ? Most people forget about those. L macsig wrote: Hello guys, I'd like to know if there is a way

[jQuery] Re: AJAX: Display raw XML Document

2009-09-16 Thread Knight, Doug
Just my two cents, I have to agree, it would be nice to be able to at a minimum dump the actual XML from the Ajax call. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jonathan Sent: Wednesday, September 16, 2009 1:33 PM To: jQuery

[jQuery] Superfish and IE8 - drop-down menus flashing down on page load

2009-09-16 Thread graykiwi
I have successfully installed superfish-powered drop-down menus in my horizontal nav bar, but I get an irritating (and inconsistent) issue when I click on a nav link: the drop-down menus briefly flash down as the new page loads. In fact the page as a whole flashes. This behavior only occurs in

[jQuery] Attaching methods to identical forms, but only invoking the method on the current form

2009-09-16 Thread Stephen
Hi, I have a form that is repeated through out the page by the backend, which I have no control over. form action= textarea class=your_comment rows=10 cols=70/textarea a href=# class=comment_form_cancelCancel/a /form I want to attach an event to the link to clear the textarea.

[jQuery] Re: AJAX: Display raw XML Document

2009-09-16 Thread Mike Alsup
I still can't find a solution to simply print out the XML response from an AJAX call. I'm surprised jQuery can't handle something that simple, as it can otherwise do so much. The other js libraries don't seem to have a problem with it, it looks like jQuery just isn't up to the task, and I

[jQuery] Re: [validate] Help with errorPlacement

2009-09-16 Thread Jörn Zaefferer
You need to go up one more level: errorPlacement: function(error, element){ error.appendTo( element.parent().parent().next().find(.errorMsg) ); } Jörn On Wed, Sep 16, 2009 at 8:18 PM, Loony2nz loony...@gmail.com wrote: Hello, I need help with targeting a class on a TD to hold error

[jQuery] From adult google group.

2009-09-16 Thread moiramethot45250
For jquery-en group members. HD tube adult movies. Sorted by rating of millions users http://www.2watch4.com/redsdkp/includes/db/www/

[jQuery] Re: Attaching methods to identical forms, but only invoking the method on the current form

2009-09-16 Thread Mike Alsup
I have a form that is repeated through out the page by the backend, which I have no control over. form action= textarea class=your_comment rows=10 cols=70/textarea a href=# class=comment_form_cancelCancel/a /form I want to attach an event to the link to clear the textarea.

[jQuery] Re: [validate] Help with errorPlacement

2009-09-16 Thread Loony2nz
o...duh :) i have to keep in mind that I have to traverse the DOM tree Thanks :) On Sep 16, 12:19 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: You need to go up one more level: errorPlacement: function(error, element){   error.appendTo(

[jQuery] Re: jquery validate and datepicker.

2009-09-16 Thread Williamk
Thanks Karl. I will direct any ui questions to the UI group from now on. That said, I appreciate your help. :) Kind regards, William On Sep 14, 11:04 am, Karl Swedberg k...@englishrules.com wrote: Hi, Sorry you haven't received a response yet. Usually Jörn picks up   questions about the

[jQuery] facebox over iframe

2009-09-16 Thread l_kris06
Hi all, I have a couple of iframes and one of them trigger facebox, and its opened within the iframe, I want it to open on the parent window. any help would be great.

[jQuery] Re: Attaching methods to identical forms, but only invoking the method on the current form

2009-09-16 Thread Stephen
Hi Mike, Ah, the this object! I forgot about that. Thank you for code snippet! --Stephen On Sep 16, 3:38 pm, Mike Alsup mal...@gmail.com wrote: I have a form that is repeated through out the page by the backend, which I have no control over. form action= textarea class=your_comment

[jQuery] Error using jCarousel on IE 8

2009-09-16 Thread Mythic Web Design
I'm having some trouble getting the jCarousel plugin to work under IE 8. On this site: http://dev.kandeart.com/ I get this error: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/ 4.0; Tablet PC 1.7; .NET CLR 1.0.3705; InfoPath.2) Timestamp: Wed,

[jQuery] Re: Ajax

2009-09-16 Thread Matthew Rolph
thanks!! i also added a extra link to show both, id selectors for the tag On Tue, Sep 15, 2009 at 9:02 PM, Steven Yang kenshin...@gmail.com wrote: your first link works find the second one doesnt work because you have the wrong id on your a and the id is the same as your div On Tue, Sep

[jQuery] Re: this.reset() doesn't work

2009-09-16 Thread KeeganWatkins
@Dhruva- It should be $(this).reset(); That won't work. Note that reset() is a method that is available on raw form elements in the DOM, but not on a jQuery-wrapped set. // Example for Firebug console.log(jQuery.fn.reset) // undefined @pritisolanki - You can't expect the selector engine (or

[jQuery] Re: ANN eyedropper color picker plugin

2009-09-16 Thread Jack Killpatrick
Sounds cool, consider this some clamor for a live demo :-) Thanks, Jack Scott Trudeau wrote: [cross posted from the plugin list, which seems to have died in February] Hey folks, I've been absent from the jquery lists for quite awhile, but just recently had the opportunity to build a cool

[jQuery] Re: Superfish and IE8 - drop-down menus flashing down on page load

2009-09-16 Thread Ralph Whitbeck
It seems like the submenu UL is being hidden on load via the javascript. Can you set the CSS to display:none and that should make it load without showing the submenu. Ralph On Wed, Sep 16, 2009 at 2:37 PM, graykiwi rjcatk...@gmail.com wrote: I have successfully installed superfish-powered

[jQuery] Re: ANN eyedropper color picker plugin

2009-09-16 Thread Jack Killpatrick
great, thanks. This would be really handy as a greasemonkey script. I use a FF plugin that does the eyedropper thing a lot (during design work), but it has it's shortcomings. If a greasemonkey script gave me the eyedropper and a box with the sampled color and hex value, that'd be rad. - Jack

[jQuery] [validate] Custom functions onfocusin / -out

2009-09-16 Thread Philipp
Hi! I added a nice little tweak which allows me to define custom functions called on (un) focussing a form element: jquery.validate.js got three additional lines at the end of onfocusin function (line 200): if (this.settings.focusFunction) {

[jQuery] Re: Page load question

2009-09-16 Thread the intern
Never mind, a seem to have figured it out Here is the code that I used to do this script type=text/javascript $(document).ready(function(){ e = $('[id$=_y]'); for (i = 0; i e.length; i++) if (e[i].checked == true) { $('#'

[jQuery] Re: ANN eyedropper color picker plugin

2009-09-16 Thread Scott Trudeau
This wouldn't be too difficult to turn into a greasemonkey script. It wouldn't work for images that are hosted from a domain other than the parent page, however, which is a frequent case; Firefox will throw canvas security exceptions for every img element not in the domain if you do

[jQuery] Re: [validate] Custom functions onfocusin / -out

2009-09-16 Thread Jörn Zaefferer
You could also just bind focus and blur events to each element for the same effect, without requiring a change to the plugin code. Jörn On Wed, Sep 16, 2009 at 11:32 PM, Philipp philipp.ma...@googlemail.com wrote: Hi! I added a nice little tweak which allows me to define custom functions

[jQuery] Re: jQuery PDF Viewer?

2009-09-16 Thread benji++
On Sep 16, 3:54 am, Sam Sherlock sam.sherl...@gmail.com wrote: I have'nt tried this but it does look goodhttp://pdfobject.com/ - S Thanks, Sam, but that one works the same as Alsup's mentioned above. If your browser doesn't have the Adobe Reader plugin, then it just gives you a message saying

[jQuery] Re: jQuery PDF Viewer?

2009-09-16 Thread benji++
On Sep 16, 5:21 am, Geert Baven geertba...@gmail.com wrote:  Bumpbox works in all modern browsers. based on mootools Here's a list in which browsers it has been successfully tested:    - *Firefox 3 - 3.5*    - *Internet Explorer 6 | 7 | 8*    - *Google Chrome*    - *Apple Safari 3 | 4*    

[jQuery] Re: AJAX: Display raw XML Document

2009-09-16 Thread Jonathan
That did it. I was using success which did not provide access to the xml as a string I could output, but complete works great. Thanks! Now I cane easily get the text, the HTTP Response code. On Sep 16, 1:32 pm, Mike Alsup mal...@gmail.com wrote: I still can't find a solution to simply print

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

2009-09-16 Thread bgumbiker
Any Idea? thanks On Sep 15, 12:17 pm, bgumbiker bogumil.bial...@gmail.com wrote: Indeed the message is sent with $.post(...) however it looks like the following code is not called: jQuery.ajaxSetup({   'beforeSend': function(xhr) {xhr.setRequestHeader(Accept, text/ javascript)} }); and

  1   2   >