[jQuery] Re: www.google.com/ig or my.yahoo .com style widgets and/or gadgets?

2008-11-13 Thread Rik Lomas
Do you mean something like this? http://ui.jquery.com/repository/real-world/layout/ Rik 2008/11/12 Ashish [EMAIL PROTECTED]: Is there Jquery plugin or ui component which I can use to create rectangle widgets/gadgets like the ones on www.google.com/ig or my.yahoo.com and place them on a

[jQuery] Re: positioning of select box

2008-11-13 Thread Fatih
I can solve the problem by modifying the autocomplete plugin to accept optional yOffset parameters. But that seems to be a non-robust solution. I am hoping that there are some tricks with styles that I can put on my input field in order for the autocomplete plugin to recognize them. Can anyone

[jQuery] [autocomplete] positioning of select box

2008-11-13 Thread Fatih
I decided to repost this question, because my previous post seems to be missing the [autocomplete] tag. I am using the autocomplete plugin successfully but have a little problem with the absolute positioning of the select box. The select box automatically positions to the bottom of the input

[jQuery] Re: positioning of select box

2008-11-13 Thread Fatih
WTF the repost got into the previous discussion, again without the tag.

[jQuery] Re: Third horizontal navigation?

2008-11-13 Thread [EMAIL PROTECTED]
I found where. It's in the superfish-navbar.css, with all the .sf- navbar li li li and .sf-navbar li li ul, etc... Thx. Dom On Nov 12, 3:44 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thx. But I can't find it. Because all four and fifth level are the same as... the vertical third. Dom

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-13 Thread Brice Burgess
On Nov 13, 1:29 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello brice, do you think this would be possible with your plugin? :http://www.lisapram.com Alexandre, That's a VERY COOL effect. I think I could mimick that functionality, although would need to add callback support to

[jQuery] Re: jeditable autocomplete - time to revisit?

2008-11-13 Thread Mika Tuupola
On Nov 12, 2008, at 9:25 PM, [EMAIL PROTECTED] wrote: Wow, that was sooo simple. Works like a charm! Impressive.. Now, thats the way a plugin should work. Nice work Mike. Thank you :) Usually when someone has the need to do something special (such as use autocomplete) with Jeditable there

[jQuery] tree view layout without recursive function

2008-11-13 Thread Dirceu Barquette
Hi, First, sorry my english... :confused: Second: I've been developing a new plug-in. The tree view layout is build over DOM nodes and using css styles. The main difcult about tree views is the recursive function running over all register. I solve this! The jqTreevial plug-in only needs a

[jQuery] Re: Form Submit does not Submit Data but its Callback Function works

