[jQuery] Re: Why plugin repository dont have a search?

2007-11-14 Thread Guy Fraser
Jean wrote: > Always when i come to find some plugin i have to click to browse by > name and use the search of Firefox to find what i want, so why dont > have any search field? > The wiki's search might work...? Alternatively use the "All Plugins" (under Browse Plugins on the left) then us

[jQuery] Re: Scriptdoc-file for jQuery 1.2.1

2007-11-14 Thread Guy Fraser
Brandon Aaron wrote: > jQuery 1.2 has removed the scriptdoc from the source in favor of > managing documentation via the wiki (http://docs.jquery.com/). > Shame, it would have been nice to have it in Aptana Studio - I was wondering why I wasn't getting code hints, etc.

[jQuery] Re: jqModal re-binding

2007-11-14 Thread c0d3phr3ak
If found this entry on another forum: http://www.nabble.com/jqModal-ajax-question-t4664038s27240.html I implemented the following which works for me: Click Me Please wait... var infoWindow_url = false; $().ready( function() { $('#detail_window').jqm( { onSh

[jQuery] When using blogUI and setTimeout in firefox , a strange behavior

2007-11-14 Thread CrazyLion
Hi all: When i using blogUI in firefox(ie 6.x and ie7.0 are ok), there is a strange behavior. To avoid the call-stack issue in ie 7.0 , i cant' just write: $().ajaxStart($.blockUI).ajaxStop($.unblockUI); I must write : $().ajaxStart(function(){ setTimeout($.blockUI,0); }); but...the d

[jQuery] Re: What causes the speed bottleneck in Javascript?

2007-11-14 Thread Derek Gathright
I just randomly came across this Ajaxian podcast episode from a while back that answers the very question I posed. http://ajaxian.com/archives/audible-ajax-episode-20-project-tamarin Interestingly, Adobe open-sourced their JIT implementation of Javascript after a 3 year complete rewrite, and that

[jQuery] Re: modifying a label when radio input selected

2007-11-14 Thread sperks
While you didn't give me the answer I was looking for, you inspired me to mover forward in the right direction. I finally got the result I was after. Here's the script I ended with (anyone wants to tighten this please I'd be more than welcome!) $(document).ready(function() { var $inputId

[jQuery] Re: jquery.ifixpng.js IE 7 Transparency is Black instead of transparent

2007-11-14 Thread Guy Fraser
cfdvlpr wrote: > I'm just trying this nice jquery plugin and it works great to solve > some of my IE 6 PNG image problems. But, in IE 7, the images are > black. Has anyone else seen this and found a fix for it? Is this a > problem specifically with PNG 24 alpha transparency? > IE7 natively

[jQuery] Re: clueTip > 'rounded' theme issue with showTitle: false

2007-11-14 Thread Karl Swedberg
Hi t1shopper, The new version 0.9.3 is now on the project page: http://jquery.com/plugins/project/cluetip Check out the first rounded-corners example here: http://plugins.learningjquery.com/cluetip/demo/ I'm hoping that is what you're looking for. Cheers, --Karl _ Karl Swedber

[jQuery] Safari Ajax and tablesorter

2007-11-14 Thread Matt W.
Hello, I am building a table with xml I am retrieving with $.ajax and once the table is appended to the page I am using tablesorter on it. It is working fine in IE7,ie6, Firefox 2 (mac and pc) but will not work on Safari 3. Tablesorter works fine in safari on tables not added to the dom after pag

[jQuery] Re: [OT] WYSIWYG for Safari

2007-11-14 Thread d . neojp
The YUI framework has a Rich Text Editor (RTE) that supports Safari, I'm not sure which version tho. On 11/13/07, Jake McGraw <[EMAIL PROTECTED]> wrote: > > Hey all, sorry for the off topic post, but I must be going insane. > > I read that TinyMCE and FCKeditor now support Safari, but when I > do

[jQuery] Truncate plugin and jquery 1.1.4

2007-11-14 Thread rolfsf
I notice that the jquery.truncate.js plugin supports jquery 1.1.3.1 -- are there any known issues with jquery 1.1.4 or later? I'm starting my upgrade process to 1.2... http://www.reindel.com/truncate/ Thanks! -- View this message in context: http://www.nabble.com/Truncate-plugin-and-jquery-1

[jQuery] Re: css("...",function(){ return ...;})

2007-11-14 Thread Wizzud
$('#page').css('paddingTop',function(){ return '50px'; }); works perfectly for me! (v1.2.1) (btw borderTop is not a particularly good example to choose because it's a shorthand group of 3 other properties and, depending on the browser being used, it may/may not have any affect) On Nov 14, 1:57 p

[jQuery] Re: css("...",function(){ return ...;})

2007-11-14 Thread Karl Swedberg
Hey, that's really great news! For some reason, I had it stuck in my head that only .attr() and .filter() could take functions. If I had only looked at my own book (jQuery Reference Guide), I would have seen that .css() can do the same. D'oh! A musician I know sometimes forgets the lyrics t

[jQuery] Re: offset() causes error in IE

2007-11-14 Thread Brandon Aaron
Make sure that IE is actually selecting the checkbox. Otherwise it would seem as though IE doesn't implement getBoundingClientRect for checkboxes even though they claim it does. Would you mind filing a ticket for this: http://dev.jquery.com/newticket In the mean time ... try wrapping the input w

[jQuery] Re: clueTip > 'rounded' theme issue with showTitle: false

2007-11-14 Thread Karl Swedberg
On Nov 14, 2007, at 2:57 PM, t1shopper wrote: Unfortunately, changing the value of the margin-top property of the .cluetip-rounded #cluetip-inner class doesn't fix it. If I make it any bigger than margin: -12px -12px 0 0;, it makes a white stripe across the clueTip. I tried playing with some

[jQuery] offset() causes error in IE

2007-11-14 Thread Bernd Matzner
Hi, I have a page in which I'm trying to use offset() on a checkbox (using jQuery 1.2.1) In FF, everything works fine, but I'm getting an "Object doesn't support this property or method" in IE6 and IE7. The debugger indicates that the error occurs where jQuery tries to do "box=elem.getBoundingCli

[jQuery] Re: How to speed up jQuery

2007-11-14 Thread Flesler
Can you make a model of your situation ? that could help. What do you want to do exactly? to show/hide many tds when a checkbox is clicked? and changeBg(), that's for creating a zebra-like striping of the cells ? First of all, if you want to show ALL the cells in a table, or a row, you can just to

[jQuery] Re: Select box (selectedIndex) problems in Internet Explorer (ie) on refresh and back buttons

2007-11-14 Thread Flesler
You should explain HOW do you worked around hiding the option in IE. What do you need to do exactly? I had the opposite problem some time ago, I was all cursing Firefox, for not respecting the selected="selected" on refreshes. You could force the selectedIndex to 0 (or something else) on start, or

[jQuery] Re: Move of namespace

2007-11-14 Thread Flesler
That's not possible. Functions and objects are passed by reference, do you have that example online so I can see ? Ariel Flesler On 14 nov, 01:40, howa <[EMAIL PROTECTED]> wrote: > It is possible to completely move a particular plugin namespace into > other one? > > e.g. > > if (typeof Company =

[jQuery] Re: jQuery.LocalScroll 1.1.2

2007-11-14 Thread Flesler
Thanks! jQuery.LocalScroll uses jQuery.ScrollTo (http://jquery.com/plugins/ project/ScrollTo) to manage the scrolling. That plugin accepts a 'easing' option, that must be the name of the equation you want. Check the example of jQuery.ScrollTo to see some easing. Ariel Flesler On 14 nov, 12:41,

[jQuery] Re: Scriptdoc-file for jQuery 1.2.1

2007-11-14 Thread Brandon Aaron
jQuery 1.2 has removed the scriptdoc from the source in favor of managing documentation via the wiki (http://docs.jquery.com/). -- Brandon Aaron On Nov 14, 7:35 am, dehneg <[EMAIL PROTECTED]> wrote: > Hi all, > > I am looking for the scriptdoc file (http://www.scriptdoc.org/) for > jQuery 1.2.

[jQuery] Re: Scripts at the bottom of the page

2007-11-14 Thread Bil Corry
Brandon Aaron wrote on 11/14/2007 9:11 AM: Actually, it isn't outside the scope of jQuery and it is now fixed in Rev 3822. Thanks! - Bil

[jQuery] Re: gradient plugin - wont work on td's?

2007-11-14 Thread Brandon Aaron
Try: $('.gradient').wrapInner('').find('> span').gradient(); On Nov 14, 1:29 pm, bdee1 <[EMAIL PROTECTED]> wrote: > currently i am matching the td's based on a gradient class. so like this: > $('.gradient').gradient(); > > how that work? > > > > Brandon Aaron wrote: > > > Try wrapping the conte

[jQuery] Re: how to loop over checkboxes and hide the UNchecked ones?

2007-11-14 Thread Priest, James (NIH/NIEHS) [C]
So far I've got this: $('h3').click(function() { $(this).next().toggle("fast"); $(this).toggleClass('down').toggleClass('right'); $(this).next('.details').find('input:checkbox').not(':checked').parent() .hide(); }); Which

[jQuery] Re: hiding checkbox AND label?

2007-11-14 Thread Karl Swedberg
Hi Jim, Forgive me if you've already posted it, but would you mind showing us the HTML? Labels can wrap around an input, but they don't have to, so seeing what the relationship is between the label and the input (checkbox) would help tremendously. Thanks, --Karl _ Karl S

[jQuery] Re: History Plugin initial state

2007-11-14 Thread dandanthesushiman
Thanks for the quick reply, but my lack of knowledge means I stil don't get it I am trying $(function() { $('a.remote').remote('#chapter', function() { if (window.console && window.console.info) { console.info('content loaded');

[jQuery] Re: clueTip > 'rounded' theme issue with showTitle: false

2007-11-14 Thread t1shopper
Unfortunately, changing the value of the margin-top property of the .cluetip-rounded #cluetip-inner class doesn't fix it. If I make it any bigger than margin: -12px -12px 0 0;, it makes a white stripe across the clueTip. I tried playing with some of the other classes and didn;t get much better.

[jQuery] Re: clueTip > Examples

2007-11-14 Thread t1shopper
Thanks Karl, you guys are really amazing, all this great code, I'm very thankful.

[jQuery] Re: how to loop over checkboxes and hide the UNchecked ones?

2007-11-14 Thread trevorp
Not necessarily elegant, but it works: [using your previous code starting with $(this).next() and going from there.] $('h3').click(function() { $ (this).next().children('div').children(':checkbox').not(':checked').parent('div').toggle("fast"); }); This assumes you have the following stru

[jQuery] Re: hiding checkbox AND label?

2007-11-14 Thread Feijó
Try this $('h3').click(function() { $(this).next('.details').find("input:checkbox").not(":checked").parent().hide(); }); Feijó - Original Message - From: "Priest, James (NIH/NIEHS) [C]" <[EMAIL PROTECTED]> To: Sent: Wednesday, November 14, 2007 4:56 PM Subject: [jQuery] hiding c

[jQuery] Re: clueTip > 'rounded' theme issue with showTitle: false

2007-11-14 Thread Karl Swedberg
yeah. unfortunately, you have to show the heading area for the rounded theme. But you can compensate for that by changing the margin- top property of .cluetip-rounded #cluetip-inner to something like -18px. So instead of margin: 0 -12px 0 0; it would be margin: -18px -12px 0 0; Not ideal

[jQuery] Re: problem with ifixpng background position

2007-11-14 Thread cfdvlpr
IE 7 images are black and I'm using the ifixpng. Has anyone else seen this and found a fix for it?

[jQuery] Re: clueTip > Examples

2007-11-14 Thread Karl Swedberg
Thanks a lot for the feedback! Point well taken. I already updated the demo to show one with the "splitTitle" option first. But I'll add another that shows how to do it without something in the clueTip's heading. Also, haven't released it yet, but I spent some time this weekend refactorin

[jQuery] Re: gradient plugin - wont work on td's?

2007-11-14 Thread bdee1
currently i am matching the td's based on a gradient class. so like this: $('.gradient').gradient(); how that work? Brandon Aaron wrote: > > > Try wrapping the contents of the td with a span first and then > applying the gradient to the span. Something like this: > > $('td').wrapInner('')

[jQuery] clueTip > 'rounded' theme issue with showTitle: false

2007-11-14 Thread t1shopper
If you change the first 'rounded' example to showTitle: false as shown below you can see there's an issue with the lineup of the edging in the upper right corner of the clueTip. $('ol.rounded a:eq(0)').cluetip({titleAttribute:'title', splitTitle: '|', showTitle: false,dropShadow: false, cluetipC

[jQuery] jquery.ifixpng.js IE 7 Transparency is Black instead of transparent

2007-11-14 Thread cfdvlpr
I'm just trying this nice jquery plugin and it works great to solve some of my IE 6 PNG image problems. But, in IE 7, the images are black. Has anyone else seen this and found a fix for it? Is this a problem specifically with PNG 24 alpha transparency?

[jQuery] Re: History Plugin initial state

2007-11-14 Thread Klaus Hartl
On Nov 14, 12:15 pm, dandanthesushiman <[EMAIL PROTECTED]> wrote: > Hi > > I hope someone can help, I am just getting stated with jQuery so I may > be asking a question that is obvious to most of you but I'm stuck. > > I have implemented the History/Remote plugin in on my site. I found > the files

[jQuery] Re: gradient plugin - wont work on td's?

2007-11-14 Thread Brandon Aaron
Try wrapping the contents of the td with a span first and then applying the gradient to the span. Something like this: $('td').wrapInner('').find('> span').gradient(); -- Brandon Aaron On Nov 14, 12:13 pm, bdee1 <[EMAIL PROTECTED]> wrote: > anyone have an idea on this? > > bdee1 wrote: > > > i

[jQuery] clueTip > Examples

2007-11-14 Thread t1shopper
User "daveg" suggested adding the below example at the link below. I second that. I spent 3 hours figuring out how to remove the title from the clueTip and have it contain simple text. Most the examples use AJAX - which is great if you want to use that method - but I think the bulk of the users

[jQuery] Re: Zoomimage

2007-11-14 Thread Stefan Petre
Stoyan wrote: Bah, the alert on IE6 appears when I press any key. That's valid for the official demo too: http://www.eyecon.ro/zoomimage/    --  Best regards,  Stoyan                          mailto:[EMAIL PROTECTED] Sorry for this. I will fix it in 3 ho

[jQuery] hiding checkbox AND label?

2007-11-14 Thread Priest, James (NIH/NIEHS) [C]
Argh - I'm close - but so far I can't seem to hide BOTH the checkbox and label: $('h3').click(function() { $(this).next('.details').find("input:checkbox").not(":checked").hide(); }); OR $('h3').click(function() { $('input:checkbox').each(function() { if (!this.checked) {

[jQuery] Re: gradient plugin - wont work on td's?

2007-11-14 Thread bdee1
anyone have an idea on this? bdee1 wrote: > > i am trying to programatically add gradients to table header cells and i > came across the gradient plugin > (http://jquery.com/plugins/project/gradient). it seems that this plugin > works well for creatign gradients in divs but when i try and a

[jQuery] How to speed up jQuery

2007-11-14 Thread Snook
Dear developers, I have a function which is called several times, when my page is loaded. This is VERY slow under IE, because I have a lot of checkbox. Did someone can explain me this difference between FF and IE ? And maybe how to improve this function : function myToggleShow(checkboxElem, sho

[jQuery] help in WYMedito plugin

2007-11-14 Thread [EMAIL PROTECTED]
how can i get the value in the WYMeditor plugin??? +++ +++ code: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> WYMeditor jQuery(function() { jQuery(".wymeditor").wymeditor(); }); ++

[jQuery] issue with .append

2007-11-14 Thread kef
I have a bit of code that uses .append: $(pObject).append(whatToAdd); pObject is a div, with an unique id, in this case "#divTxt" whatToAdd is a string containing a tag and two tags. The HTML is: Add

[jQuery] jCarousel - IE6 issue, carousel overlapping a nested nav

2007-11-14 Thread Josh V
Hi, Please check out the following url where im using jcarousel to act as an image slideshow. to the left of the clip container i have a nested navigation list that is showing underneath the clip container in IE6. the nested navigation toggles on above the clip container just fine in other modern

[jQuery] Re: Scriptdoc-file for jQuery 1.2.1

2007-11-14 Thread Cloudream
aptana 1.0 build-in? On Nov 14, 9:35 pm, dehneg <[EMAIL PROTECTED]> wrote: > Hi all, > > I am looking for the scriptdoc file (http://www.scriptdoc.org/) for > jQuery 1.2.1. > Any one knows where I can download it ? > > Thanks, > Alex

[jQuery] Re: Problems with multiple animations and timeouts

2007-11-14 Thread serializer
David, Thanks, that did actually work (although I've made that change to an earlier version of my script; wrapping the code in a jQuery extension seemed to introduce other problems, and I haven't got the time right now to investigate why; since I've got the thing working, I might just have to lea

[jQuery] Re: Superfish not working on PHP page

2007-11-14 Thread Jangla
Can I just clarify what you've said? You mean, explicitly define the width of the navigation div and then make sure that width plus padding equals the first ul element? There are a couple of issues with width that may all be related actually. If you take a look at this page: http://www.clinicn

[jQuery] Re: modifying a label when radio input selected

2007-11-14 Thread whutevr
You could do something like this: $('div#searchLabels label#labelRecipesCat').click(function() { if (this.checked ){ $(''div#searchLabels label#labelRecipesCat'').addClass('selected'); $(''div#searchLabels label#labelEntireSite').removeClass('selected'); }; }); On Nov 13, 10:01

[jQuery] Re: OT: Somebody's spam filter is doing me wrong

2007-11-14 Thread Rcw01
Looking at the information you posted, it looks like the email address is listed in the BlackList. "USER_IN_BLACKLIST " You need to remove the user from the blacklist so that Mdaemon will allow the message to be delivered. On Nov 13, 2:31 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi every

[jQuery] Re: how to loop over checkboxes and hide the UNchecked ones?

2007-11-14 Thread Priest, James (NIH/NIEHS) [C]
Well I've got this: $('h3').click(function() { //$(this).next().toggle("fast"); $(this).toggleClass('down').toggleClass('right'); $("input:checkbox").not(":checked").parent().next().hide(); }); And that hides the checkbox - but I need to

[jQuery] Re: how to loop over checkboxes and hide the UNchecked ones?

2007-11-14 Thread Priest, James (NIH/NIEHS) [C]
Sweet - that DOES work! One step closer!! Thanks, Jim > -Original Message- > From: tlphipps [mailto:[EMAIL PROTECTED] > You might try this instead of using .each() > UNTESTED: > $("input:checkbox").not(":checked").hide();

[jQuery] Re: how to loop over checkboxes and hide the UNchecked ones?

2007-11-14 Thread tlphipps
You might try this instead of using .each() UNTESTED: $("input:checkbox").not(":checked").hide(); On Nov 14, 10:16 am, "Priest, James (NIH/NIEHS) [C]" <[EMAIL PROTECTED]> wrote: > I've got a series of topics - each with a list of checkboxes. > > Topic > 0 item 1 > 0 item 2 > 0 item 3 > > When the

[jQuery] Re: jqGrid update

2007-11-14 Thread Jean
Oww thanks, i missed this. On Nov 14, 2007 1:36 PM, Tony <[EMAIL PROTECTED]> wrote: > > Jean, > There is a client side sorting. Please check the demo page. > Regards > Tony > > On 14 Ноем, 17:30, Jean <[EMAIL PROTECTED]> wrote: > > and the client side sorter? > > > > > On Nov 13, 2007 11:10 AM, T

[jQuery] Re: jqGrid update

2007-11-14 Thread Tony
Jean, There is a client side sorting. Please check the demo page. Regards Tony On 14 Ноем, 17:30, Jean <[EMAIL PROTECTED]> wrote: > and the client side sorter? > > On Nov 13, 2007 11:10 AM, Tony <[EMAIL PROTECTED]> wrote: > > > > > > > Ryura, > > Yes there is solution for this. Please check the J

[jQuery] how to loop over checkboxes and hide the UNchecked ones?

2007-11-14 Thread Priest, James (NIH/NIEHS) [C]
I've got a series of topics - each with a list of checkboxes. Topic 0 item 1 0 item 2 0 item 3 When the user clicks the topic - I have the checklist show/hide using toggle(). What I'd like is when the list closes - the 'checked' items remain visible. Topic X item 2 X item 3 I'm struggling w

[jQuery] Re: Select box (selectedIndex) problems in Internet Explorer (ie) on refresh and back buttons

2007-11-14 Thread [EMAIL PROTECTED]
Anyone? I could really use some insight into this problem.

[jQuery] Zoomimage

2007-11-14 Thread Stoyan
Bah, the alert on IE6 appears when I press any key. That's valid for the official demo too: http://www.eyecon.ro/zoomimage/    --  Best regards,  Stoyan                          mailto:[EMAIL PROTECTED]

[jQuery] Zoomimage

2007-11-14 Thread Stoyan
Very nice plugin Stefan ! I implemented it on production site already. However on IE6 there is a strange flickering/vibrating of the image while resizing: http://newland-bg.com/eng_Balchik-Sunny-Dream Annother odd thing. Prezz ctrl on IE6 - an alert appears.   --  Best regards,  Stoyan    

[jQuery] Re: .load appending content in IE7 only

2007-11-14 Thread Chris Hardy
After playing about for a while, my code mysteriously starting working fine in IE. I suspect the problem may have been to do with something being cached, even though I'd cleared it. Thanks for the suggestion though, I never knew there was a .empty() function before! Chris

[jQuery] gradient plugin - wont work on td's?

2007-11-14 Thread bdee1
i am trying to programatically add gradients to table header cells and i came across the gradient plugin (http://jquery.com/plugins/project/gradient). it seems that this plugin works well for creatign gradients in divs but when i try and apply it to a td, it seems to work in ie but in firefox, i

[jQuery] Re: jQuery.LocalScroll 1.1.2

2007-11-14 Thread Jean
Very nice, and some about easing?? On Nov 12, 2007 8:41 PM, Flesler <[EMAIL PROTECTED]> wrote: > > Hi, I've released version 1.1.2 of this plugin. > > Changes are: > - The default settings have been exposed for modification. > - The plugin can still work for dynamically added anchors, using the

[jQuery] Re: jqGrid update

2007-11-14 Thread Jean
and the client side sorter? On Nov 13, 2007 11:10 AM, Tony <[EMAIL PROTECTED]> wrote: > > Ryura, > Yes there is solution for this. Please check the JSON SubGrid example > - you can pass parameters from master grid. > Regards > Tony > > > On 13 Ноем, 01:51, Ryura <[EMAIL PROTECTED]> wrote: > > Won

[jQuery] Re: Scripts at the bottom of the page

2007-11-14 Thread Brandon Aaron
Actually, it isn't outside the scope of jQuery and it is now fixed in Rev 3822. -- Brandon Aaron On Nov 13, 10:34 pm, Brandon Aaron <[EMAIL PROTECTED]> wrote: > This is pretty much outside the scope of jQuery :/. You should bind > events that have the potential to be triggered before the page is

[jQuery] Re: slideUp weirdness when div content is a SWF file in FF

2007-11-14 Thread somnamblst
The CSS that defines the 3 divs #top{ display: block; height: 40px; width: 910px; margin: 0px; padding: 0px; } #slidebar { padding: 0px; height: 200px; width: 910px; margin:0px, } #slidebartrigger { background: url("images/slidetab.gif ") no-repeat right top; display: block;

[jQuery] row clone and calculation

2007-11-14 Thread rayfidelity
Hi, I have a table with input fields (array of them)...i can add new rows through clone...the problem is that i would like to calculate the numbers in the fields and display the sum at the end (both row sum and final sum) and i don't know how. Here's what i got: function calc(){ var pri

[jQuery] Re: combo boxes disappear during blockui (only IE)

2007-11-14 Thread Karl Swedberg
I'm just guessing here, but it probably has to do with elements otherwise "popping through" any other element in IE 6, regardless of z-index. There are a couple of ways to deal with that problem. One way is to layer an iframe on top of the select elements, but that might not work in this c

[jQuery] Re: css("...",function(){ return ...;})

2007-11-14 Thread XASD
It's expected behavior,look at http://jquery.com/blog/2007/01/14/jquery-birthday-11-new-site-new-docs/ : You can now pass in a function as a value for an attribute or a css property. The function is executed and its return value is set as the value for the property. By the way,function is invok

[jQuery] combo boxes disappear during blockui (only IE)

2007-11-14 Thread aknuth
Just have a closer look at http://www.malsup.com/jquery/block/#element. Blocking the div let the combos in IE disappear. Any ideas about that ?

[jQuery] Scriptdoc-file for jQuery 1.2.1

2007-11-14 Thread dehneg
Hi all, I am looking for the scriptdoc file (http://www.scriptdoc.org/) for jQuery 1.2.1. Any one knows where I can download it ? Thanks, Alex

[jQuery] Re: Issue with

2007-11-14 Thread dehneg
Hi Adrien, Have you tried this : onclick="$('#c_right_content').getScript('./act/add.cfm'); hope this can help

[jQuery] Re: Horizontal Scroll Content Help

2007-11-14 Thread Karl Swedberg
There are a number of plugins that do this sort of thing, each with its own style/functionality: jqGalView: http://benjaminsterling.com/?s=jqgalview jCarousel: http://sorgalla.com/jcarousel/ jCoursel Lite: http://www.gmarwaha.com/jquery/jcarousellite/index.php Hope that helps --Karl

[jQuery] Re: cluetip events

2007-11-14 Thread Karl Swedberg
Hi amircx, You need to set the sticky option to true. I think that should do it for you. Also, for other options where you're just using the default (such as activation: hover), you don't need to define them in your options map. --Karl On Nov 14, 2007, at 6:21 AM, amircx wrote: 3 of

[jQuery] Why plugin repository dont have a search?

2007-11-14 Thread Jean
Always when i come to find some plugin i have to click to browse by name and use the search of Firefox to find what i want, so why dont have any search field? sorry the bad english -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com

[jQuery] Horizontal Scroll Content Help

2007-11-14 Thread Limit-Studios
I have this code:-

[jQuery] The hour glass do not disappear after unblocking the page until the mouse movement is performed

2007-11-14 Thread soniromesh
hello members, I am using jquery plugin. I am blocking the entire page. But I saw that the hour glass don't get disappear until I perform some mouse movement. This behaviour can also be seen in the jquery site, where demo of different page blocking is shown. Can someone help me to get this resolv

[jQuery] History Plugin initial state

2007-11-14 Thread dandanthesushiman
Hi I hope someone can help, I am just getting stated with jQuery so I may be asking a question that is obvious to most of you but I'm stuck. I have implemented the History/Remote plugin in on my site. I found the files on http://stilbuero.de/jquery/history/#Chapter_1. It works really well except

[jQuery] Re: HOVER Over Image Enlarge Image

2007-11-14 Thread dehneg
Hi, Do you mean something like : $(document).ready(function() { overThumbnailZoom = 2 ; $(".classOfEachThumbnail").hover(function(){ $(this).height( Math.ceil($(this).height() * overThumbnailZoom)) ;

[jQuery] Re: Fix for BlockUI slowness

2007-11-14 Thread Mike Alsup
All good points, Matt. Thanks for the feedback. > Another things I noticed - when blocking an element, it appends the > blocking layer to the element itself. > > So, when I call block() before load() and the response comes back, the > innerHTML is over-written and the blocking layer is removed.

[jQuery] Re: cluetip events

2007-11-14 Thread amircx
3 of that functions not working i think here is my code $(document).ready(function(){ $('#textfieldEIP').cluetip({ dropShadow:false, cluezIndex: 97, width:'90', height: