[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2008-12-07 Thread Gilles (Webunity)
> One question.  Your docs and examples don't ever mention, that I can > tell, how the data is handed off to the backend script.  Are the > images just going to be in the $_FILES global (to give a PHP example)? Yes, i did not include any information about the backend script used, since each and e

[jQuery] Re: Remote requests using $ajax

2008-12-07 Thread Karl Rudd
Try looking at the getJSON method: http://docs.jquery.com/Ajax/jQuery.getJSON It's the only way to do "direct" cross-domain communication from the client-side. (The other option is you use a proxy on your server and route requests through there.) Karl Rudd On Mon, Dec 8, 2008 at 4:52 PM, d

[jQuery] Re: Webdeveloper to WebDeveloper

2008-12-07 Thread Armand Datema
Hi Well what you are doing is not legal ( you are allowed to summarize an article on your page and then link to the original article but not copy the whole content and link to the original article if you dont have the permission of each of the sites or article owners, that is not done the origin

[jQuery] Remote requests using $ajax

2008-12-07 Thread dave
Hey all, I'm in need of making a remote request (i.e. to a different domain) using the $.ajax function. Doing some preliminary research on google and this group, it looks like the most popular workaround is to call a separate local script using $ajax; and then having the local script perform the

[jQuery] Re: Submit form using ajax

2008-12-07 Thread vicky
Hi, Thanks for your response. I am using a form plugin for submitting form. http://plugins.jquery.com/project/form i came to know that livequery can solve this issue, but i am not understanding that how livequery will bind my form for ajax event. On Dec 5, 11:34 pm, Mike Alsup <[EMAIL PR

[jQuery] how to image cache using jQuery?

2008-12-07 Thread darwin liem
hi, I'm new in jQuery... can someone help me to understand how to do Image caching from jQuery. thanks...

[jQuery] Re: bind a function to another function

2008-12-07 Thread Prajwala Manchikatla
Yes you are correct, I mistakenly wrote wrong values. Thanks for informing me. I modified it. cheers, Prajwala On Sun, Dec 7, 2008 at 1:12 PM, Joe <[EMAIL PROTECTED]> wrote: > > I think I understand what you are trying to do, but the example is > rather confusing. Can you use maybe more unique

[jQuery] Re: Setting source of a frame with jQuery

2008-12-07 Thread Dave Methvin
The zip you posted has 30 files in it. That's a lot of moving parts for a test case, and it doesn't look like most of them would be needed to demonstrate the problem.

[jQuery] [jQuery]how to create a Firefox Extension using jquery

2008-12-07 Thread AbhishEk
i , i was trying to replace my javascript statements with jquery statements by including the jquery file in *.xul file. the xul file line is as under: and i am trying to access the "$"/ jquery functions in the other js file of my plugin. but its not working. plz help.

[jQuery] Re: Need help modifying this jQuery...

2008-12-07 Thread Rick Faircloth
Got it working! I did go back to the first way of coding the jQuery, however. The problem I had was in wrapping the 's with a form tag. I guess when using jQuery the way this is written, the form tags aren't necessary and actually keep the code from functioning properly. It's a little strange

[jQuery] Resize to fit all text (needing scrollHeight?)

2008-12-07 Thread nathanziarek
I want to adjust a to fit all of the text within. I tried toying with the dimensions plugin, but it doesn't offer the scrollHeight attribute, which is what I think I need. Before I go journeying off on a wild tangent to my actual project, I wanted to make sure that a) I'm barking up the right tre

[jQuery] Re: How can I make a td clickable?

2008-12-07 Thread Karl Swedberg
On Dec 7, 2008, at 9:34 AM, Kayhadrin wrote: Hi, If .menuitem is a class you use to contain each link, and .menu is the class that exactly defines a link, you could use: $('.menuitem').click(function(){ // the whole menu item can be clicked $('a.menu', this).click(); // simulate a click on t

[jQuery] Problem with placement of image in tooltip

2008-12-07 Thread russellneufeld
Hi all, I'm trying to use the tooltip plugin and for some reason the image tooltip is always showing up on the bottom left of the page. I've created a very simple example illustrating the problem. I must be doing something incredibly stupid. Anyone have any ideas? Thanks a lot, Russ

[jQuery] Re: Having trouble thinking through the "how": make node, append (w/o showing), then fade in ...

2008-12-07 Thread nathanziarek
Thanks Ryura -- That's exactly what I thought I could do, but could not get it to work. That's when I came up with my much less elegant solution that works OK, but I have the feeling has some serious shortcomings. The error I get with your solution is "Value undefined (result of expression "".hi

[jQuery] Re: Having trouble thinking through the "how": make node, append (w/o showing), then fade in ...

2008-12-07 Thread Ryura
What about something like this? $("").hide ().appendTo("#myList").slideDown("fast"); On Dec 7, 8:10 pm, nathanziarek <[EMAIL PROTECTED]> wrote: > I'm having a hard time working through this in my mind (and a much > harder time in code.) > > I am receiving a JSON array. I am then looping through

[jQuery] Having trouble thinking through the "how": make node, append (w/o showing), then fade in ...

2008-12-07 Thread nathanziarek
I'm having a hard time working through this in my mind (and a much harder time in code.) I am receiving a JSON array. I am then looping through each result, and trying to create three text boxes within a list item for each line of data. The result should look like this: ... Once that node is cr

[jQuery] Problem with Tablesorter Plugin

2008-12-07 Thread David Blomstrom
I just downloaded JQuery. For my first project, I'd like to make a table with sortable columns and alternating row colors. For the sortable columns, I downloaded the Tablesorter plugin, then followed the tutorial at http://tablesorter.com/docs/ I don't know a lot about JavaScript, but I have impl

[jQuery] Re: Setting source of a frame with jQuery

2008-12-07 Thread andriscs
What you mean by lot of code? The jTree code isn't altered, my code is in custom.js, and there are two pages (index.html and doc_index.html) to check. I can't put up a test page, I need to work with these simple pages. Another question: shared JS global variables have separate values between fram

[jQuery] Re: Setting source of a frame with jQuery

2008-12-07 Thread Dave Methvin
There is a lot of code there, and I couldn't follow it all. Can you post a simple test page?

[jQuery] Re: How to animate frameset properties?

2008-12-07 Thread andriscs
Well, I tried, I really tried. I have the following code: function test(isExpanding) { var x=start+"%,*"; if(isExpanding==1) start++; else start--; top.$("#main_frame").attr("cols",x); alert(x); if(isExpanding==1 && start<21) setTimeout(test(isExpanding),500); else if(isExpanding==0

[jQuery] Validate does not work in IE7

2008-12-07 Thread shapper
Hello, I am using JQuery and Validate. It works fine in Firefox 3 but it does not work in IE7. Here is an example: http://www.27lamps.com/Beta/Form/Form.html Am I doing something wrong or is there a bug? Thanks, Miguel

[jQuery] Re: Jquery Tablesorter not working

2008-12-07 Thread MorningZ
i'd guess your file is not being loaded correctly got a "live" page to see? On Dec 7, 4:19 pm, Gowrishankar <[EMAIL PROTECTED]> wrote: > Hi All, > > I have been trying to use the table sorter but not sure why this error > pops up : > > jQuery("#myTable").tablesorter is not a function > >      

[jQuery] Re: jquery.min.js is 54kb, not 15kb?

2008-12-07 Thread Richard D. Worth
- Richard On Sun, Dec 7, 2008 at 6:54 PM, Matt Wilson <[EMAIL PROTECTED]> wrote: > > The front page of jquery.com says the production version is 15kb, but > when I go to the download link, it shows up as 54kb. By the time you have the file saved your browser has unzipped it to it's full 54kb, b

[jQuery] Re: jquery.min.js is 54kb, not 15kb?

2008-12-07 Thread MorningZ
You need to enable gzip-ing to your web application (which is something that greatly varies on how to do based on what you use on the server side) On Dec 7, 6:54 pm, Matt Wilson <[EMAIL PROTECTED]> wrote: > The front page of jquery.com says the production version is 15kb, but > when I go to the

[jQuery] jquery.min.js is 54kb, not 15kb?

2008-12-07 Thread Matt Wilson
The front page of jquery.com says the production version is 15kb, but when I go to the download link, it shows up as 54kb. Is there something special that I need to do to convert that 54kb file into 15kb file?

[jQuery] Jquery Tablesorter not working

2008-12-07 Thread Gowrishankar
Hi All, I have been trying to use the table sorter but not sure why this error pops up : jQuery("#myTable").tablesorter is not a function

[jQuery] Re: jQuery Plugin --> DOMisBetter

2008-12-07 Thread donb
Useful in what way? I'm not going to the site, given the other person's experience. An explanation of the plugin here would be very useful. On Dec 7, 9:34 am, KillIEbrowser <[EMAIL PROTECTED]> wrote: > Hi All, > "DOM is Better" is an useful free library to build client-side web > design:http://

[jQuery] Re: Cycle.js not behaving... Can't get it to work no matter what

2008-12-07 Thread donb
remove the 'fade' from the function call. That's the default action, but would be correctly specified as {fx: 'fade'} if you explicitly define it. On Dec 7, 2:42 pm, Heath <[EMAIL PROTECTED]> wrote: > Hello > > I am trying to get cycle.js to work, and I have no idea why it isn't. > > Here is my

[jQuery] Re: addClass with attrs

2008-12-07 Thread Dirceu Barquette
Thank you!!! I know this. But my question was how to create "newclass" assigning its attrs at the same time. 2008/12/7 QuadCom <[EMAIL PROTECTED]> > > addClass is exactly what it says, it adds a class. Predefine the class > in your CSS pages with the attributes you require and use the addClass >

[jQuery] Re: Separate Functions for Events

2008-12-07 Thread Michael Geary
> From: DAZ > > Thanks Michael, the example you gave works great. I'm having > some problems with a droppable though, here is the sample code: > > $("#dropper").droppable({ > accept: "#dragger", > drop: function(ev, ui) {$(this).append("Dropped!");} }); > > The function that is called on t

[jQuery] Re: Need help modifying this jQuery...

2008-12-07 Thread Rick Faircloth
Hi, Andrew, and thanks for the code. I've been *partially* successful and I don't quite understand why things are happening the way they are...it could be some of the ColdFusion code involved. When I run the login.cfm page with the "myForm" form, I end up with my message being displayed for a

[jQuery] Re: Hot to remove or replace onclick function

2008-12-07 Thread David .Wu
let me explain more clear if I want to cancel function in JavaScript, I can do something like this, but how to do the same thing in jQuery?