2008-11-13 Thread Martin Möller
Thank you Guys. I got it to work now with following Code, maybe it helps somebody out there with a similar NyroModal Problem: Does not work( Removes the Modal but still does not fire the Submit() ) (#form-config-content-make).submit(function() { top.$.nyroModalRemove(); return true; });

[jQuery] Morph between 2 classes

2008-11-13 Thread pixeline
hi! i' m looking after a way to switch an element 's class, and have the transition of style produce a morphing. Example: .class1{ border:1px solid red; width:500px; height:400px; } .class2{ border:2px solid black; width:320px; height:240px; } something like:

[jQuery] toggle show hide - help

2008-11-13 Thread sinkingfish
Hi, Im working my way through the book 'jQuery in Action' and i'm a bit stumped with a block of code and how it works. The Code : $(function(){ $('li:has(ul)') .click(function(event){ if (this ==

[jQuery] Load a div from external website (domain) and stick it on my page

2008-11-13 Thread Frank Malina @ vizualbod.com
Hi all, I'd want to grab a div from external domain and stick in a div on my site. Is it doable? Won't there be any cross domain issues?

[jQuery] Re: Load a div from external website (domain) and stick it on my page

2008-11-13 Thread Richard D. Worth
On Thu, Nov 13, 2008 at 7:34 AM, Frank Malina @ vizualbod.com [EMAIL PROTECTED] wrote: Hi all, I'd want to grab a div from external domain and stick in a div on my site. Is it doable? Won't there be any cross domain issues? There will indeed. You'll have to use a proxy script on your

[jQuery] Re: Morph between 2 classes

2008-11-13 Thread Richard D. Worth
See http://docs.jquery.com/UI/Effects/ClassTransitions - Richard On Thu, Nov 13, 2008 at 7:51 AM, pixeline [EMAIL PROTECTED] wrote: hi! i' m looking after a way to switch an element 's class, and have the transition of style produce a morphing. Example: .class1{ border:1px solid red;

[jQuery] Re: Morph between 2 classes

2008-11-13 Thread Alexandre Plennevaux
ah, ok, thanks a lot Richard. I think the double Effects entries in the documentation make it confusing. Would be nice to integrate both in a single page, specifying which needs ui.js, which does not. On Thu, Nov 13, 2008 at 1:56 PM, Richard D. Worth [EMAIL PROTECTED] wrote: See

[jQuery] Re: Morph between 2 classes

2008-11-13 Thread Richard D. Worth
By double Effects entries, do you mean because jQuery has effects and jQuery UI has effects? As far as ui.js, no UI effects require it. They require only effects.core.js. This is explaned quite clearly at the top of http://docs.jquery.com/UI/Effects - Richard On Thu, Nov 13, 2008 at 8:00 AM,

[jQuery] Re: Adjusting the position and offset of the text

2008-11-13 Thread Karl Swedberg
Not sure about the first question, but you should be able to apply the tooltip to multiple elements by giving all of them the same class name and then attaching the tooltip() method to that class. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 13,

[jQuery] Re: Morph between 2 classes

2008-11-13 Thread Alexandre Plennevaux
indeed, that's what i meant. the confusion between two pages: http://docs.jquery.com/UI/Effects and http://docs.jquery.com/Effects I realized in the meanwhile effects.js is different and does not rely on ui.core.js i would propose to organize a one-entrydoor page for Effects. example

[jQuery] Re: rotate images

2008-11-13 Thread evo
nevermind, found the cycle plugin. On Nov 13, 1:30 pm, Liam Potter [EMAIL PROTECTED] wrote: Hi, need a little help. I'm rotating some images and need it to loop. So far I have this var rotate = $(.rotate)             .animate({opacity: 1.0}, 3000)             .animate({marginTop:

[jQuery] position of element

2008-11-13 Thread Espen AJ
I'm trying to get the position of all div-elements with a given class (point) with this code: $(.point).each( function() { var pos = this.position(); alert(pos.left) } ) This is the error I get on the var pos... line: Microsoft JScript runtime

[jQuery] Re: Load a div from external website (domain) and stick it on my page

2008-11-13 Thread Frank Malina @ vizualbod.com
Ok, thank you. I feel more comfortable doing the parsing in Python than in JavaScript anyway. I'll leave JavaScript off this job completely. On Nov 13, 12:59 pm, Richard D. Worth [EMAIL PROTECTED] wrote: On Thu, Nov 13, 2008 at 7:34 AM, Frank Malina @ vizualbod.com [EMAIL PROTECTED] wrote:

[jQuery] Re: Draggable Modal Window?

2008-11-13 Thread Richard D. Worth
I noticed you're using jQuery UI. Have you tried the UI Dialog? You can set the modal option to true. See demos (including sample code) here: http://ui.jquery.com/repository/latest/demos/functional/#ui.dialog - Richard On Thu, Nov 13, 2008 at 12:18 AM, kamelkev [EMAIL PROTECTED] wrote: I

[jQuery] Re: Can I make image change only by part of it?

2008-11-13 Thread ricardobeat
You can do something similar using transparent GIF/PNG images. Use an area and change the image overlay on hover. Take a look at the map in this page: http://apuracao.terra.com.br/2008/1turno/index.shtml - ricardo On Nov 13, 4:59 am, David .Wu [EMAIL PROTECTED] wrote:

[jQuery] Re: selector to .wrap multiple elements in HTML

2008-11-13 Thread ricardobeat
Oops. I always do that, write a non-functional draft in the reply body and forget to correct it after testing! Thanks :D On Nov 13, 2:21 am, Karl Swedberg [EMAIL PROTECTED] wrote: Actually, Ricardo's should work if ... 1. you change var $this = this; to var $this = $(this); 2. you know for

[jQuery] Re: how to fade in newly dom created content?

2008-11-13 Thread ricardobeat
You'd have to do $('#messages').after('div class=messagessth/div').next ('.messages').hide().fadeIn(500) the after() function will return the #messages element, not the newly added one, so you must grab it with next(). A clearer way of doing that is: $('div

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-13 Thread Alexandre Plennevaux
hi Brice, the sigmoid curve feels right, so that's an improvement. Yet the scrolling remains too harsh IMHO. strange... (btw, i'm on FF3.0.3, winxpSP2 with an above average computer hardware ) On Thu, Nov 13, 2008 at 10:39 AM, Brice Burgess [EMAIL PROTECTED] wrote: On Nov 13, 1:29 am,

