[jQuery] Remove plugin from an element?

2007-09-10 Thread Mika Tuupola
Is there a way to remove a plugin from an element? Lets say I have plugin called foo. I attach it to all inputs. $(input).foo() Later I need a way to detach foo() from some input elements. One way would be to have conditionals inside foo code. However I would prefer detaching plugin for

[jQuery] Re: filter(fn)

2007-09-10 Thread Wizzud
The filter(function) works fine for me (jQuery v1.1.4) - return TRUE and the filter is applied (ie. the element is kept); return FALSE and the element is removed - so taking the documented example it would return How are you?. The same effect (using the documented example again) can be achieved

[jQuery] Re: problem with selectors and ajax content

2007-09-10 Thread Richard D. Worth
Here's where I think the problem is: $('#thesView').load('database.html', '', oThis.afterLoad()); should be $('#thesView').load('database.html', '', oThis.afterLoad); Notice the removal of the parans following oThis.afterLoad. This way you're passing the name of the function (as a

[jQuery] Re: Remove plugin from an element?

2007-09-10 Thread Richard D. Worth
Each plugin itself must be written to expose a method to remove it from an element. Something like $(input).fooDestroy() - Richard On 9/10/07, Mika Tuupola [EMAIL PROTECTED] wrote: Is there a way to remove a plugin from an element? Lets say I have plugin called foo. I attach it to all

[jQuery] Re: prob with

2007-09-10 Thread Wizzud
Your load statment should be $('#thesView').load('database.html', '', oThis.afterLoad); ie. just oThis.afterLoad as the name of the callback function, instead of oThis.afterLoad() as you have it. BUT then when afterLoad gets run its context is div#thesView so this refers to that element, not

[jQuery] Re: Another site using jQuery...

2007-09-10 Thread Klaus Hartl
Rick Faircloth wrote: The tabs display on the same page might be the tabs plug-in, also. If you find a not gracefully degrading href like javascript:void(null); you can be sure it's not the Tabs plugin :-) --Klaus

[jQuery] Re: Plugin doesn't seem to work in IE6 and IE7

2007-09-10 Thread Wizzud
You have superfluous commas in your settings and effect objects, indicating another member is going to be added but there isn't one. Try ... var settings = { effect: { duration: 100 } }; Thasmo wrote: This gives me

[jQuery] Re: filter(fn)

2007-09-10 Thread Klaus Hartl
Pluthos wrote: Hi everyone, I am new to this group. I have been trying to get filter(function) to work for a few days without success. My goal was to remove DOM elements that did not belong to a pre-arranged array. Out of desperation I tried the example given in the on line documentation at

[jQuery] Re: Internet Explorer rounding numbers on data returned .getJSON request.

2007-09-10 Thread Wizzud
What does histars() do? Joey T wrote: Hello All, This is my first round with jQuery, which I think is absolutely fantastic, btw. At any rate, I have encountered a funky bug which seems to be IE / Internet Explorer specific. after completing a .getJSON request, whenever a

[jQuery] Re: filter(fn)

2007-09-10 Thread Wizzud
Yes, I must admit I did not test the actual documented example - I was heading more at the root of the problem, ie what wasn't working with Pluthos' script that caused him to try the example in the first place! Klaus Hartl wrote: Pluthos wrote: Hi everyone, I am new to this group. I

[jQuery] Jorn's validation library, validate against default value

2007-09-10 Thread Michael Price
Hi all, We've got two input boxes on a form for the user to type their name in to. The client has requested Forename and Surname appear in these boxes by default as a hint to ensure they know what goes in which box. I want to validate these fields using Jorn's validation to ensure that they

[jQuery] Re: problem with selectors and ajax content

