[jQuery] Re: livequery $(this) is null? (this is second post, accidentally clicked post)

2007-11-20 Thread Brandon Aaron
I created an example based on the code you provided and was unable to reproduce an error. Could you provide an example online somewhere? http://brandonaaron.net/jquery/issues/livequery/table_test/table_test_2.html -- Brandon Aaron On Nov 20, 7:09 pm, wahyudinata <[EMAIL PROTECTED]> wrote: > jQu

[jQuery] Re: AJAX Security

2007-11-20 Thread howa
On 11月21日, 上午6時34分, "Fabien Meghazi" <[EMAIL PROTECTED]> wrote: > > With a blank or mismatched referrer, the script will always return a > > username as unavailable. > > > Unfortunately the referrer is easily spoofed, so I'm not sure how effective > > this will be. > > And just because it can be

[jQuery] Re: Selector Not Working in IE7?

2007-11-20 Thread Rob Wilkerson
On Nov 20, 2007 5:02 PM, Josh Nathanson <[EMAIL PROTECTED]> wrote: > > WOW, thanks for that link to debugbar.com -- I had been searching far and > wide for an IE debugger and couldn't find anything good -- that is sweet! It's no Firebug, but it's the best I've seen for IE.

[jQuery] Re: How to speed up jQuery

2007-11-20 Thread Flesler
@Snook First of all, this: //check the checkbox when the edit form is loaded if (checkbox.checked) { targets.show(); } Won't be called, but that check is already done, when you do: ...triggerHandler('click') Do you have an online example? I'll check, that seems

[jQuery] livequery $(this) is null? (this is second post, accidentally clicked post)

