Re: [jQuery] Having hard time with customizing scroll bars

2010-01-16 Thread waseem sabjee
the styling scroll bars of a browser is not cross-browser however there are content scroller plugins out their that mimic the functionality of a browser scrollbar. these are cross-browser. On Sat, Jan 16, 2010 at 1:03 PM, swfobject_fan guru4v...@gmail.com wrote: Hi, I'm having a hard time

[jQuery] Re: jQuery 1.4 cross domain post bug?

2010-01-16 Thread TexInWien
In addition to the JSONP option, you could also use a Web Proxy. This is simply a server side script that sits on your domain. It takes the POST from your domain, repackages it, POSTs it to the secondary domain and sends the response back to the browser. http://yourdomain.com/yourform.html POSTs

RE: [jQuery] Selecting instances separately

2010-01-16 Thread Rick Faircloth
I tried your code wrapped in $('document').ready(function() { ... }); and it worked fine... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Alexander Sent: Saturday, January 16, 2010 5:42 AM To: jquery-en@googlegroups.com

Re: [jQuery] Re: Should I use code.jquery.com?

2010-01-16 Thread Patryk Szczygłowski
W dniu 2010-01-15 18:56, Dave Methvin pisze: Google is hosting the file now, you could get it from there: http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.js Yes, I know Google hosts the file. I'm asking about code.jquery.com.

[jQuery] Re: IE problem

2010-01-16 Thread Valerij
Why do you think that? Because only the first tab stops working, the other 2 tabs keep working, css wise they are not different at all.. On Jan 16, 3:02 am, Nivanka fonseka...@gmail.com wrote: This is CSS more than javascript I think. Try to absolute position the popups / and position them with

[jQuery] Add, remove rows to table,

2010-01-16 Thread NMarcu
It's normal, after append a new row in a table, to not access a td (from the new row), with his id or class?

[jQuery] Re: Having hard time with customizing scroll bars

2010-01-16 Thread swfobject_fan
Waseem, Where can I find more about those plugins? On 16 Jan, 16:44, waseem sabjee waseemsab...@gmail.com wrote: the styling scroll bars of a browser is not cross-browser however there are content scroller plugins out their that mimic the functionality of a browser scrollbar. these are

[jQuery] Re: Plugin design pattern (common practice?) for dealing with private functions

2010-01-16 Thread Tim Molendijk
I posted a resolution to this discussion here: http://stackoverflow.com/questions/2061501/jquery-plugin-design-pattern-common-practice-for-dealing-with-private-function On Jan 14, 2:08 am, Matt Maxwell leftwithoutli...@gmail.com wrote: Also, more information on the call function (if you're not

[jQuery] Re: Plugin design pattern (common practice?) for dealing with private functions

2010-01-16 Thread Dave Methvin
One issue keeps nagging me though, and that is how to deal with private functions in a powerful yet elegant manner. I'd recommend taking a look at the way the jQuery UI folks did it. You can get the gist of it from ui.core.js. I didn't really appreciate their design choices until I started

[jQuery] jQuery UI Dialog + Ajax Problem

