[jQuery] Re: Looking for a faster way

2007-12-08 Thread Dave Methvin
I was able to implement some of the changes you recommended. I did away with the .each() bit, switched to using tr#ID instead of tr[id=], So does the selector now look like this? $(.crewSchedule tr#' + cur.employee_id + . + lbl) Any time you start a selector with a bare .classname it

[jQuery] Re: Creating simple jQuery/JSON result with ASP.NET

2007-12-08 Thread Tony
Hi, maybe you missed this function SaveThis(key, val) { $.post(/services/process/config.aspx, { Key: key, Value : val }, function(data){ alert(data.responseText); } ); Tony On 8 Дек, 17:12, MorningZ [EMAIL PROTECTED] wrote: Good

[jQuery] Re: Remove class from an element x, by clicking on y or z?

2007-12-08 Thread Andrea Varnier
El Magnifico: Hi, Although I figured out the part to add/remove class to an element: $(li.x).click(function(){ var $this = $(this); if( $this.is('.xshown') ) { $this.removeClass('xshown'); $this.addClass('xhidden'); } else { $this.removeClass('xhidden'); $this.addClass('xshown'); }

[jQuery] Re: jqModal: how to get the attribute of the trigger link?

2007-12-08 Thread Yılmaz Uğurlu
Hi. You can use this plugin with your own function. function makeModal(action) { $('#ex2').jqm({ajax: action,target: 'div.jq_content', trigger: false, modal:true }).jqmShow(); } a href=target.php onclick=makeModal(this.href);test modal/a 2007/12/8, pixeline [EMAIL PROTECTED]: hi friends!

[jQuery] Re: jQuery API Reference in CHM

2007-12-08 Thread Fayland Lam
Thanks. On Dec 7, 5:49 pm, char101 [EMAIL PROTECTED] wrote: Hi, This is (yet another, if there is any) API reference of jQuery in CHM format http://charupload.wordpress.com/2007/12/07/jquery-documentation-chm/ The pages are taken directly fromhttp://docs.jquery.com/Main_Page because I

[jQuery] Percent Sign (%) Problem

2007-12-08 Thread javam.org
I have a search process with jQuery+Php... I have to use like '%entered_keyword%' ... in mysql query. Here is the problem the Php changes % to However, when someone enters % % % % % % % % (8 times percent sign), it brings all datas on mysql. If i use the changing function two times

[jQuery] Re: Form Plugin and File Uploads (form.submit() is not a function)

2007-12-08 Thread Mario Moura
Thanks Mike You save my day. Regards Mario 2007/12/8, Mike Alsup [EMAIL PROTECTED]: On Dec 8, 2007 8:23 AM, Mario Moura [EMAIL PROTECTED] wrote: Hi All Same question. my form is something like form method=post id=myForm class=cssform action=../submitajax.php input

[jQuery] Re: Form Plugin and File Uploads (form.submit() is not a function)

2007-12-08 Thread Mike Alsup
On Dec 8, 2007 8:23 AM, Mario Moura [EMAIL PROTECTED] wrote: Hi All Same question. my form is something like form method=post id=myForm class=cssform action=../submitajax.php input type=hidden value=?php print $user-uid; ? name=uid/ input type=hidden class=ts value= name=ts/ input

[jQuery] Re: Error in Ajax Queue plugin

2007-12-08 Thread stada
Thanks Jörn, this work well for me and can solve my problem On Dec 6, 12:41 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] schrieb: Hi I'm trying to use the Ajax Queue plugin with the following code: But everytime it runs I get an error saying 'jQuery.dequeue is not a

[jQuery] Re: Problem selecting a table row

2007-12-08 Thread Kirov
Thank you very much! The has selector really helped ;) All Best, Kiril On Dec 7, 6:48 pm, Karl Swedberg [EMAIL PROTECTED] wrote: On Dec 7, 2007, at 11:41 AM, Glen Lipka wrote: One followup. tr[th] would only find something like this: tr th=foo The stuff in the brackets are

[jQuery] Creating simple jQuery/JSON result with ASP.NET

2007-12-08 Thread MorningZ
Good morning all. I've got a call to an aspx page, nice and simple, the alerts are just to test: function SaveThis(key, val) { $.post(/services/process/config.aspx, { Key: key, Value : val }, function(data){ alert(data);

[jQuery] Re: Select type upon jeditable start

2007-12-08 Thread bhays
Fantastic, thanks! On Dec 8, 12:24 am, Mika Tuupola [EMAIL PROTECTED] wrote: On Dec 7, 2007, at 9:06 AM, bhays wrote: I'd like to havejEditable, or jQuery, auto select all the type in the input that I am going to edit. I am basically looking for the same effect of clicking on the URL

[jQuery] Re: Code feedback... Callbacks for timing...

2007-12-08 Thread Micky Hulse
Ahhh, thanks to all of you, I got it working: $('.paginate li a').livequery('click', function(event) { what = this.rel; which = '#' + what; where = this.href; $(which).fadeOut('slow', function() { $(which).load(where, {targ:what}, function() {

[jQuery] Re: jQuery API Reference in CHM

2007-12-08 Thread Fayland Lam
can someone send it to my email fayland at gmail? I can't access http://www.4shared.com/file/31419899/4f6f85b/jQuery-12-v1.html at all. char101 wrote: Hi, This is (yet another, if there is any) API reference of jQuery in CHM format

[jQuery] jCarousel help

2007-12-08 Thread thatashok
Is it possible to use jCarousel to show images with flexible heights/ widths? For example, if I'm using the vertical display, widths are fixed, but heights are not. This causes ugly spacing between images. FYI - I'm using this with Drupal, but that's mostly incidental to this query.

[jQuery] Re: jChess

2007-12-08 Thread aldur
Ok all you eager beavers go play. http://www.bloodmoongames.com/opensource/jChess/

[jQuery] Re: Form Plugin and File Uploads (form.submit() is not a function)

2007-12-08 Thread Mario Moura
Hi All Same question. form.submit is not a function form.submit(); Works fine without file upload field. I didnt understand about files.php. What is inside this file? my form is something like form method=post id=myForm class=cssform action=../submitajax.php input type=hidden value=?php

[jQuery] Re: jChess

2007-12-08 Thread Fabien Meghazi
Ok all you eager beavers go play. http://www.bloodmoongames.com/opensource/jChess/ I think you forgot a special move. Don't know how it is called in english but in french it's called prise en passant See pictures at the end of this page to see what I mean :

[jQuery] Re: ClueTip - local content without attribute

2007-12-08 Thread rolfsf
Thanks Karl... I'll just use the rel attribute. I just thought there might be a shortcut without the extra markup (in my case I have potentially a lot of link hovers which would load identical content) r. Karl Swedberg-2 wrote: Hi Rolf, The way it's set up now, it requires some sort

[jQuery] Cross domain photo gallery using get().

2007-12-08 Thread Andy Matthews
I'm participating in an event in which you post photos of yourself each day (http://www.whiskerino.org/2007/creole/). The organizer of the event created RSS feeds for each participant. I thought it would be fun, and a good challenge to write a photo gallery using the Cycle plugin that could be

[jQuery] Re: Cross domain photo gallery using get().

2007-12-08 Thread Erik Beeson
Hi Andy, Neat idea. What you want for remote data is JSONP, which just requires that your server produce a chunk of javascript that calls a function with a specified name and passes in your data as a JSON block. So instead of generating an HTML fragment, your data.cfm would take a parameter

[jQuery] Re: jChess

2007-12-08 Thread Richard D. Worth
In english, it's just En passant. See: http://en.wikipedia.org/wiki/En_passant - Richard On Dec 8, 2007 1:02 PM, Fabien Meghazi [EMAIL PROTECTED] wrote: Ok all you eager beavers go play. http://www.bloodmoongames.com/opensource/jChess/ I think you forgot a special move. Don't know how

[jQuery] Re: Cross domain photo gallery using get().

2007-12-08 Thread Andy Matthews
Erik... What an excellent response, and in fact I rated it thusly. I'll look more at this later, but I wanted to thank you for your time. Muchas gracias amigo. What an excellent reponse On Dec 8, 2:42 pm, Erik Beeson [EMAIL PROTECTED] wrote: Hi Andy, Neat idea. What you want for remote data

[jQuery] Re: jChess

2007-12-08 Thread aldur
I haven't forgotten it just haven't got round to writing it it is version 0.1 after all ;-) On Dec 8, 6:02 pm, Fabien Meghazi [EMAIL PROTECTED] wrote: Ok all you eager beavers go play. http://www.bloodmoongames.com/opensource/jChess/ I think you forgot a special move. Don't know how it is

[jQuery] Superfish - History/Remote Tab Bookmark

2007-12-08 Thread El Magnifico
Hi Joel, Is it possible to bookmark (open directly on a particular tab) tabs and sub-tabs too, if possible? Thanks, Ibrahim

[jQuery] Re: Cross domain photo gallery using get().

2007-12-08 Thread aldur
can you put the Javascript on that server then your external servers can call it directly I think that they can then use ajax calls to that server.

[jQuery] JCarousel: flexi height images in vertical carousel

2007-12-08 Thread theneemies
We're using JCarousel on http://neemtree.com.au, and ended up with a JQuery workaround for setting the heights (view source). On FF2, when the page is first loaded, images are 'squished' together at a height of ~10px, reloading the page resolves this. Could someone take a look at it and respond

[jQuery] Re: Cross domain photo gallery using get().

2007-12-08 Thread jon randahl
You could try using the older XMLHttpRequest type of WinHttp.WinHttpRequest.5.1 Here's a scriptlet I use to pull the data from another domain which you could possibly use somehow: var xmlhttp=false; /[EMAIL PROTECTED] @*/ /[EMAIL PROTECTED] (@_jscript_version = 5) // JScript gives us

[jQuery] Re: framing

2007-12-08 Thread Wizzud
google for 'frame breaker' or 'frame buster' On Dec 8, 12:06 am, mokeur [EMAIL PROTECTED] wrote: I would like to know if it is possible to protect one of my framed website page for being framed by another site. Thanks

[jQuery] Javascript Console that uses jQuery

2007-12-08 Thread Flesler
Hi guys, quite long ago, I made this javascript console for Maxthon (http://www.maxthon.com), that has some of the features of Firebug. Recently I decided to improve it and released version 2.0. If someone uses Maxthon, or has it installed, and is interested... here are the links. Project page

[jQuery] Re: Creating simple jQuery/JSON result with ASP.NET

2007-12-08 Thread MorningZ
But what about returning a JSON object? (not just plain text) Like as i get more into jQuery and AJAX i'd like to return some more complicated objects from my aspx code On Dec 8, 11:15 am, Tony [EMAIL PROTECTED] wrote: Hi, maybe you missed this function SaveThis(key, val) {

[jQuery] ui.datepicker causes IE operation aborted

2007-12-08 Thread Charles Johnson
I believe this bug was supposed to have been fixed in the move from jQuery Calendar to ui.datepicker, but I'm still seeing sporadic Operation Aborted errors in Internet Explorer, both 6 and 7, when the datepicker is initialized. Frustrating problem because it's very intermittent. The code I'm

[jQuery] Re: IE not triggering change event on dynamically added html

2007-12-08 Thread m j
I have implemented the cloning of the DOM with the events, the only problem I've encountered with it is that IE seems to take 20 seconds to perform the clone on my production code. http://murphyusaevents.com/registration/?debug=1 Everytime I create an additional tab Add Additional Conference it

[jQuery] jQuery Plugins Site Updated

2007-12-08 Thread Mike Hostetler
The jQuery Plugins site had been experiencing a few issues lately. So, today I moved it to its new home, http://plugins.jquery.com. If you've got a plugin hosted on the jQuery Plugins site, please give your plugin a look and make sure everything is where it should be. If you have any issues,

[jQuery] Re: Code Review For Cloning Exercise

2007-12-08 Thread Lee Hinde
Hi; Is there a way I could phrase this in a more enticing way? On Dec 6, 2007 9:22 PM, Lee Hinde [EMAIL PROTECTED] wrote: Hi; I've sussed out a solution with cloning rows that are are part of a form submit and I'd appreciate any feedback you might have. Here's an image to follow along

[jQuery] Re: Looking for a faster way

2007-12-08 Thread Shawn
Wow!... that makes a world of difference! Seems so obvious - NOW.. :) This makes the page usable again. (no huge delays). Thank you. You just saved me hours and hours of revising my server side code - I was reusing an existing search routine to get what I needed in JSON format. If the

[jQuery] [PLUGIN] jqGirdView - Excellent Grid Plugin by Victor Bartel

2007-12-08 Thread Rey Bango
Haven't seen this once announced anywhere but I'm really impressed by the looks and functionality: http://creamarketing.net/Products/jqGridView/Demos/tabid/59/Default.aspx Very impressive work. General feautres: * Column resizing. * Server-side sorting. * Server-side paging.

[jQuery] jquery youtube plugin

2007-12-08 Thread Saidur
Hi, I have done a project where i have to do work with youtube. I just play with some jquery plugin and finally i write a youtube plugin for jquery. It's just alpha version. I will update after getting your comments, suggestion and advice. You can check it out here .

[jQuery] Re: jquery youtube plugin

2007-12-08 Thread Josh Nathanson
Super cool demo. All it needs is a little pagination and you've really got something there! -- Josh - Original Message - From: Saidur [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Saturday, December 08, 2007 8:41 PM Subject: [jQuery] jquery youtube