[jQuery] Validate. Can I validate using 2 values?

2008-11-13 Thread shapper
Hello, I am using the following to validate an email field: Email: { email: true, remote: /Account/FindEmail, required: true } I am checking if there is already an account with that email. In my form I also have an input where the user inserts its username. When validating the email I need to

[jQuery] rotate images

2008-11-13 Thread Liam Potter
Hi, need a little help. I'm rotating some images and need it to loop. So far I have this var rotate = $(.rotate) .animate({opacity: 1.0}, 3000) .animate({marginTop: -32px}, slow) .animate({opacity: 1.0}, 3000) .animate({marginTop: -64px}, slow)

[jQuery] Changing the SRC of an iframe

2008-11-13 Thread CodingCyborg
I currently have this function set up: function link(win,url){ if(url){ $(win+' iframe').attr(src,url); } setFocus(win); } And I don't get any errors in the console. win is a div that contains an iframe hence the child selector. I've tried a few

[jQuery] Re: Validate. Can I validate using 2 values?

2008-11-13 Thread Alexsandro_xpt
I had having problem with remote at www.assessoriatecnica.com.br in Receba nosso informativo por e-mail label below. The form submit before to validate e-mail field. And I don't know how fix it. On 13 nov, 12:35, shapper [EMAIL PROTECTED] wrote: Hello, I am using the following to validate

[jQuery] Can you recommend a drag drop tree-view script?

2008-11-13 Thread fambi
Hi all, I need a drag drop treeview script which uses ajax to save its structure to a mysql database. Does it exist and can anyone recommend it? Thanks

[jQuery] Re: selector to .wrap multiple elements in HTML

2008-11-13 Thread Karl Swedberg
Not a problem, Ricardo. :-) sorry, everyone else, for going off-topic, but I'd like to thank Ricardo publicly for all the help he has been giving to this list in the past few months. Ricardo, your contributions are much appreciated. Cheers, --Karl Karl Swedberg

[jQuery] [treeview] Don't close subtree when clicking on tree header

2008-11-13 Thread Dominik Deobald
I'm using treeview in one of my projects. Treeview automatically opens and closes the subtree if you click on an item that contains children. I need the option to allow the user to select an item without closing the subtree. + item 1 - User clicks here | + item 1.1 | + item 1.2 +

[jQuery] Re: Changing the SRC of an iframe

2008-11-13 Thread ricardobeat
That should work, can you show us some HTML? On Nov 13, 1:02 pm, CodingCyborg [EMAIL PROTECTED] wrote: I currently have this function set up: function link(win,url){         if(url){                 $(win+' iframe').attr(src,url);         }         setFocus(win); } And I don't get

[jQuery] xslt

2008-11-13 Thread Gropey
Is there a way using jquery to manipulate xsl then reapply the changes to the xml data? i.e., change the xsl:sort select attribute value.

[jQuery] Re: position of element

2008-11-13 Thread fabio . lazaro
Try var pos = $(this).position(); 'this' is a object 2008/11/13 Espen AJ [EMAIL PROTECTED] I'm trying to get the position of all div-elements with a given class (point) with this code: $(.point).each( function() { var pos = this.position();

[jQuery] Re: [treeview] Don't close subtree when clicking on tree header

2008-11-13 Thread Jörn Zaefferer
It depends on the markup. This is selector for that click: :has(ul):not(:has(a))).find(span) So remove or replace the span on the parent item. Jörn On Thu, Nov 13, 2008 at 4:06 PM, Dominik Deobald [EMAIL PROTECTED] wrote: I'm using treeview in one of my projects. Treeview automatically

[jQuery] [treeview] Suggestion: function callback after async update

2008-11-13 Thread Dominik Deobald
Just a quick suggestion for future versions of treeview: I've added if (typeof(settings.asyncload) == 'function') { settings.asyncload(container); } at the end of the async load function to be able to inject some of my own code after an