2007-09-10 Thread Wizzud
... and this within afterLoad (see http://www.nabble.com/prob-with-tf4411558s15494.html http://www.nabble.com/prob-with-tf4411558s15494.html ) Richard D. Worth-2 wrote: Here's where I think the problem is: $('#thesView').load('database.html', '', oThis.afterLoad()); should be

[jQuery] Re: $.getScript and variables

2007-09-10 Thread Equand
is it real? On Sep 10, 4:37 am, Equand [EMAIL PROTECTED] wrote: *global for $(document).ready(function() { SPACE }; ... On Sep 10, 4:33 am, Equand [EMAIL PROTECTED] wrote: i forgot to mention... i tried to put it into a function and pass global vars in it thru functions vars... and

[jQuery] Re: Remove plugin from an element?

2007-09-10 Thread Mika Tuupola
On Sep 10, 2007, at 11:17 AM, Richard D. Worth wrote: Each plugin itself must be written to expose a method to remove it from an element. Something like $(input).fooDestroy() Maybe I am missing something obvious :) How does this method remove the plugin instance from the element? Can

[jQuery] Re: Remove plugin from an element?

2007-09-10 Thread Josh Bush
I just did this for my masked input plugin. $.fn.foo=function(){ return this.each(function(){ function bar(){ //Do Something useful here //Note: this function is deeply buried in scope and unaccessible from outside } $(this).bind(keydown,bar);

[jQuery] Re: Remove plugin from an element?

2007-09-10 Thread Josh Bush
Sorry about the typo, the last close parenthesis(on unfoo()) should be removed. On Sep 10, 6:46 am, Josh Bush [EMAIL PROTECTED] wrote: I just did this for my masked input plugin. $.fn.foo=function(){ return this.each(function(){ function bar(){ //Do Something useful here

[jQuery] Corner Plugin affects layout

2007-09-10 Thread Sam Collett
When I apply the corner plugin to an element on the page, the layout is affected when I hover over a link with padding. This only seems to occur in Internet Explorer (IE 6 and 7), and I am unable to find out the cause. To replicate, go to http://www.nelctp.nhs.uk Resize the browser window

[jQuery] Problem: Event on image load in IE

2007-09-10 Thread weepy
Hi I am trying to fire an event in IE when an image has loaded, using the following code : var img = $(img/) $(img).attr({ 'class': 'image', src: $elem.attr('href'), alt: $elem.text(), style: 'margin-top: -1px; margin- top:-1px'}).load(function() { functions.imageLoaded(elem, this)} )

[jQuery] Re: Problem: Event on image load in IE

2007-09-10 Thread Piotr Petrus
Have you tried .bind('load', function() {})? Load() is also responsible for ajax calls, maybe IE gets it wrong in this case -- Piotr Petrus http://riddle.pl

[jQuery] Re: Another site using jQuery...

2007-09-10 Thread Rick Faircloth
Oops! Sorry about that, Klaus! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Monday, September 10, 2007 4:40 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Another site using jQuery... Rick Faircloth wrote:

[jQuery] Re: confusing children() behavior

2007-09-10 Thread Jonathan Chaffer
On Sep 7, 2007, at 18:33 , ScottBruin wrote: In this search, pressing enter when an item is highlighted redirects to a new page. The code from the book reads similar to the following: var redirectPage = function() { var x =

[jQuery] Re: $.css() values from jQuery created objects return undefined in Opera

2007-09-10 Thread Equand
thanks, camelback ftw ) On Sep 10, 12:14 pm, Wizzud [EMAIL PROTECTED] wrote: There's a heck of a lot of script in there, and not much clue as to what exactly is returning undefined. One suggestion is to camelback the css attributes, eg... background-color - backgroundColor font-size -

[jQuery] Re: Another site using jQuery...

2007-09-10 Thread Klaus Hartl
Rick Faircloth wrote: Oops! Sorry about that, Klaus! Rick Rick, no need to apologize of course! Just wanted to give a hint for how to detect the tabs plugin :-) --Klaus

[jQuery] Horizontal Scrolling Text/Marquee

2007-09-10 Thread geetarista
I tried posting to this thread: http://groups.google.com/group/jquery-en/browse_thread/thread/3fcd31510dfe2bc7/ but it won't go through. I'm basically looking for a scrolling horizontal text as a replacement to using marquee html tags. I want to try to find a smooth and easy way to do this with

[jQuery] Re: Is it possible implement mutiple drag use jquery and interface?

2007-09-10 Thread huangliang2211
up On Sep 9, 1:08 am, huangliang2211 [EMAIL PROTECTED] wrote: like there is a all item list and every item with a checkbox, when i check some items anddraga checked item, all checked item will begin move. is that possible?

[jQuery] Re: jQuery Edit In Place Help

2007-09-10 Thread Chris
Whoops did not mean to post this twice On Sep 9, 8:57 am, Chris [EMAIL PROTECTED] wrote: Hello All, I am working to get this pluginhttp://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javasc... working. I can successfully edit in place text, but I would like to take a php

[jQuery] Re: Taconite,tables cellspacing and cellpadding in IE6

2007-09-10 Thread Stefano Griggio
Thanks a lot Mike. Stefano

[jQuery] Re: Tablesorter 2.0

2007-09-10 Thread [EMAIL PROTECTED]
Hello, On 20 aug, 11:33, lukek [EMAIL PROTECTED] wrote: By the way I had another question. -- In the unpacked version of the latest script your comment on line 555 says apply easy methods that trigger binded events. Does this mean I can insert function calls in here - ie around line 560?

[jQuery] Firing function on any form element changing?

2007-09-10 Thread mo2g
I have a script that fires if any input or select element changes on my form: $('input, textarea, select').change(function(){ First, is this the correct way to do this? Second, how do I make sure that only the elements in form myform are the one that are being monitored for change? The

[jQuery] Re: Scrolling Horizontal Marquee

2007-09-10 Thread geetarista
The only problem is that his implementation is a little choppy as well. I don't want to do this in flash, but is there a way to make this look really smooth? On Sep 9, 6:20 pm, Karl Swedberg [EMAIL PROTECTED] wrote: On Sep 8, 2007, at 2:39 PM, geetarista wrote: I tried to reply to this

[jQuery] Re: Start effect after another effect is complete / Start effect after image is loaded? - wafflgallery.js

2007-09-10 Thread alan
Well, no one has answered but for future reference, I've settled on using callbacks. I'm not sure if this is the most efficient way, so someone should correct me if so? a la: $(element).effect(parameter, function() { secondeffect }); where secondeffect will trigger AFTER effect rather than

[jQuery] Re: Expanding tree + styling

2007-09-10 Thread Ditikos
Sorry, I meant that within li there is a caption link. In other words, my list will be completely linkable to other pages. So I've managed to prepend the level one li with a graphic. Now I need a way to make a recursive function to apply the graphic and the functionality to all child nodes li up

[jQuery] jquery interface elements : drag starts with delay on IE

2007-09-10 Thread andreas
Hello, I am using Jquery + the interface elements for JQ (http:// interface.eyecon.ro/demos) in order to implement a sortable list. The 'start drag' event seems to be triggered with significant delay on IE. On firefox there is no delay that can be described as 'sluggish' but in IE the delay is

[jQuery] Found a dodgy copy of your book

2007-09-10 Thread Tane Piper
Hey Karl, I was doing my usual Technorati feed for jQuery stories and saw this: http://e-liber.blogspot.com/2007/09/learning-jquery-better-interaction.html It looks like someone has put up a PDF version of the book for anyone to download, thought you might want to inform your publisher. --

[jQuery] Re: Found a dodgy copy of your book

2007-09-10 Thread Benjamin Sterling
Looks like he has a bunch of books from that publisher. On 9/10/07, Tane Piper [EMAIL PROTECTED] wrote: Hey Karl, I was doing my usual Technorati feed for jQuery stories and saw this: http://e-liber.blogspot.com/2007/09/learning-jquery-better-interaction.html It looks like someone has

[jQuery] Re: Found a dodgy copy of your book

2007-09-10 Thread Michael Stuhr
Tane Piper schrieb: Hey Karl, Don't you think it would be more clever to directly mail him inistead of ... well micha

[jQuery] Re: Internet Explorer rounding numbers on data returned .getJSON request.

2007-09-10 Thread Jolyon Terwilliger
Hi Wiz, I am not sure why that would be relevant since, as stated previously, this rounding error occurs with the same routine as above only on IE, not on Firefox. The histars() routine simply iterates through 1 through 5 and uses rating as a limiter to re-src img tags with a different image -

[jQuery] Re: Corner Plugin affects layout

2007-09-10 Thread [EMAIL PROTECTED]
use this plugin: http://meerbox.nl/?page_id=4 works fine and it's pretty nice ;)

[jQuery] BlockUI fadeout

2007-09-10 Thread quayfee
Hi All, I'm using the blockUI plugin for dialogs throughout the site, Content is loaded using $(element).load(... into a div created on on the fly. when unblocking the div with the content loaded disappears before the whole thing has faded. I would like to have this wait until the animation

[jQuery] Slide effect bugs in IE 6 and 7 since version 1.1.3

2007-09-10 Thread Lobo
Hi all, I have issues with the slide effect since the version 1.1.3 (same issue with 1.1.4): _ Flicker effet when the div is sliding up, just before disappearing. (working fine with 1.1.2) _ The slide effect don't apply to a div with a relative position when the doctype is strict Everything

[jQuery] Re: Found a dodgy copy of your book

2007-09-10 Thread Karl Swedberg
LOL. Oh well. Thanks for the heads up, Tane. As for everyone else, please disregard the link Tane sent along with his warning. ;-) By the way, the jQuery project receives a small percentage of $ from all legitimate sales of the book. --Karl _ Karl Swedberg

[jQuery] Re: Found a dodgy copy of your book

2007-09-10 Thread Andy Matthews
I made a comment on that post. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Stuhr Sent: Monday, September 10, 2007 8:17 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Found a dodgy copy of your book Tane Piper schrieb:

[jQuery] Re: Another site using jQuery...

2007-09-10 Thread Sam Collett
It uses something else that does not use jQuery: http://www.barelyfitz.com/projects/tabber/ Something similar can be done with jQuery. e.g. http://www.texotela.co.uk/code/jquery/headertabs/ On Sep 10, 1:58 pm, Klaus Hartl [EMAIL PROTECTED] wrote: Rick Faircloth wrote: Oops! Sorry about

[jQuery] IE, Ajax and colspans

2007-09-10 Thread Dmitrii 'Mamut' Dimandt
I'm having a very weird problem that manifests itself only in IE - both 6.x and 7.x I use taconite to retrieve a table from the server: taconite replaceContent select=#data table style=width: 90% tbody tr

[jQuery] Re: jQuery example: help in review

2007-09-10 Thread [EMAIL PROTECTED]
On Sep 9, 8:19 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, I've created a small game with jQuery: Fifteen puzzle.http://www.alexatnet.com/node/68 The jQuery part is very simple but I'm interested in ideas on how to make it smaller. Probably this can be a good demonstration of

[jQuery] Re: $.getScript and variables

2007-09-10 Thread Michael Geary
Is what real? Equand, I read your posts, but I'm not sure what you're trying to do or what the question is. Could you explain in more detail, with some actual code? Maybe post a link to a page, or at least post a code sample? -Mike From: Equand is it real? *global for

[jQuery] Re: Problem: Event on image load in IE

2007-09-10 Thread weepy
I changed to bind('load', ... I still get the same problem - at first it fires - but once the image has loaded - it seems that IE has cached the image and so the image load event does not get fired. You can see it in action here : http://parkerfox.parkerfox.railsplayground.net/labs/zoombox/

[jQuery] Re: Corner Plugin affects layout

2007-09-10 Thread Sam Collett
Using canvas instead of nested div's for the corner didn't help with the layout (although it looks slightly better). The problem is caused by the 'position: relative' added to the element with the corner applied to it. On Sep 10, 2:28 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: use this

[jQuery] Re: Problem with ClueTip: Flash-Elements flickers when rollover

2007-09-10 Thread Anton
no flicker with wrapper-div: http://www.media-giganten.de/test/cluetip-test/index.html flicker without div and changed fx: http://www.media-giganten.de/test/cluetip-test/index_flick.html Is this a Firefox bug, not a Cluetip bug? I so wish this issue could be solved somehow.. PS. I

[jQuery] Re: jCarousel Lite - version 1.0

2007-09-10 Thread Anton
Anton - As per your request, the buttons will be assigned a class called disabled when the carousel is in the first or last element respectively. This is applicable to non-circular carousels only. Great, although that's not what I meant :) However, I solved my issue using (shortened, for

[jQuery] Re: $.getScript and variables

2007-09-10 Thread Equand
ok... this page... http://www.jppromo.ru : there is A LOT of code, so search in code for //ADMIN AREA START and //ADMIN AREA STOP, the code between them is the one i want to put into a separate file, for load via getScript... but there are used global vars like LASTLOGIN and LASTHREF etc, and

[jQuery] Re: Expanding tree + styling

2007-09-10 Thread Piotr Petrus
jQuery is recursive by default. $('ul.parent li').prepend(yourElement); -- Piotr Petrus http://riddle.pl

[jQuery] Re: Expanding tree + styling

2007-09-10 Thread Piotr Petrus
Blah, I meant $('li.parent').prepend(……) -- Piotr Petrus http://riddle.pl

[jQuery] Re: Firing function on any form element changing?

2007-09-10 Thread Piotr Petrus
You can use $(myform).find('input, textarea, select') but var $('input, textarea, select', myform) is also correct. I'd seek an answer in myform element. If it's undefined it means it doesn't exist, so there's an error in your code or in algorithm. -- Piotr Petrus http://riddle.pl

[jQuery] Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Chris Jordan
Hi folks, I've just started using thickbox 3.1 and I notice that transparencies are *not* working in IE6. Is anyone else having this issue? I've not had this issue in the past, so it's confusing me. The CSS appears to be correct to me, but for some reason, the background refuses to be

[jQuery] Re: Problem with ClueTip: Flash-Elements flickers when rollover

2007-09-10 Thread Karl Swedberg
Hi Anton, While I think it's a Firefox bug, the most recent version of clueTip lets you work around it: http://jquery.com/plugins/project/cluetip/ You can use the $.cluetip.setup function to change where the clueTip divs are placed in the DOM. For example: $.cluetip.setup({

[jQuery] Re: Problem: Event on image load in IE

2007-09-10 Thread Equand
try adding this if ($.browser.msie) { var href = $(img, #preview).attr(src).replace(/\?\d*$/g,''); } to the load, and add a random string to every linking function like this if ($.browser.msie) { href+= '?' + (Math.round(512 * Math.random()) + Math.round(512 * Math.random())); } i

[jQuery] List of Useful jQuery Plugins

2007-09-10 Thread 1Marc
I viewed each of the jQuery plugins in the jQuery plugins repository. I couldn't believe how many there were! So I decided to make this master list to weeded out any plugins that were either broken or I didn't find any practical application for (view the link below). List of Useful jQuery

[jQuery] Re: Problem: Event on image load in IE

2007-09-10 Thread Equand
oh by the way, here's my gallery, so u can check the code working in real-time and adapt it, http://www.nosite.ru/HU On Sep 10, 6:19 pm, Equand [EMAIL PROTECTED] wrote: try adding this if ($.browser.msie) { var href = $(img, #preview).attr(src).replace(/\?\d*$/g,'');} to the load,

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Alexandre Plennevaux
Do you have a link where we can check your problem? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: lundi 10 septembre 2007 17:09 To: jQuery (English) Subject: [jQuery] Thickbox 3.1: Transparency issues in IE6 Hi folks,

[jQuery] $.load() javascript problems in IE and Safari

2007-09-10 Thread Bryan Blakey
As many others have already noted, if your page makes an AJAX call that returns javascript and HTML, for some reason IE and Safari are unwilling to execute any of the javascript. Looking through the jQuery code, I noticed that there *used* to be an evalScripts function in the same object as the

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Equand
looks to me like an 'opacity' css problem On Sep 10, 7:23 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: Do you have a link where we can check your problem? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: lundi 10

[jQuery] Re: BlockUI fadeout

2007-09-10 Thread Mike Alsup
when unblocking the div with the content loaded disappears before the whole thing has faded. I would like to have this wait until the animation has completed, but can't find any information on the blockUI site about a callback on the fadeout method. Is there one? Keith, There is currently

[jQuery] IE 7(mostly likey all 6 too) issue with added content with javascript dynamically

2007-09-10 Thread Eridius
I have a script that reorder some content an this content includes javascript that runs. I basically take the html/javscript text and put it into a variable in the correct order and then i empty out the current content and replace is with the new content. Now if FF, this works fine because the

[jQuery] Re: licensing for distribution

2007-09-10 Thread Stephan Beal
On Sep 10, 6:36 pm, CodeMates [EMAIL PROTECTED] wrote: Do you offer any license for distributing jQuery? We have a community script in development and we wanted to add jQuery for the tabs design. http://docs.jquery.com/Licensing :)

[jQuery] licensing for distribution

2007-09-10 Thread CodeMates
Do you offer any license for distributing jQuery? We have a community script in development and we wanted to add jQuery for the tabs design. Thanks, Geoffrey

[jQuery] Re: IE 7(mostly likey all 6 too) issue with added content with javascript dynamically

2007-09-10 Thread Glen Lipka
Have you tried the Live jQuery plugin? I'm not sure if this is applicable for your needs. Glen On 9/10/07, Eridius [EMAIL PROTECTED] wrote: I have a script that reorder some content an this content includes javascript that runs. I basically take the html/javscript text and put it into a

[jQuery] Re: Jorn's validation library, validate against default value

2007-09-10 Thread Jörn Zaefferer
Michael Price schrieb: Hi all, We've got two input boxes on a form for the user to type their name in to. The client has requested Forename and Surname appear in these boxes by default as a hint to ensure they know what goes in which box. I want to validate these fields using Jorn's

[jQuery] Re: show hide div with menu

2007-09-10 Thread Wizzud
1. tabContent2 : holds the collection of DIVs that are immediate children of #tabcontent 2. filter(':visible') : reduces the collection from (1) to just those DIVs that are visible (ie probably the one that had previously had show() run on it) because it is not necessary to hide those that

[jQuery] Re: IE 7(mostly likey all 6 too) issue with added content with javascript dynamically

2007-09-10 Thread Eridius
That that is not the issue. it is not on an event, just plain javascript that should when it is parsed. Glen Lipka wrote: Have you tried the Live jQuery plugin? I'm not sure if this is applicable for your needs. Glen On 9/10/07, Eridius [EMAIL PROTECTED] wrote: I have a script

[jQuery] why is code working on Firebug console, but not in script file?

2007-09-10 Thread Matt Vance
I'm a javascript novice and I'm working with the jMaps plugin for jQuery to add Yahoo Maps to a site. For basic maps, the plugin is working great; however, I'm having trouble getting its addPoint function to work. When I try the following script, the map displays but the point doesn't:

[jQuery] Re: using load cross site

2007-09-10 Thread Kris Zyp
Here is the JSONP proposal: http://bob.pythonmac.org/archives/2005/12/05/remote-json-jsonp/ Yahoo also uses the same approach (with a different callback parameter): http://developer.yahoo.com/common/json.html And I just released CrossSafe, which lets you securely use JSONP/XSS with callback:

[jQuery] Re: IE 7(mostly likey all 6 too) issue with added content with javascript dynamically

2007-09-10 Thread Glen Lipka
Can you post it online? (or a sample demonstrating the problem) It helps to see the problem in action. Best when you can simplify the page to the bare essentials. Glen On 9/10/07, Eridius [EMAIL PROTECTED] wrote: That that is not the issue. it is not on an event, just plain javascript

[jQuery] Re: IE 7(mostly likey all 6 too) issue with added content with javascript dynamically

2007-09-10 Thread Pyrolupus
Can you give a code example or a more precise description of your issue? I had to overcome a remote script's use of document.write(), but it works properly in all the browsers I test (FF 2, Saf 3, Op 9, IE 6/7): http://pyrolupus.com/demo/thawte.html In it, a remote script changes the contents

[jQuery] Re: why is code working on Firebug console, but not in script file?

2007-09-10 Thread Equand
it's a plugin initialisation bug... just add the $('#jmap').addPoint('18.3437','-64.7152', false, 'Point1', false, false); to check by if of the jmap plugin initialisation (usually any plugins create and id or class, by which u can find out if it has been loaded, look in the firebug in html for a

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Chris Jordan
@Alexandre: Sorry, but I don't have a publicly accessible url to be able to show off this problem. @Equand: You think? ;o) Chris On Sep 10, 11:27 am, Equand [EMAIL PROTECTED] wrote: looks to me like an 'opacity' css problem On Sep 10, 7:23 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote:

[jQuery] Re: Interface and Treeview plugins conflicting

2007-09-10 Thread Jqlover
Can anyone solve my above Problem ? Thanks On Sep 9, 11:58 pm, Jqlover [EMAIL PROTECTED] wrote: Hello , I am not able use interface library's tooltip withtreeviewmenus plugin. both areconflictingwith each other. Menus are jerking while expanding when i remove the interface

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Equand
http://www.mandarindesign.com/opacity.html u can manually set a filter on the thickboxes overlay. On Sep 10, 8:49 pm, Chris Jordan [EMAIL PROTECTED] wrote: @Alexandre: Sorry, but I don't have a publicly accessible url to be able to show off this problem. @Equand: You think? ;o) Chris

[jQuery] Re: Interface and Treeview plugins conflicting

2007-09-10 Thread Jqlover
Thanks Karl, I had tried this Tooltip however it is showing the tooltip at the bottom of the page not with mouse pointer. Any suggestion Thanks On Sep 11, 12:19 am, Karl Swedberg [EMAIL PROTECTED] wrote: On Sep 10, 2007, at 2:38 PM, Jqlover wrote: Can anyone solve my above

[jQuery] Re: Interface and Treeview plugins conflicting

2007-09-10 Thread Karl Swedberg
Are you including the Dimensions plugin as well? The tooltip plugin requires Dimensions. If you download the zip bundle from the Plugin Repository, it should come with a file called jquery.dimensions.js. That's the one you should reference in the head of your document before you reference

[jQuery] Re: $.getScript and variables

2007-09-10 Thread Equand
thanks, i found the problem... i defined all of the functions and global vars inside 'document ready' function... doh, thanks anyways. On Sep 10, 5:58 pm, Equand [EMAIL PROTECTED] wrote: ok... this page...http://www.jppromo.ru: there is A LOT of code, so search in code for //ADMIN AREA START

[jQuery] Re: Interface and Treeview plugins conflicting

2007-09-10 Thread Karl Swedberg
On Sep 10, 2007, at 2:38 PM, Jqlover wrote: Can anyone solve my above Problem ? Thanks On Sep 9, 11:58 pm, Jqlover [EMAIL PROTECTED] wrote: Hello , I am not able use interface library's tooltip withtreeviewmenus plugin. both areconflictingwith each other. Menus are jerking while

[jQuery] Need plugin to determine # of chars

2007-09-10 Thread Rey Bango
Guys, I need a plugin that does the following: - Displays a running total of the chars being entered in a field (input or textarea) - Enforces a char limit I could've sworn I saw a plugin that does this. Anyone seen this? Rey

[jQuery] Re: Need plugin to determine # of chars

2007-09-10 Thread Bil Corry
Rey Bango wrote on 9/10/2007 3:33 PM: I need a plugin that does the following: - Displays a running total of the chars being entered in a field (input or textarea) - Enforces a char limit I could've sworn I saw a plugin that does this. Probably this one:

[jQuery] Re: Need plugin to determine # of chars

2007-09-10 Thread Rey Bango
Yep that's it!! Thanks Bill. Bil Corry wrote: Rey Bango wrote on 9/10/2007 3:33 PM: I need a plugin that does the following: - Displays a running total of the chars being entered in a field (input or textarea) - Enforces a char limit I could've sworn I saw a plugin that does this.

[jQuery] Re: BlockUI fadeout

2007-09-10 Thread quayfee
Hi Mike, Thanks for letting me know. Is it something that might be added to a later release? Cheers Keith -- View this message in context: http://www.nabble.com/BlockUI-fadeout-tf4414799s15494.html#a12602838 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] remove jScrollPane

2007-09-10 Thread Estevão Lucas
Hi, I've used the jScrollPane Plugin in my Intefaces, and i have a problem. Every time that I resize my window, i also resize my main div, to stay with the same page's size, but when a resize the div that contains the jScrollPane method, it doesn't fix the height. What I would like to do is

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Christopher Jordan
The opacity code is already inclided in the Thickbox code (in thickbox.css) how much more manual are you talking about? Thanks, Chris On 9/10/07, Equand [EMAIL PROTECTED] wrote: http://www.mandarindesign.com/opacity.html u can manually set a filter on the thickboxes overlay. On Sep 10,

[jQuery] 1.2 out?

2007-09-10 Thread MrNase
I just grabbed http://jquery.com/src/jquery-latest.js and the header of the file says: /* * jQuery 1.2 - New Wave Javascript * * Copyright (c) 2007 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * $Date: 2007-09-10 15:45:49

[jQuery] Re: 1.2 out?

2007-09-10 Thread Justin Sepulveda
Yah, it looks like they're in the middle of updating everything. On Sep 10, 3:46 pm, MrNase [EMAIL PROTECTED] wrote: I just grabbedhttp://jquery.com/src/jquery-latest.jsand the header of the file says: /* * jQuery 1.2 - New Wave Javascript * * Copyright (c) 2007 John Resig (jquery.com)

[jQuery] Re: 1.2 out?

2007-09-10 Thread Christopher Jordan
Woo-HOO! On 9/10/07, Justin Sepulveda [EMAIL PROTECTED] wrote: Yah, it looks like they're in the middle of updating everything. On Sep 10, 3:46 pm, MrNase [EMAIL PROTECTED] wrote: I just grabbedhttp://jquery.com/src/jquery-latest.jsand the header of the file says: /* * jQuery 1.2

[jQuery] Re: Corner Plugin affects layout

2007-09-10 Thread Christopher Jordan
Sam, I visited both links in your post (using IE6) and I can't see the problem? Also, I don't see anything on either page that looks like the corner plug-in has been applied. Hmmm... did you fix things already? :o/ Chris On 9/10/07, weepy [EMAIL PROTECTED] wrote: that's an awesome plugin On

[jQuery] Re: Corner Plugin affects layout

2007-09-10 Thread weepy
that's an awesome plugin On Sep 10, 3:59 pm, Sam Collett [EMAIL PROTECTED] wrote: Using canvas instead of nested div's for the corner didn't help with the layout (although it looks slightly better). The problem is caused by the 'position: relative' added to the element with the corner

[jQuery] Re: Corner Plugin affects layout

2007-09-10 Thread Christopher Jordan
Dude, that looks pretty freakin' sweet! I may have to give that one a shot sometime. Chris On 9/10/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: use this plugin: http://meerbox.nl/?page_id=4 works fine and it's pretty nice ;) -- http://cjordan.us

[jQuery] Re: Corner Plugin affects layout

2007-09-10 Thread Mike Alsup
Sam, Did you get this solved? I couldn't reproduce the error (IE7), but it sounds like a classic hasLayout problem. Mike On 9/10/07, Sam Collett [EMAIL PROTECTED] wrote: Using canvas instead of nested div's for the corner didn't help with the layout (although it looks slightly better).

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Christopher Jordan
Bah! Darned fingers! Included ... not inclided... :o/ Chris On 9/10/07, Christopher Jordan [EMAIL PROTECTED] wrote: The opacity code is already inclided in the Thickbox code (in thickbox.css) how much more manual are you talking about? Thanks, Chris On 9/10/07, Equand [EMAIL PROTECTED]

[jQuery] Re: 1.2 out?

2007-09-10 Thread Rey Bango
Its available for download but it hasn't been officially released. We're wrapping up some things. Rey... Justin Sepulveda wrote: Yah, it looks like they're in the middle of updating everything. On Sep 10, 3:46 pm, MrNase [EMAIL PROTECTED] wrote: I just

[jQuery] Re: Thickbox 3.1: Transparency issues in IE6

2007-09-10 Thread Equand
yeah it's included... but something overrides this in your script probably On Sep 11, 12:37 am, Christopher Jordan [EMAIL PROTECTED] wrote: Bah! Darned fingers! Included ... not inclided... :o/ Chris On 9/10/07, Christopher Jordan [EMAIL PROTECTED] wrote: The opacity code is already

[jQuery] Re: BlockUI fadeout

2007-09-10 Thread Mike Alsup
Thanks for letting me know. Is it something that might be added to a later release? Cheers Sure, I've added it to my todo list! Mike

[jQuery] popup div

2007-09-10 Thread james_027
Hi, I am trying to make a simple div that will pop which will be close by just clicking to any part of the page. I have no idea of how to do this. I have try something like this $(document).click(function(e){ $('[EMAIL PROTECTED]').hide(); }); $(body).click(function(e){ $('[EMAIL

  1   2   >