2010-01-16 Thread hrubib
Hi there I am using the following script to load external pages inside a dialog window. The code is working and it opens the external htmls, but my problem is that it loads them all once the index.html page is loaded. Here is my code: $(document).ready(function() {

[jQuery] Real time AJAX

2010-01-16 Thread Izad CM
Hi guys. I'm a jQuery newbie and naturally I have a question. :) What's the best way to do real-time AJAX calls? I'm developing a web app that has a functionality which is somewhat similar to Google Wave's real-time blip editing feature. Well, you know that thing where we can see the blip being

[jQuery] Selecting each instance separately

2010-01-16 Thread alexander
Hello everyone, I've spent 2 hours with this already and I think I must be dumb or blind since I can't find any hint online. I've got a couple of galleries as a ul in one page ul class=gallery id=galleryid1 liimg ./li liimg ./li ... ... .. /ul ul class=gallery id=galleryid2 liimg

[jQuery] Re: Having hard time with customizing scroll bars

2010-01-16 Thread Dave Methvin
Where can I find more about those plugins? This search turned up jScrollPane, looks like that is what you want. http://lmgtfy.com/?q=jquery+scroll+plugin

[jQuery] Re: Having hard time with customizing scroll bars

2010-01-16 Thread swfobject_fan
Thanks dave, but I can't change the look of the scroll bars with this right? I was looking for something similar to flexcroll. http://www.hesido.com/web.php?page=customscrollbar On 16 Jan, 19:49, Dave Methvin dave.meth...@gmail.com wrote: Where can I find more about those plugins? This search

[jQuery] Re: jQuery stripping HTML tags from Ajax response

2010-01-16 Thread Beckley
This was my fault. I was also adding an INPUT along with this TR that was not in a TD. That was invalid and resulted in the tags being stripped. When I moved the INPUT into a TD, append() worked as expected. I still think it's strange behavior on jQuery's part but now I know better. Thanks for

Re: [jQuery] Selecting each instance separately

2010-01-16 Thread waseem sabjee
var obj = $(ul); obj.each(function(i) { var items = $(li, obj); items.each(function(i) { if(i 3) { items.eq(i).show(); } else { items.eq(i).hide(); } }); }); On Sat, Jan 16, 2010 at 12:16 PM, alexander alexan...@hulman.sk wrote: Hello everyone, I've spent 2 hours with this already

Re: [jQuery] Re: Having hard time with customizing scroll bars

2010-01-16 Thread Sam Sherlock
Yes you can - did you see the os examples? this plugin has an extensive set of demos and is extremely versatile http://www.kelvinluck.com/assets/jquery/jScrollPane/examples.html http://www.kelvinluck.com/assets/jquery/jScrollPane/examples.html - S 2010/1/16 swfobject_fan guru4v...@gmail.com

Re: [jQuery] Real time AJAX

2010-01-16 Thread waseem sabjee
I'm guessing you mean like on google wave. ok. AJAX would mean passing data to a file and returning a response to the user without refreshing the page the user is on. you could say what you want falls sort of under JavaScript animation say you have something like this. textarea

Re: [jQuery] fckeditor (plugin) editorarea css

2010-01-16 Thread Per Söderlund
Ok. Found the solution by myself. It's in the config syntax. This works: $(function(){ $.fck.config = {path: 'fckeditor/'}; $('textarea#fck1').fck({config: {EditorAreaCSS: 'css/blogheader.css'}, height: 50}); $('textarea#fck2').fck({config: {EditorAreaCSS: 'css/blogpost.css'}, height:490}); });

[jQuery] Re: Having hard time with customizing scroll bars

2010-01-16 Thread swfobject_fan
Sam, Yes! jScrollPane has all that I was looking for. Hope it works for dropdowns too. On 16 Jan, 21:15, Sam Sherlock sam.sherl...@gmail.com wrote: Yes you can - did you see the os examples? this plugin has an extensive set of demos and is extremely versatile

[jQuery] ^=, $=: how to use?

2010-01-16 Thread Andre Polykanine
Hello everyone, I need to get a number which is the last char of a radiobutton id. Say, the IDs are utype1, utype2, utype3 I need to say if the last char of the Id is 3, then do something. How do I use $= here? Couldn't find that in the docs. Thanks! -- With best regards from Ukraine,

Re: [jQuery] Re: Disable Submit

2010-01-16 Thread Viz skillipedia
You will need just this tiny js script: function disableOnSubmit(form ){ for (var i = 0; i form.length; i++){ var e = form.elements[i]; if (e.type.toLowerCase() == button || e.type.toLowerCase() == reset || e.type.toLowerCase() == submit) {

[jQuery] SuperFish - Auto width of main menu when vertical

2010-01-16 Thread Wayne
Using a vertical menu and supersubs so that the submenus all have the correct width. The only thing missing is I need the main vertical menu to size itself to the correct width too! How can we make supersubs also correctly autosize the main items on the vertical menu?

[jQuery] mailing list?

2010-01-16 Thread Octavian Rasnita
Hi, Does the new forum offer the possibility of posting messages using an email client? (Or another standard Win32 desktop app? (Does the new site has its own mailing list manager?) Thanks. Octavian PS. I ask this because a web forum is less accessible (for the screen readers used by the

[jQuery] help combine LightBox jMyCarousel effect?

2010-01-16 Thread bhupal
I want the combine effect of these two plugins.. LightBox http://leandrovieira.com/projects/jquery/lightbox/ jMyCarousel http://www.enova-tech.net/eng/lab/jMyCarousel but when i tried to combine these plugins.. the resulting page looks good in my localhost but don't work well when uploaded to

[jQuery] Complicated Question

2010-01-16 Thread Dave Maharaj :: WidePixels.com
I have sets of records on a page each has an edit link, clicking the link loads an edit form into the record the user wants to edit, so a user can click edit beside every link creating an unknown number of forms on the page. li id=r_123 user records edit /li li id=r_456 user records edit

[jQuery] New forum completely inaccessible

2010-01-16 Thread Andre Polykanine
Hello everyone, the new jQuery forum at http://forum.jquery.com/ is inaccessible for blind and visually impaired persons. For instance, I can't create a topic because my screen reading program can't find the appropriate edit boxes to post message in. So how could I contact mr. John Resig to ask

Re: [jQuery] Complicated Question

2010-01-16 Thread Jack Killpatrick
This may or may not help you, but often in situations like this what I do is use .closest() to get the id that I need for the edited record, like this: ul id=forms li id=r_123 class=recordyour form gets injected here/li li id=r_456 class=recordyour form gets injected here/li /ul

[jQuery] Validation plugin: two fields on the same function?

2010-01-16 Thread Andre Polykanine
Hello everyone, I'm using the validation plugin. I have a function which handles a field: it's required if the function returns true, otherwise it is not: q[1]: { required: function () { ...

RE: [jQuery] Complicated Question

2010-01-16 Thread Dave Maharaj :: WidePixels.com
I have changed my page js to: script type=text/javascript $(form).bind(submit, function() { var form_id = $(this).attr('id'); alert(form_id); uRec(form_id); return false; }) /script The alert shows the form id for the form i am attempting to submit and it

Re: [jQuery] Complicated Question

2010-01-16 Thread Jack Killpatrick
If uRec is still like it was before: function uRec(selector){ var $form = $(selector); in the example below you're passing it an id, so try: var $form = $('#' + selector); I was suggesting changing the button type from submit to button, yes. It's no big deal, but at least it will

RE: [jQuery] Complicated Question

2010-01-16 Thread Dave Maharaj :: WidePixels.com
I have completely removed the uRec function for now and changed to a regular button, no submit. input type=button value=Button/ /form script type=text/javascript $(button).click(function () { var form_id = '#123123123'; //var form_id = $this.closest('form'); // get the

RE: [jQuery] Complicated Question

2010-01-16 Thread Dave Maharaj :: WidePixels.com
Ok im getting closer. This gives me the id for each form being submitted, the alert(selector); in the external js fires off so its getting the request, but the form now does not submit...just stis there laughing at me. Page js: script type=text/javascript //dummy class added to button to test it

Re: [jQuery] Complicated Question

2010-01-16 Thread Jack Killpatrick
If you're rendering the button on-the-fly (as part of your form) be sure to either a) hook up that button click handler after the button is rendered or b) use the event delegation approach I showed in my example. It sounds like your click is not firing now, probably because the click isn't

Re: [jQuery] New Forums

2010-01-16 Thread Shawn
I received this email as well. I don't know if it is legitimate or not tough. Nor do I care. Web based forums DO NOT WORK for my needs. I cannot do a quick scan of topics in a forum without first opening a browser and going to that forum. Whereas with an email list, I scan my email

RE: [jQuery] New forum completely inaccessible

2010-01-16 Thread Rick Faircloth
I would vote for using both the email list and forums. I would definitely not use the forum often since it requires opening a browser and going to site, getting to the forum, logging in, etc., etc too much trouble. Rick -Original Message- From: jquery-en@googlegroups.com

Re[2]: [jQuery] New Forums

2010-01-16 Thread Andre Polykanine
Hello Shawn and all, You are quite right! I don't know either why not to install a Mailman and not to run a mailing list... and this particular web forum is really awful regarding its accessibility. -- With best regards from Ukraine, Andre Skype: Francophile; WlmMSN: arthaelon @ yandex.ru;

Re: [jQuery] New Forums

2010-01-16 Thread Matt Quackenbush
I concur regarding mailing list vs. forum. Both have their positives and negatives, but these days I definitely prefer a mailing list over forums. Perhaps the jQuery team could not find another mailing list that would import all of the existing posts on Google Groups? (My understanding is that

RE: [jQuery] Complicated Question

2010-01-16 Thread Dave Maharaj :: WidePixels.com
Ok so this is where I stand now: Page js: script type=text/javascript //dummy class is my save button , no more submit button $(.dummy).live(click, function () { var $this = $(this); var form_id = $this.closest('form').attr(id); uRec('#' + form_id); }); /script

Re: [jQuery] New Forums

2010-01-16 Thread brian
On Sat, Jan 16, 2010 at 6:51 PM, Matt Quackenbush quackfu...@gmail.com wrote: I concur regarding mailing list vs. forum.  Both have their positives and negatives, but these days I definitely prefer a mailing list over forums. Perhaps the jQuery team could not find another mailing list that

[jQuery] Re: Selecting each instance separately

2010-01-16 Thread Phong Long
when u do '.gallery li', that selector returns an array with every li that matches. the :gt(2) refines it to every li within that result set greater than 2. what u need is to keep each .gallery ul separate. try this: $('.gallery').each( function(){ $(this).children('li').hide(); } ); u haven't

[jQuery] (Validate) Checking once an Entry is Change

2010-01-16 Thread Scott Wilcox
Hi Folks, I have a form that uses remote validation to test whether a username exists. It fires fine, however when it should return false, nothing is showing next to an element. Also, when the text input is changed then it doesn't revalidate the field which it should do. Any help, points

Re: [jQuery] ^=, $=: how to use?

2010-01-16 Thread brian
Like this, for example: $('input[id$=3]').change(function() { alert('foo'); }); But it really depends on what you want to do. With the above, you'd need to specify as many change() handlers as you have inputs. Another way would be to have a generic handler and, inside that function, have

RE: [jQuery] Complicated Question - Solved

2010-01-16 Thread Dave Maharaj :: WidePixels.com
Ok I got it finally. I managed to get it with bind submit but it was firing off multiple times after each save click so first save would send 1 request, second fired 2 and so onso this is what I ended up with. Page JS: script type=text/javascript $(form).bind(submit, function() {

Re[2]: [jQuery] New Forums

2010-01-16 Thread Andre Polykanine
Hello brian and all, this is because of the trickiness of the system. You need to login at http://forum.jquery.com/, then go to https://accounts.zoho.com, choose email preferences (or something like that), then click Resend confirmation email, then receive the mail, then go to the link provided,

[jQuery] Re: Select tab from link

2010-01-16 Thread CMI_Guy
StephenJacob, Sloppy fix. But works. script type=text/javascript $(document).ready(function(){ var $tabs = $(#tabs).tabs(); $('#link0').click(function() { // bind click event to link $tabs.tabs('select', 0); // switch to first tab return false;

[jQuery] Re: Select tab from link

2010-01-16 Thread MorningZ
There's no need to repeat the code... you can even do it with .live so it'll work if there's 1 or 100 tabs $(document).ready(function(){ var $tabs = $(#tabs).tabs(); $('a[id^='link').live(click, function() { var hit = this.id.match(/^link(\d+)$/);

[jQuery] recursive slideshow not working

2010-01-16 Thread paer.henriksson
Hi, maybe anyone can give me a hand here. Im only getting the first image to run in the slideshow, the it stops, why? function slide_the_slide() { if ( no_imgimg.length ) {no_img=0;} $( '#slide_holder' ).append( $( img )[no_img] ); $( '#slide_holder

[jQuery] Re: help combine LightBox jMyCarousel effect?

2010-01-16 Thread JamaicaMan
Is this what you are trying to do? http://www.rouse.ws/jCarouselDemo.php If so send a link to the web page that does not work and let me take a look at it. J M On Jan 16, 1:37 pm, bhupal fren4...@gmail.com wrote: I want the combine effect of these two plugins..

[jQuery] iTunes Cover Art Screensaver-like Plugin

2010-01-16 Thread JoshL
All- I am looking for a plugin that will take a collection of images and display them in a continually rotating grid, basically the way iTunes does with cover art in screen saver mode. I have hundreds of twitter icons to display at http://www.voteforacure.com and I would prefer to just should a

Re: [jQuery] New Forums

2010-01-16 Thread Octavian Rasnita
The mailing list/forum admins can install Mailman and use their own mailing list, and manage the spam themselves, without depending on a third party mailing list provider. A mailing list is more accessible than a forum for everyone, and there are solutions for presenting the emails on a