[jQuery] Re: [treeview] Don't close subtree when clicking on tree header

2008-11-13 Thread Dominik Deobald
Great, that was the hint I needed. I changed the code of jquery.treeview.js (line 66-) to: if (settings.toggleonspan !== false) { this.filter(:has(ul):not(:has(a))).find(span).click(function (event) {

[jQuery] How to get the element number from a click event

2008-11-13 Thread Logictrap
Is there a simple method for determining the element number for a click event? Using this html code: PSome Text/P PSome Text/P PSome Text/P PSome Text/P PSome Text/P Is there a click event that will tell you the element number of which P was clicked on starting with 0 as the first one? ie if

[jQuery] Re: Can I make image change only by part of it?

2008-11-13 Thread livefree75
I couldn't get your link to load, but it sounds like you may need to do something similar to the following. The image you're mapping would need to be either relative or absolutely positioned. Note that #map_area is the map area you're mousing over. #bg_image is the image the map is on. Not

[jQuery] jQuery / XML / IE

2008-11-13 Thread Jemo
OK, this works marvelously in Safari and Firefox for the Mac as well as Firefox for the PC but it doesn't work worth spit in IE. I would appreciate any assistance. It's just reading form a simple XML file to output information in divs. http://rationalogic.com/xml/

[jQuery] Explain this please: (Perfromance, dynamic DOM creation)

2008-11-13 Thread Eli
So, I had some code that was performing very badly. Specifically tracked it down to the following: var li = $j('\ li\ input type=checkbox checked=checked id=ecb-' + shortKey + ' /\ label for=ecb-' + shortKey + '\ span class=left' + optionKey + '/span\

[jQuery] only one $(document).ready() with IE6?

2008-11-13 Thread Stan McFarland
Hi, Newbie here. I have two JS files, common.js and homepage.js. Both have calls to $(document).ready(). Using FF, both $(document).ready() methods execute, but in IE6, only one does. Is this a known problem? Thanks, Stan McFarland

[jQuery] accessing Object properties in getJSON function call

2008-11-13 Thread Yazan
Hi all, I trying to understand the right way to access the properties of my object from within a function called by the $.getJSON function. Here is an example of what I have: function MyWidgetObject(_parentObject){ this.parentObject = _parentObject; this.jsonFunc = function(){

[jQuery] How can I return some value in jquery's callback function?

2008-11-13 Thread Freshow
it didn't work when I 'return true' or 'return false', is there some way to get it? == var url='http://localhost/coudou/check/register.php?email=' + str; $.getJSON(url, function(res){ if(res.registed){

[jQuery] blockUI:

2008-11-13 Thread pixeline
Hi! My website uses ajax to refresh various elements in the course of the user's navigation. I would like to display a please wait message in the element being refreshed and blockUI is the perfect candidate for that. However, there are many elements concerned, and i would like to systematize

[jQuery] Re: blockUI:

2008-11-13 Thread George
you just need to change $.blockUI to $('#mytagid').bockUI. The sasme with unblock call. George On Nov 13, 12:07 pm, pixeline [EMAIL PROTECTED] wrote: Hi! My website uses ajax to refresh various elements in the course of the user's navigation. I would like to display a please wait message in

[jQuery] Re: How to get the element number from a click event

2008-11-13 Thread Karl Swedberg
You could do something like this: $('p').click(function() { console.log( $('p').index(this) ); }); Or you could use an each() method, which has a built-in index argument: $('p').each(function(index) { $(this).click(function() { console.log(index); });

[jQuery] Re: blockUI:

2008-11-13 Thread Alexandre Plennevaux
hi Georges, yes, but the problem is that i don't know which element is concerned by the call (unless i hardcode it each time of course, but that's what i would like to avoid). Thanks for your input nonetheless. On Thu, Nov 13, 2008 at 6:12 PM, George [EMAIL PROTECTED] wrote: you just need to

[jQuery] Re: only one $(document).ready() with IE6?

2008-11-13 Thread Karl Swedberg
I have never had this problem before on any browser. Do you have a test page you could show us? It could be that one of your JavaScript files has something in it that only IE reports as an error, such as a trailing comma after the last object property. --Karl Karl Swedberg

[jQuery] Re: only one $(document).ready() with IE6?

2008-11-13 Thread Stan McFarland
Hi, thanks for replying. I'm on an Intranet, so I can't show you, but I'll comment out all the code in the two files except for the document.ready() calls and see if I can trace it down. Thanks again. -stan On Nov 13, 12:27 pm, Karl Swedberg [EMAIL PROTECTED] wrote: I have never had this

[jQuery] Re: blockUI:

2008-11-13 Thread George
Ok, now i am not sure what exactly is a problem... sorry. You can call this code $().ajaxStart($('#mydiv').blockUI).ajaxStop($('#mydiv').unblockUI); as many time as you want. It only changes which function will be called once AJAX is doing the call.. So right before doing your ajax call to

[jQuery] Re: only one $(document).ready() with IE6?

2008-11-13 Thread Stan McFarland
Karl, that was exactly it - a trailing comma. Thanks a bunch! -stan On Nov 13, 12:27 pm, Karl Swedberg [EMAIL PROTECTED] wrote: I have never had this problem before on any browser. Do you have a   test page you could show us? It could be that one of your JavaScript   files has something

[jQuery] Re: How can I return some value in jquery's callback function?

2008-11-13 Thread Michael Geary
The $.getJSON callback function is not called at the time you make the $.getJSON call. It's called asynchronously, much later, after the data has been downloaded. The return value from the callback is discarded - there's no one to return it to. Did you want to take two different actions

[jQuery] Re: Explain this please: (Perfromance, dynamic DOM creation)

2008-11-13 Thread Eli
And a quick reply to myself. It's also quicker (though we are talking like 1 ms quicker), to refactor the code to never create the $j(li) at all, and instead to directly inject the HTML into the page, and then manipulate after the fact, instead of before hand. Eli -- Still curious to know why

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-13 Thread heysatan
Sean, Thanks! I really feel that's how web 2.0 should be used, minimally and usefully. I'll start working on the plugin next week, I'll try and have a beta version up by the end of november. We were working within .NET which made it hard to implement some of the things I wanted to. The sign

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-13 Thread AstroIvan
I hear your pain. Working with java's front-end component frameworks suck and get in the way of productive javascript coding. On Nov 13, 1:28 pm, heysatan [EMAIL PROTECTED] wrote: Sean, Thanks!  I really feel that's how web 2.0 should be used, minimally and usefully.  I'll start working on

[jQuery] Re: selector to .wrap multiple elements in HTML

2008-11-13 Thread ricardobeat
Ah, thanks Karl, writing to this list has become one of my favorite spare time hobbies :) On Nov 13, 1:23 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Not a problem, Ricardo. :-) sorry, everyone else, for going off-topic, but I'd like to thank   Ricardo publicly for all the help he has been

[jQuery] jQuery Ajax load problem

2008-11-13 Thread Shazzaam
Hi, I am using jQuery 1.2.6, and also have Prototype 1.6.0.1 and Scriptaculous 1.8.1 in my page. I have pretty much everything working without receiving any javascript errors, but for some reason the ajax load script is not working: jQuery(.tablesorter tbody, #tab).load(path, data,

[jQuery] Re: Changing the SRC of an iframe

2008-11-13 Thread CodingCyborg
div class=draggableWindow personalWin id=win10 h1span/spanPersonal Settings/h1 div class=content iframe src=settings.php/iframe /div /div And then elsewhere i have a link that onclick does link (#win10,mailbox.php) The window has the focus changed so I

[jQuery] Re: accessing Object properties in getJSON function call

2008-11-13 Thread Michael Geary
this is different in every function. Inside your processJSONFunc() callback, this is not what you might expect - as you discovered. That function is not being called as a method of your object. As you also discovered, you do have complete access to *local variables* defined in the parent

[jQuery] Re: Changing the SRC of an iframe

2008-11-13 Thread CodingCyborg
That did the trick! I guess I misread the documentation on the child selector, though it makes sense now that you point it out. Thank you very much :) On Nov 13, 12:55 pm, Hector Virgen [EMAIL PROTECTED] wrote: It looks like the iframe is not an immediate descendant of the div with id win10.

[jQuery] Re: jQuery Ajax load problem

2008-11-13 Thread Shazzaam
nm, I think it's an issue with something inside the load method. -- View this message in context: http://www.nabble.com/jQuery-Ajax-load-problem-tp20486998s27240p20487325.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: Changing the SRC of an iframe

2008-11-13 Thread Hector Virgen
It looks like the iframe is not an immediate descendant of the div with id win10. Remove the from your selector and it should work: $(win+' iframe').attr(src,url); -Hector On Thu, Nov 13, 2008 at 10:51 AM, CodingCyborg [EMAIL PROTECTED]wrote: div class=draggableWindow personalWin id=win10

[jQuery] this and z-index changes

2008-11-13 Thread CodingCyborg
I recently have been playing around with a Desktop module that was on nettuts and made a modification for it that doesn't fully work. There are many draggable windows, and in order for them to function like a real desktop they need to have z-index changes such that if you close one on top the

[jQuery] Re: PrettyCheckboxes not working with radio array names

2008-11-13 Thread George
The problem that regular radio buttons are working only when they have the same name. No wonder prettty ones not working too... :) Why do you want to give them the same name? You can use different ids if you want. Something like this input type=rario name=group1 id=group1_1 input type=rario

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-13 Thread George
It does not seem to work... I had tried in FF 3.03 and IE 7.0 In both browsers nothing happens... George. On Nov 12, 5:38 pm, Brice Burgess [EMAIL PROTECTED] wrote: Ladies and Gentlemen,   I'm writing to inform you all of a new addition to the jQuery plugin family... Please welcome

[jQuery] Re: PrettyCheckboxes not working with radio array names

2008-11-13 Thread George
Sorry instead of Why do you want to give them the same name? I meant to say Why do you not want to give them the same name? George. On Nov 13, 3:06 pm, George [EMAIL PROTECTED] wrote: The problem that regular radio buttons are working only when they have the same name. No wonder prettty

[jQuery] Re: Tab divs disappear

2008-11-13 Thread aaron
Unfortunately, that isn't working either. Let me link my page and maybe you can see what is going on. I have two versions. One is using Tabs 3 with the rotate option: http://www.usm.edu/pr/web/index.php One is using jquery UI Tabs with the rotate option and Ajax:

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-13 Thread George
Count me in for the Plug-In request :) It's pretty cool and the whole site is done very well, I put it in to my Favorites so later I could revisit and 'steal' some design ideas. PS: I am a .NET developer myself and so far find it to be more superior (if I can say that) to Perl. The problem you

[jQuery] Re: jQuery Ajax load problem

2008-11-13 Thread Tor Skogen
Sorry for the recent post Prototype ang JQ just dont get along On Thu, Nov 13, 2008 at 7:48 PM, Tor Skogen [EMAIL PROTECTED] wrote: Prototype and Scriptaculous just dont get along On Thu, Nov 13, 2008 at 7:45 PM, Shazzaam [EMAIL PROTECTED] wrote: Hi, I am using jQuery 1.2.6, and also

[jQuery] Animation Question

2008-11-13 Thread [EMAIL PROTECTED]
Right now, I have it so that the menu animates as follows: animation : {opacity:'show',height:'show'}, How would I go about coding the js so it animates out in the opposite effect animation {opacity:'hide',height:'hide'}? Example of what I have so far can be seen here:

[jQuery] Re: jQuery Ajax load problem

2008-11-13 Thread Tor Skogen
Prototype and Scriptaculous just dont get along On Thu, Nov 13, 2008 at 7:45 PM, Shazzaam [EMAIL PROTECTED] wrote: Hi, I am using jQuery 1.2.6, and also have Prototype 1.6.0.1 and Scriptaculous 1.8.1 in my page. I have pretty much everything working without receiving any javascript

[jQuery] jqModal and IE6 - flag continues to wave

2008-11-13 Thread Jeromatron
We noticed that in IE6, in our code and on the examples, if you open the modal, the IE flag icon waves and doesn't stop. Also, when the modal is closed, the flag continues to wave. http://dev.iceburg.net/jquery/jqModal/#examples We asked on the IRC channel, and someone suggested that we trying

[jQuery] Superfish - sf-breadcrumb question

2008-11-13 Thread John S
This regards using Superfish in a common navigation element. I'm finding that I need to have sf-breadcrumb on one of the sf-menu list items in orde for the matching sf-navbar to appear onload. I've been trying to use jQuery to remove the hard coded class and use addClass to add sf-breadcrumb to

[jQuery] Tiime spent vertical scrolling and moving the mouse

2008-11-13 Thread stephan . koelle
Hallo everybody! For web analytics purpose I'm trying to record the time a user spends scrolling on my page and the the time a visitor spent moving the mouse. What is the easiest way to get this data? Thanks for your help bye - stephan #adBox3 {display:none;}

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-13 Thread benjam
Doesn't work at all for me. FF 3.0.3 on Vista On Nov 12, 3:38 pm, Brice Burgess [EMAIL PROTECTED] wrote: Ladies and Gentlemen,   I'm writing to inform you all of a new addition to the jQuery plugin family... Please welcome jqRevolve!   jqRevolve is a carousel-like plugin for jQuery. It

[jQuery] Re: blockUI:

2008-11-13 Thread Mike Alsup
$().ajaxStart($.blockUI).ajaxStop($.unblockUI); Now, i would like to know if it is possible to customize this call so that the concerned element shows blockUI, instead of the whole page ? To block only a single element you would use block instead of blockUI. $('#myDiv').block(); ...

[jQuery] jQuery + AWS = Fun (and a new search engine)

2008-11-13 Thread JohnForsythe
Hey, Just wanted to show off my new search engine, built using jQuery and Amazon Web Services: http://bigbooksearch.com/ It's a multi-purpose image search, useful for finding cover art, obscure novels and albums, and things you forget the name of, but know how they look. Here's what I'm

[jQuery] Re: Tab divs disappear

2008-11-13 Thread Klaus Hartl
Maybe I am just blind, but I couldn't find tabs, and got a We couldn't find your document. instead...? --Klaus On 13 Nov., 21:23, aaron [EMAIL PROTECTED] wrote: Unfortunately, that isn't working either.  Let me link my page and maybe you can see what is going on.  I have two versions. One

[jQuery] Re: Tab divs disappear

2008-11-13 Thread Klaus Hartl
In any case - as I already stated - rotate with Ajax tabs is not supported at the moment. --Klaus On 13 Nov., 22:25, Klaus Hartl [EMAIL PROTECTED] wrote: Maybe I am just blind, but I couldn't find tabs, and got a We couldn't find your document. instead...? --Klaus On 13 Nov., 21:23,

[jQuery] Re: [treeview] Suggestion: function callback after async update

2008-11-13 Thread Dirceu Barquette
Is the above code to my plugin (jqTreevial)? If yes, thanks a lot!!! If no, thanks to!!! Barquette (http://sourceforge.net/projects/jqtreevial/) 2008/11/13 Dominik Deobald [EMAIL PROTECTED] Just a quick suggestion for future versions of treeview: I've added if

[jQuery] Re: PrettyCheckboxes not working with radio array names

2008-11-13 Thread Ahhk
Thanks, but I didnt say I didnt want them to have the same name, I said that the script didnt work when the names were arrays. When the radio button groups have an name with an array, the script breaks and you can select/deselect multiple radio buttons within the group. Here's an example:

[jQuery] Re: jQuery / XML / IE

2008-11-13 Thread Mike Alsup
OK, this works marvelously in Safari and Firefox for the Mac as well as Firefox for the PC but it doesn't work worth spit in IE. I would appreciate any assistance. It's just reading form a simple XML file to output information in divs. http://rationalogic.com/xml/ Works ok in IE7.

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-13 Thread Jay
Thought it was pretty cool, so I threw my own plug in together in a little over an hour to mimic what he did there. It's pretty simple but should work in ie6/7,ff,safari. You can set a few different options, and I'm sure this could be expanded upon to give it a lot more power. Anyway, here

[jQuery] Re: Tab divs disappear

2008-11-13 Thread aaron
Sorry, wrong links. http://www.usm.edu/pr/web/beta/index.php http://www.usm.edu/pr/web/beta/index2.php On Nov 13, 3:26 pm, Klaus Hartl [EMAIL PROTECTED] wrote: In any case - as I already stated - rotate with Ajax tabs is not supported at the moment. --Klaus On 13 Nov., 22:25, Klaus Hartl

[jQuery] Re: set rounded corners to multiple divs

2008-11-13 Thread Mike Alsup
I am using the rounded corner script on one of my sites.   I am using the below to round a corner on a div called 'rounded'.  my question is, how can i apply this to multiple divs ... for example apply it to a div called #one, #two and #three. thank you     script type=text/javascript    

[jQuery] set rounded corners to multiple divs

2008-11-13 Thread ramiro77
Hi All, I am using the rounded corner script on one of my sites. I am using the below to round a corner on a div called 'rounded'. my question is, how can i apply this to multiple divs ... for example apply it to a div called #one, #two and #three. thank you script type=text/javascript

[jQuery] Re: set rounded corners to multiple divs

2008-11-13 Thread ramiro77
Thank you Mike. one more problem i see with this script. It seems to pick up the page background color in order to do the alias. is there a way to change this ? On Nov 13, 4:50 pm, Mike Alsup [EMAIL PROTECTED] wrote: I am using the rounded corner script on one of my sites. I am using

[jQuery] Re: jQuery / XML / IE

2008-11-13 Thread ken
http://dev.jquery.com/ticket/3143 http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests (the code block) On Thu, Nov 13, 2008 at 10:37 AM, Jemo [EMAIL PROTECTED] wrote: OK, this works marvelously in Safari and Firefox for the Mac as well as Firefox for the PC but it doesn't work

[jQuery] Re: Parsing JSON with JQuery

2008-11-13 Thread nic
Thanks all for the responses. In case anyone reads this post ... This is what I did to get it working: The JSON data I had was: {vegetables:null,fruit:[orange,apple,peach]} In my jsp (html, whatever) I had: head link rel=stylesheet href=css/jquery.autocomplete.css type=text/ css

[jQuery] Re: jQuery + AWS = Fun (and a new search engine)

2008-11-13 Thread Alexandre Plennevaux
veeery nice ! at last, some comfy interface to see the book ! would be cool to not be leaving the app once you click on a book cover. dunno if it is possible, though On Thu, Nov 13, 2008 at 7:35 PM, JohnForsythe [EMAIL PROTECTED] wrote: Hey, Just wanted to show off my new search engine,

[jQuery] Re: Tab divs disappear

2008-11-13 Thread aaron
Sorry, wrong links. http://www.usm.edu/pr/web/beta/index.php http://www.usm.edu/pr/web/beta/index2.php On Nov 13, 3:26 pm, Klaus Hartl [EMAIL PROTECTED] wrote: In any case - as I already stated - rotate with Ajax tabs is not supported at the moment. --Klaus On 13 Nov., 22:25, Klaus Hartl

[jQuery] Re: Tab divs disappear

2008-11-13 Thread aaron
Sorry, wrong links. http://www.usm.edu/pr/web/beta/index.php http://www.usm.edu/pr/web/beta/index2.php On Nov 13, 3:26 pm, Klaus Hartl [EMAIL PROTECTED] wrote: In any case - as I already stated - rotate with Ajax tabs is not supported at the moment. --Klaus On 13 Nov., 22:25, Klaus Hartl

[jQuery] Re: PrettyCheckboxes not working with radio array names

2008-11-13 Thread George
I am with you now the problem is that you have weird name, with '[]' in it. this line $('input[name='+$toCheck.attr('name')+']') fails and returns empty collection. The problem is described here

[jQuery] 3rd party code interference with responsive jquery event handling

2008-11-13 Thread decostop
I can't imagine my situation is very unique so I must be failing to see the trees through the forest. 1) We have a site that has a number of JQuery style event handlers. By this I mean we use the ready to apply event bindings based on jq selectors. 2) We have 3rd party JS which we have no

[jQuery] Expand Upward

2008-11-13 Thread DougMellon
Hey, I was wondering if anyone knew of a way to get the div to expand upwards? Something like this (http://docs.jquery.com/Effects/ slideDown#speedcallback) just instead of expanding downwards have it expand upwards. Any help would be awesome. Thanks in advance. - Douglas Mellon

[jQuery] Animating table rows

2008-11-13 Thread c.barr
I'm creating an admin section for a site where I need to dynamically add a new row to a table - which I know how to do just fine, but the problem is that when you do an animation like .slideDown() jQuery sets it to display:block; and for a table row this is incorrect, as it should be

[jQuery] Re: PrettyCheckboxes not working with radio array names

2008-11-13 Thread Ahhk
Wow, ok...thanks! I didnt think it was a jQuery issue and am surprised that jQuery, with as robust and fantastic as it is, wouldn't support array names for form elements. That seems like a major oversight to me :/ But, maybe I'm one of only a few people who actually use array names/IDs.

  1   2   >