2007-11-20 Thread wahyudinata
jQuery.create_table.prepare_add_item=function() { var items=$('#canvas > thead > tr > th'); var prev_value=''; var input_item=$('#input_item'); var head=$('#canvas > thead > tr'); // FIRST METHOD $('#canvas > thead > tr > th').click(

[jQuery] dealing with unresponsive script

2007-11-20 Thread james_027
hi, I am using tablesorter 2. I can't help it but I have a large set of data which lead the firefox to popup a dialog saying unresponsive script with options of cancel, debug or continue. how can I prevent the firefox from popping this dialog and display a more user friendly message like "This co

[jQuery] Re: Improving .hover on this basic Jquery?

2007-11-20 Thread soupenvy
Thanks Brian HoverIntent seems too much to me as well, even as simple as it is to put in use. That really seems the way to go though, unfortunately.

[jQuery] livequery $(this) is null?

2007-11-20 Thread wahyudinata
jQuery.create_table.prepare_add_item=function() { var items=$('#canvas > thead > tr > th'); var prev_value=''; var input_item=$('#input_item'); var head=$('#canvas > thead > tr'); // FIRST METHOD $('#canvas > thead > tr > th').click(

[jQuery] Re: replace XPath functions for XML parsing

2007-11-20 Thread chrismarx
sweet!! thanks On Nov 19, 12:21 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Nov 19, 2007, at 7:23 AM, chrismarx wrote: > > > > > > > anybody? > > > On Nov 13, 11:50 pm, chrismarx <[EMAIL PROTECTED]> wrote: > >> I'd like to keep up with the new jquery release and abandon my xpath > >> co

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-20 Thread Luciano G. Panaro
jQuery's core queueing method does it only for the selected element. But when you want to do it for different elements (first fade in #1, then slide down #2, etc.), you need to do it by passing callbacks to each animation. This plugin does something similar to what there is already in jQuery, but

[jQuery] History Remote Post

2007-11-20 Thread Talv
Hi all, Im vey new to Jquery started today infact moving over from mootools and so far whilst things are differnet im developing at a very fast rate, the main reason i moved was because i couldnt get history managers to work correctly so in the applicaition in developing all the pages i "GET" are

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-20 Thread Jared
I don't know if this helps, but I preferred to make the entire latticework ul/li apparatus transparent (background/border: none) and use margin/padding/background/border for a container div, and I thought it worked pretty good. My problem now is that I need to leave breadcrumbs for highlight, so

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-20 Thread Joel Birch
On 21/11/2007, cromeis <[EMAIL PROTECTED]> wrote: > #nav li:hover, #nav li.sfHover, > #nav li:hover a, #nav li:sfHover a, > #nav a:hover, #nav li a:hover, > #nav a:focus, #nav a:active { > color:#51749F; > background:#ff; > text-decoration:line-through; > } Oh

[jQuery] Re: My jquery-Project

2007-11-20 Thread polyrhythmic
Phew, two corner plugins just for a rounded corner? Safari's only issue is that it incorrectly reads the background color, but this can be set with one of the corner() options: .corner("tl 18px cc:#FF"). I have no problem with crossbrowser corners on my site (doublerebel.com). I am about to

[jQuery] Re: HELP: Debugging Issue

2007-11-20 Thread polyrhythmic
On Nov 20, 2:54 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > > In many cases, a better solution for the thousand mouseovers, clicks, etc. > > is to use a single event handler on a parent element and inspect > > event.target in the event handler. That's extremely efficient and nearly > > as ea

[jQuery] Re: IE6 .height() problem

2007-11-20 Thread polyrhythmic
Trying reading the height back after you've set it. I bet it's being correctly set (but not displayed) at 1px. For a debug console in IE, try CompanionJS: http://www.my-debugbar.com/wiki/CompanionJS/HomePage The DebugBar tools are great as well but they are not free. IE6 has a habit of displayi

[jQuery] Re: Storing last clicked to check against in future function calls.

2007-11-20 Thread Wizzud
Some questions: What happens on the first click? Nothing, or "Hide child ul"? What happens on the third, fourth, nth, clicks? Does any one click always check against the preceding click, regardless of whether that preceding click matched it's own preceding click or not? Are you always checking nt

[jQuery] Re: How to concatenate all the OPTIONs of a SELECT to a text field ?

2007-11-20 Thread Wizzud
The literal answer would be $('#TheSelect').html() but I suspect that is not what you're after. Do you have a sample of the select's HTML, and the required result of the concatenation (given that sample)? On Nov 20, 4:22 pm, guix69 <[EMAIL PROTECTED]> wrote: > Hello, I guess the title says it a

[jQuery] Re: .append() is not inserting data into my div

2007-11-20 Thread Wizzud
I have just run this script (changed name of called script and params)... $(document).ready(function(){ $.get("test.php", {itemId:'foo', mediaType:'bar'}, function(data){ alert("Data Loaded: " + data); $("#playlist div.scrollbox").append(data); }); }); against this HTML... re

[jQuery] Re: Canvas based Mocha UI

2007-11-20 Thread polyrhythmic
Glen: I was unaware of this, but explorercanvas is a JS script that translates (!) canvas into VML explorer 6 & 7 can understand. I would have been using Canvas a long time ago, had I known. Apparently all you do is include the script and canvas works for IE. There's no documentation for the pr

[jQuery] Re: HELP: Debugging Issue

2007-11-20 Thread Josh Nathanson
In many cases, a better solution for the thousand mouseovers, clicks, etc. is to use a single event handler on a parent element and inspect event.target in the event handler. That's extremely efficient and nearly as easy to code. Good point Michael, that should be investigated before going

[jQuery] Re: Canvas based Mocha UI

2007-11-20 Thread polyrhythmic
I'd like to see it. The bulk of Mocha-UI doesn't seem to be too Mootools-specific, mostly uses Mt for CSS manipulation and DOM element creation - nothing jQuery couldn't do. Hmm.. Charles On Nov 20, 11:31 am, Guy Fraser <[EMAIL PROTECTED]> wrote: > For anyone who hasn't seen it yet, this is

[jQuery] Re: My jquery-Project

2007-11-20 Thread Ralph Whitbeck
I noticed you are using jquery.corner, That plugin still has some problems...particularly in Safari. There is CurvyCorner jQuery Plugin but I found it has issues with IE 7 possibly 6 too. I found that if you call the curvycorners plugin and then under it call within an IE conditional statement

[jQuery] Re: A few jQuery Patterns

2007-11-20 Thread Jared
Hire an experienced jQuery person to help you out. A couple hundred dollars might get you some one-on-one time with a pretty good developer. Or, if you have the time and/or no inclination to pay, just peruse the plugins page at jquery.com. There's plugins that do and example code that describes e

[jQuery] Re: Superfish - issues with hover links in IE6

2007-11-20 Thread cromeis
Hi Joel, Thank you so much for your css suggestion and for explaining your choice of a class vs. an id. Unfortunately the css suggestion did not correct the issue. I updated the css with the following code: #nav li:hover, #nav li.sfHover, #nav li:hover a, #nav li:sfHover a, #nav a:hover, #nav

[jQuery] Re: Using slideout in a ul

2007-11-20 Thread [EMAIL PROTECTED]
Thats wicked thanks Glen. Just what needed On Nov 20, 9:36 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Like this? I whipped this up a while back. That directory has lots of > simple examples like that.http://www.commadot.com/jquery/faq.php > > Glen > > On Nov 20, 2007 11:37 AM, [EMAIL PROTECT

[jQuery] How to wrap multiple elements at once in one tag.

2007-11-20 Thread [EMAIL PROTECTED]
I have a very ugly piece of html coming off a server that I am trying to make pretty. So far things have gone well, I have been able to manipulate the html using jquery as well as the Tabs and frames plug-ins. However, I have one out standing issue. I would like to section the content of the pa

[jQuery] Re: AJAX Security

2007-11-20 Thread Fabien Meghazi
> With a blank or mismatched referrer, the script will always return a > username as unavailable. > > Unfortunately the referrer is easily spoofed, so I'm not sure how effective > this will be. And just because it can be easily spoofed then you should not use referer. Please explain the differen

[jQuery] Re: tinyMCE jquery equivalent

2007-11-20 Thread polyrhythmic
The a3 revision you're pointing to is a result of the Ajaxian comments, unfortunately I haven't had a chance to play with it yet: Nov. 2 Ajaxian Post: TinyMCE 3 First Look http://ajaxian.com/archives/tinymce-3-first-look However, adapters are not what I want -- to their credit the TinyMCE coders

[jQuery] Re: Canvas based Mocha UI

2007-11-20 Thread Karl Swedberg
On Nov 20, 2007, at 2:31 PM, Guy Fraser wrote: For anyone who hasn't seen it yet, this is pretty awesome: http://ajaxian.com/archives/mocha-ui-mootools-canvas-ui-class that's really slick. Wasn't John working on some canvas stuff? Maybe we'll see a jQuery canvas-based UI? http://ejohn.o

[jQuery] Re: Selector Not Working in IE7?

2007-11-20 Thread Josh Nathanson
WOW, thanks for that link to debugbar.com -- I had been searching far and wide for an IE debugger and couldn't find anything good -- that is sweet! -- Josh - Original Message - From: "Rob Wilkerson" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Tuesday, November 20, 2007 11:51 A

[jQuery] Re: HELP: Debugging Issue

2007-11-20 Thread Michael Geary
> > no you should NOT use inline code, never again... > Sorry Nicolas, that is not true - try to do 1000 mouseover > binds or so on a page and see how it goes for you. jQuery > is fantastic but in some (very few) situations it is not quite > fast enough. > > Obviously this is a "last resort"

[jQuery] Re: Canvas based Mocha UI

2007-11-20 Thread Glen Lipka
A quick test shows that the drag/drop and the corner radius and shadow all work on (at least) IE6 - XP IE7 - Vista Opera 9.24 - XP Safari 3 beta - XP FF 2 - Vista Pretty good. I didnt think canvas had such good support. Seems like there are several plugins that could benefit from this. Block UI,

[jQuery] Re: Canvas based Mocha UI

2007-11-20 Thread Glen Lipka
What browsers does this work on? It would be cool to have a curvycorners that used canvas instead of lots of divs. Or shadows that used it. Glen On Nov 20, 2007 11:31 AM, Guy Fraser <[EMAIL PROTECTED]> wrote: > For anyone who hasn't seen it yet, this is pretty awesome: > > http://ajaxian.com/a

[jQuery] Re: Using slideout in a ul

2007-11-20 Thread Glen Lipka
Like this? I whipped this up a while back. That directory has lots of simple examples like that. http://www.commadot.com/jquery/faq.php Glen On Nov 20, 2007 11:37 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hi , > I want to render a list where each li has a link that when clicked > re

[jQuery] Re: Superfish not working on PHP page

2007-11-20 Thread Jangla
Er, WOW! Talk about going the extra mile - thanks Joel!!! I'm under pressure to get the site finished but once it's done, I'll have a look at the changes you've made so I can learn something from them. On Nov 17, 7:13 am, "Joel Birch" <[EMAIL PROTECTED]> wrote: > I had a look at your page and it

[jQuery] Using slideout in a ul

2007-11-20 Thread [EMAIL PROTECTED]
Hi , I want to render a list where each li has a link that when clicked reveals content sliding out. When clicked again the content will slide back up. Could someone please help me out. I'm a newy here and initial reads of tutorials only show a single caqse example rather than one that has uses t

[jQuery] Re: Superfish v1.3.1 - ie third level menu clipping display problem

2007-11-20 Thread Jared
Just wondering why when I post the forum software doesn't seem to notice it's a *new* post... On Nov 19, 8:57 pm, Jared <[EMAIL PROTECTED]> wrote: > Here's another guy, so I guess I'm not alone. Interface andSuperfish > don't play well together, looksit. > > http://groups.google.com/group/jquery-

[jQuery] Canvas based Mocha UI

2007-11-20 Thread Guy Fraser
For anyone who hasn't seen it yet, this is pretty awesome: http://ajaxian.com/archives/mocha-ui-mootools-canvas-ui-class Wasn't John working on some canvas stuff? Maybe we'll see a jQuery canvas-based UI? http://ejohn.org/blog/sneak-peek/ http://ejohn.org/blog/sneaky-2/ Guy

[jQuery] Re: My jquery-Project

2007-11-20 Thread [EMAIL PROTECTED]
Unfortunately TubeSearch is no plugin - it's more or less a proof of concept. I also use a little bit of php programming in my backend so it's difficult to turn my code into a plugin and my coding is not very clean.

[jQuery] Re: My jquery-Project

2007-11-20 Thread [EMAIL PROTECTED]
Thanks a lot! I would like to hear some feedback about my little project! Features request, critic, etc...

[jQuery] Re: updated Tablefilter Feedback please

2007-11-20 Thread Chris
On Nov 19, 4:37 pm, James Dempster <[EMAIL PROTECTED]> wrote: > Do you think this plugin needs a default UI? Or shall it remain event > driven only requiring the end developer to implement there own UI? > Does some one have any thoughts or comments on the subject? As someone who needs a more dy

[jQuery] Re: tinyMCE jquery equivalent

2007-11-20 Thread Sam Sherlock
I have downloaded the latest tinyMCE 3 and noticed this in the changelog Version 3.0a3 (2007-11-13) > Added new experimental jQuery and Prototype framework adapters to the > development package. but I could not find any info about it (did'nt have the time to look that hard) Is this what y

[jQuery] Re: A few jQuery Patterns

2007-11-20 Thread polyrhythmic
I answered much of this with examples on the other thread. FYI, there is a delay before your post is visible, this list is lightly moderated, so no need to double post, just wait :-). Welcome to jQuery! Charles On Nov 20, 9:59 am, rolfsf <[EMAIL PROTECTED]> wrote: > If you get a solution to yo

[jQuery] Re: Selector Not Working in IE7?

2007-11-20 Thread Rob Wilkerson
On Nov 16, 1:33 pm, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > I'm trying to "manually" interact with the multifile plugin and, as > part of that endeavor, I need to systemically access the anchor tag > that provides "Delete" functionality. The following works great in FF > (of course): > > $('a

[jQuery] Re: HELP: Debugging Issue

2007-11-20 Thread Josh Nathanson
no you should NOT use inline code, never again, even if you're playing your life ! 'Script taking to long' is usually a bad code design: infinite loop or something like that. Sorry Nicolas, that is not true - try to do 1000 mouseover binds or so on a page and see how it goes for you. jQuery

[jQuery] Re: Autosuggest

2007-11-20 Thread Jean
I noted the speed for ie6 is very slow, but for FF is very good =p On Nov 20, 2007 7:37 AM, Gordon <[EMAIL PROTECTED]> wrote: > > $(document).ready (function () > { > var searchBox = $(' id="addrSearch" />'); > var addrList= $('#storedAddresses li'); > var ma

[jQuery] Re: Tab plugin always first tab after reload

2007-11-20 Thread Klaus Hartl
On Nov 20, 1:13 pm, gizze <[EMAIL PROTECTED]> wrote: > Hi, > > I installed the Tab Plugin in my page and I got a question: > > Once I'm in the second tab and my page get reloaded, I always return > to the first tab. > Is it possible to stay in the second tab after a page reload? > > Can someone gi

[jQuery] Re: tinyMCE jquery equivalent

2007-11-20 Thread polyrhythmic
>From looking at the TinyMCE 3 source, I believe we could replace the entirety of their core functions with jQuery, and the total jQuery + TinyMCE package would be smaller than the current TinyMCE release! I discussed this briefly on Ajaxian when ver 3 was released, but haven't had the time to fo

[jQuery] Re: Starter

2007-11-20 Thread Glen Lipka
You need to wrap your script in a ready block. $(document).ready(function(){ //your stuff here }); The reason is that the links dont exist yet when your run your script. Browsers run scripts the second they see them and dont wait for the rest of the page to load. The ready block makes the scrip

[jQuery] Re: SITE SUBMISSION: iFilm.com

2007-11-20 Thread polyrhythmic
Wow. This bandwagon must be huge, maybe we should start running on biodiesel. Think of the children! ;-) Seriously though, I look forward to jQuery being around for a long time. Charles On Nov 19, 7:03 am, Rey Bango <[EMAIL PROTECTED]> wrote: > Another high-profile jQuery site: > > iFilm.com/

[jQuery] Re: starter

2007-11-20 Thread Josh Nathanson
You have to have the ready call wrapped around your function: $(document).ready(function() { // your script here }); -- Josh - Original Message - From: "iPhenom" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Tuesday, November 20, 2007 9:17 AM Subject: [jQuery] starter respect

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-20 Thread polyrhythmic
Very useful. I thought that jQuery already had the ability to queue fx and process arrays of fx similar to your 'scope', however. What is the difference between your FX Queues and the core queue method? Thanks, Charles On Nov 19, 5:30 pm, bigethan <[EMAIL PROTECTED]> wrote: > > Any comments,

[jQuery] Re: jQuery Bandwagon! Wohoo!

2007-11-20 Thread polyrhythmic
Hello Darcy, Good news! All your tasks are easily accomplishable with jQuery! > Type n' List Check out the plugin list for the autocomplete plugins, such as the popular Jorn's Autocomplete Plugin: http://bassistance.de/jquery-plugins/ > Dynamo-List: Use jQuery core functions: Call the AJAX fu

[jQuery] Re: Cycle and Ajax give problems

2007-11-20 Thread Mike Alsup
Try it like this: $("#fade").load("pictures.php", function() { $(this).cycle(); }); This will kick off Cycle *after* your slides have been added to the DOM. But note that if the slides are images then they are not necessarily downloaded and available yet. To deal with that it works well to

[jQuery] Duplicate row in a table + Masked Input Plugin for jQuery v1.1.1

2007-11-20 Thread Milko
Hello everyone I am a html page like this $(document).ready(function(){ hideLoading(); $("#btnAdd").click(function(){ addRow(); }); $("#dbirthdate").mask("99/99/"); }) function addRow() { var clonedRow = $("#gridBody t

[jQuery] clueTip: activate from event in other element?

2007-11-20 Thread mtanu
Forgive me if this is a dupe, but I did try searching through the clueTip threads. I have a page with an image and table of data. I've overlayed small divs with a marker image that represent the objects that are detailed in the table. When the user hovers over a link on a row in the table, I want

[jQuery] Rounded corners-canvas and ie6

2007-11-20 Thread caruso_g
Hi guys, I implemented a rounded-corner-canvas into this project. I used it since its support to borders and a good anti-alias effect. But on IE6 I am having a strange issues I don't know how to solve: right and bottom right to the parent node of the rounded divs, canvases are not positioned to th

[jQuery] Cycle and Ajax give problems

2007-11-20 Thread EvilMotter
The Cycle plugin for jQuery http://www.malsup.com/jquery/cycle/ , wont work if i load the images to be "cycled" with ajax. This works as the pictures are staticly on the page, like on the cycle webpage: $(function() { // run the code in the markup! $("#fade

[jQuery] Re: My jquery-Project

2007-11-20 Thread Saidur
Hi, This is a very cool project. Well is tube search is a plugin? Is it open source or can i get your code. I want to do same application for my project. So if you give help me then i will use the jquery plugin . Thanks Saidur Rahman Web application developer Right Brain Solution Limited On Nov

[jQuery] Storing last clicked to check against in future function calls.

2007-11-20 Thread [EMAIL PROTECTED]
Hello everyone, Just started working with jQuery in the past few weeks, fairly impressed thus far. :) I've got a questions which actually might touch base more on a general JS question but figured might as well ask it. What I'm trying to do: // What got clicked first? (capture) // What was cl

[jQuery] Replace the horizontal scroll bars!!!??

2007-11-20 Thread tazzolo
Hi, I'm looking for a script in jquery to "Replace the vertical scroll bars". I found "jScrollPane.js" but is only for vertical scrollbar. I'd like to replace horizontal scroll bar with my images. Is it possible? Anybody have an idea? Thanks a lot . Fabio

[jQuery] Best way to detect collision or... how to select by element position

2007-11-20 Thread [EMAIL PROTECTED]
I have an application I'm trying to develop that has an interface much like a windows desktop, in which a user can drag icons to any position on the container, and the icons will stay there. Right now a user could stack icons by dragging one onto another one, but I don't want them to be able to do

[jQuery] Re: using jcarousel as image viewer - how to load large image onclick with loading animation

2007-11-20 Thread maddog
Did you find a solution? I would need a click-event on the jcarousel- images - so it's nearly the same problem... Thanks for any advice... Michael On 6 Okt., 06:39, aussiebob <[EMAIL PROTECTED]> wrote: > I'm trying to use the excellentjcarouselplugin to create an image > viewer/slideshow for a f

[jQuery] Mixing two effects

2007-11-20 Thread Pathos
Hello everybody, after hearing about JQuery i am now plungin in and i really like the possibilities of jquery. I'm trying to get the next result and i'm not sure if its possible. I want a div to go down with an image and go up after x seconds and go down with a new image. I tried animated.innerf

[jQuery] Accordion Bug?

2007-11-20 Thread Jason Cartwright
Hi all, I think I've found a bug with the accordion [1] component. $().activate(false) [2] doesn't seem to remove the "selectedClass" class from the header of the selected element, as I'd expect it to. I've made a simple test case over here... http://jason.m.cartwright.googlepages.com/accordionbu

[jQuery] Cloning Question

2007-11-20 Thread [EMAIL PROTECTED]
When I clone, it causes my page to reset at the top of the page as if the anchor is reset. I have a form that adds schools, highschool and work places to a form and when the user "adds" a new school and the clone works but for some reason take you to the top of the page. Any ideas for a fix would

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-20 Thread Luciano G. Panaro
Regarding the 7-8 issue, I've just noticed that. I'll be fixing it today I guess =) But the 8 moving when 3 or 4 is a bit odd, since the "animate" for that element is not launched yet (well, at least it shouldn't be launched =P). Thanks Ethan! On Nov 19, 10:30 pm, bigethan <[EMAIL PROTECTED]> wr

[jQuery] Re: thickbox IE7 position

2007-11-20 Thread yusuke
Here, the third bump.

[jQuery] Re: new plugin: jClocke

2007-11-20 Thread Guy Fraser
dbzz wrote: > i have been working on a plugin and have gotten to the point where i > think i need some feedback. i'm sure there are bugs and code that > could be better or is just bad practice. i haven't done any docs or > extensive demos - this is just sort of a proof of concept. so have a > look

[jQuery] Re: TableCloth

2007-11-20 Thread Web Specialist
This link works fine: http://p.sohei.org/jquery-plugins/ 2007/11/19, shapper <[EMAIL PROTECTED]>: > > > Hello, > > I have found a really good script for row and column hightlight, maybe > the best one I saw until now: > http://cssglobe.com/lab/tablecloth/ > > Is there something as good as this

[jQuery] Re: TableCloth

2007-11-20 Thread Web Specialist
403 Forbidden You don't have permission to access /stuff/jquery/tablehover/ on this server. 2007/11/20, Cloudream <[EMAIL PROTECTED]>: > > > http://p.sohei.org/stuff/jquery/tablehover/ > > On Nov 20, 7:18 am, shapper <[EMAIL PROTECTED]> wrote: > > Hello, > > > > I have found a really good script f

[jQuery] Re: new plugin: jClocke

2007-11-20 Thread Jean
REALLY COOL, but how i can change the minutes? On Nov 20, 2007 12:40 AM, dbzz <[EMAIL PROTECTED]> wrote: > > i have been working on a plugin and have gotten to the point where i > think i need some feedback. i'm sure there are bugs and code that > could be better or is just bad practice. i haven

[jQuery] Re: A few jQuery Patterns

2007-11-20 Thread rolfsf
If you get a solution to your "Dynamo Check'em", I'd love to hear it. We'll be looking at a similar challenge in the new year. TunaSandwich wrote: > > > > Dynamo-Check'em: > I have a list of a lot of check boxes so what I'd like to do is have a > text box at the top of the list. When the use

[jQuery] Re: fValidate breaks jQuery

2007-11-20 Thread Jörn Zaefferer
Gordon schrieb: I could really use some help with this so if you've run into this problem then please let me know what workarounds exist I can offer help migrating to my validation plugin if you give me some information on how you use fValidate. It works quite well together with (at least j

[jQuery] Re: A few jQuery Patterns

2007-11-20 Thread Glen Lipka
I truly want to help in a detailed way, but you asked too many questions. :) *Where to start:* http://docs.jquery.com/Main_Page *Plugins:* http://jquery.com/plugins/ *Tutorial Blog: *http://www.learningjQuery.com (also a book) *Some basic samples:* http://www.commadot.com/jquery Take a few moment

[jQuery] Re: [OT] Wordpress plugin release using jQuery and it plugins

2007-11-20 Thread Rey Bango
Anytime my man. Rey Benjamin Sterling wrote: Thanks for the feedback Rey, I think I know what that is. It is a combination of the list element having styles (wordpress defaults) and the images not fully loaded. I think I can hide that area and just put a loader image in there till everythi

[jQuery] Re: Totally lost: scroll the page to put a div at the top

2007-11-20 Thread Flesler
>Is there no way to simply scroll the page to the next div once the user tabs away from a specified form field? It's not very difficult, you can certainly do that manually. > the documentation isn't very clear. I think the docs are quite clear, it says: "The plugin will scroll the matched eleme

[jQuery] Re: new plugin: jClocke

2007-11-20 Thread Benjamin Sterling
that is actually really cool. Nice work. On 11/19/07, dbzz <[EMAIL PROTECTED]> wrote: > > > i have been working on a plugin and have gotten to the point where i > think i need some feedback. i'm sure there are bugs and code that > could be better or is just bad practice. i haven't done any docs o

[jQuery] Re: [OT] Wordpress plugin release using jQuery and it plugins

2007-11-20 Thread Benjamin Sterling
Thanks for the feedback Rey, I think I know what that is. It is a combination of the list element having styles (wordpress defaults) and the images not fully loaded. I think I can hide that area and just put a loader image in there till everything is done processing. Thanks agian. On 11/20/07,

[jQuery] Re: My jquery-Project

2007-11-20 Thread Rey Bango
Added it to the list. Thanks. Rey [EMAIL PROTECTED] wrote: Ok: "Tubesearch lets you search through Youtube videos without reloading the page" That's a short description - you can also find recommodations for related artists, be able to save videos to MyList, and the design is very easy on th

[jQuery] Re: [OT] Wordpress plugin release using jQuery and it plugins

2007-11-20 Thread Rey Bango
That looks really good Ben. The only quirk I saw was in IE7 where right before initial load of the gallery I saw a series of horizontal lines going down the length of the page around the center. Then they disappeared as soon as the gallery displayed. I've attached an image so you can see it.

[jQuery] Re: [SITE SUBMISSION] songza.com

2007-11-20 Thread Andy Matthews
Whoah... That's pretty freaking sweet! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of SeViR Sent: Tuesday, November 20, 2007 2:27 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [SITE SUBMISSION] songza.com Cool site!!, I like it, pl

[jQuery] Re: thickbox IE7 position

2007-11-20 Thread JGiotta
I second that 'bump'.

[jQuery] IE6 .height() problem

2007-11-20 Thread wellmoon
Hi, I am creating a new div and using the .height(1) method to set it's height to 1 pxiel high. In IE7 and FF this works fine, however in IE6 for some reason 18 pixels are mysteriously added to the height of the new div. It seems to be added at the point when it is inserted into the DOM so gett

[jQuery] Re: How to speed up jQuery

2007-11-20 Thread Snook
Sorry for the previous post ... So, I would like to show/hide some . I fisrt verify if checkbox are checked on form load. And then, I use a function for each checkbox. I have 5 of them to verify, so 5 calls to myToggleDisplay which just this part took 9 sec more under IE6 (only for these checkbo

[jQuery] Re: How to speed up jQuery

2007-11-20 Thread Snook
I also have found a thread in jQuery dev, which explain that a regex could be improved. But it didn't improve my JS :-( http://groups.google.com/group/jquery-dev/browse_thread/thread/0611db65f891b7e6 Cheers, Damien On Nov 14, 10:30 pm, Flesler <[EMAIL PROTECTED]> wrote: > Can you make a model o

[jQuery] Tab plugin always first tab after reload

2007-11-20 Thread gizze
Hi, I installed the Tab Plugin in my page and I got a question: Once I'm in the second tab and my page get reloaded, I always return to the first tab. Is it possible to stay in the second tab after a page reload? Can someone give me an example ? Thank you

[jQuery] Re: How to speed up jQuery

2007-11-20 Thread Snook
Hello Flesler, Yes, you got want I would like to do. So when I load a form, I first check the input checkbox if there are checked or not On Nov 14, 10:30 pm, Flesler <[EMAIL PROTECTED]> wrote: > Can you make a model of your situation ? that could help. > What do you want to do exactly? to show/h

[jQuery] Re: HELP: Debugging Issue

2007-11-20 Thread STuFF
no you should NOT use inline code, never again, even if you're playing your life ! 'Script taking to long' is usually a bad code design: infinite loop or something like that. nicolas challeil On Nov 19, 6:24 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > A "script taking too long" error gene

[jQuery] Re: ui.datepicker.js - setDateFor()

2007-11-20 Thread Shawn
Sure, now that I figured all that out AND posted the message, I find the "defaultDate" option to be passed to the calendar... from the docs: defaultDate Date(, mm - 1, dd), Number Default: null Set the date to display on first opening if the field is blank. Specify either an actual dat

[jQuery] Re: My jquery-Project

2007-11-20 Thread [EMAIL PROTECTED]
Ok: "Tubesearch lets you search through Youtube videos without reloading the page" That's a short description - you can also find recommodations for related artists, be able to save videos to MyList, and the design is very easy on the eye! *g*

[jQuery] A few jQuery Patterns

2007-11-20 Thread TunaSandwich
Hello Everyone, I just hopped on the jQuery bandwagon and I'm working on the following functionality so if there are any examples or tutorials that do anything like this I'd love to hear about them. I realize I will eventually figure all this out but if anyone knows of any working models, exampl

[jQuery] Re: Suggest a plugin for slider-like construction

2007-11-20 Thread Sagari
Indeed, that looks exactly like what I need. Thank you! All the best, Konstantin On 19 нояб, 19:26, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > It sounds like you're looking for a layout control called a splitter. Here's > one: > > http://methvin.com/jquery/splitter/ > > - Richard > > On No

[jQuery] Re: ui.datepicker.js - setDateFor()

2007-11-20 Thread Shawn
Yep, I need to stop coding for the night. My first approach is correct (for my needs). The defaultDate option sets what date will be shown when the datepicker is displayed, if it's corresponding text box is empty. It does NOT show the date in the text box. k, I'm going to bed... Shawn Shaw

[jQuery] Re: Totally lost: scroll the page to put a div at the top

2007-11-20 Thread pbarney
I did see that, but isn't it possible to simply scroll the page without adding all the extra features? Add to that, the documentation isn't very clear. If I do $("#section_1").scrollTo(300), what does that actually do? Does it immediately scroll to that section? Does it move 300px from the section

[jQuery] Re: TableCloth

2007-11-20 Thread Cloudream
http://p.sohei.org/stuff/jquery/tablehover/ On Nov 20, 7:18 am, shapper <[EMAIL PROTECTED]> wrote: > Hello, > > I have found a really good script for row and column hightlight, maybe > the best one I saw until now:http://cssglobe.com/lab/tablecloth/ > > Is there something as good as this using JQ

[jQuery] Re: New Plugin: jQuery Fx Queues

2007-11-20 Thread bigethan
> Any comments, bugs, enhancements, ideas, whatever are more > than welcomed :). Sweet stuff. Though in my rabid clicking, I found a glitch. Using: Mac Safari 3 and FF 2 Page: http://www.decodeuri.com/fxqueues/fxqueues.html If I press 'Stop' after the '7' has moved, but in the 2 second wait

[jQuery] ui.datepicker.js - setDateFor()

2007-11-20 Thread Shawn
I just wasted an hour trying to figure out how to simply set the date for a datepicker from within code. So I'm posting what I've learned here hoping that I might save someone that hour themselves... What I was trying to do was to simply show a default date in my text box. I wanted to use th

[jQuery] new plugin: jClocke

2007-11-20 Thread dbzz
i have been working on a plugin and have gotten to the point where i think i need some feedback. i'm sure there are bugs and code that could be better or is just bad practice. i haven't done any docs or extensive demos - this is just sort of a proof of concept. so have a look and feel welcome to r

  1   2   >