[jQuery] Re: Jquery suitable for advanced webapplication

2009-11-12 Thread Wiemer
Thank you for the feedback and tips! Does anybody has experience with some sort of statemanager where you can control the different states of your interface, sort of a controller? On 12 nov, 08:49, Sn3b sebastien.desalva...@gmail.com wrote: Btw, you will want to read this as you start coding

[jQuery] Re: Are there any specific reason why the Jquery library returns a lot of errors in the Firefoxx error console?

2009-11-12 Thread Sune42
Hi What I mean is that I get a lot of Jquery CSS errors/warnings in Firefox error console ,like if I visit this page http://jqueryui.com/demos/draggable/ I get 9 errors in the Varning: http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/ui-lightness/jquery-ui.css So I wonder if this

Re: [jQuery] Re: Are there any specific reason why the Jquery library returns a lot of errors in the Firefoxx error console?

2009-11-12 Thread Michel Belleville
Ok, so, first of all error # warning. An error means something has gone wrong, sometimes horribly, a warning merely means something may possibly be a mistake, or not. Especially css warnings, which basically means oh, I don't know this one (I'd even be so bold as to add could that be an Internet

[jQuery] embed java applets in div element using jquery

2009-11-12 Thread km
Hi All, I am embedding a java applet into one of the div elements in a page. div id=appletHere/div and jquery function is $(document).ready(function(){ $('#appletHere').append(' script type=text/javascript jmolApplet(load somefile.pdb); /script '); });

[jQuery] Re: embed java applets in div element using jquery

2009-11-12 Thread km
just to update- I am using jquery 1.3.2 , jquery-ui 1.7.2 and java 1.6 with firefox 3.5.5 (firebug 1.4.5) Krishna On Thu, Nov 12, 2009 at 6:27 PM, km srikrishnamo...@gmail.com wrote: Hi All, I am embedding a java applet into one of the div elements in a page. div id=appletHere/div and

Re: [jQuery] Re: Load image with an ajax preloader?

2009-11-12 Thread Michel Belleville
You may also like this nifty little trick : $('#myImage').attr('src', 'image.jpg').load(function() { alert( 'Image Loaded'); }); Apparently images does use the .load() event callback. Michel Belleville 2009/11/10 Michel Belleville michel.bellevi...@gmail.com This is straight JS, I never used

[jQuery] Re: post AJAX no response

2009-11-12 Thread David
Hi, I'm back again with this AJAX post problem. I've used HttpFox FF extension and I've got some extra information. The post call is aborted. I got next message using HttpFox extension: Method: post Time: 0.451 Result: Aborted Type: NS_BINDING_ABORTED This happens when I use a low band

[jQuery] Is FullCalendar Able To Handle Multiple Google Calendars?

2009-11-12 Thread Eclectic Mix
I have been exploring the FullCalendar plugin (http://arshaw.com/ fullcalendar/), which works nicely. I have been able to display information from one of my Google calendars, but have not had success with multiple calendars. Does anyone know if this is possible? Thanks - george

Re: [jQuery] Re: Load image with an ajax preloader?

2009-11-12 Thread Karl Swedberg
On Nov 12, 2009, at 6:10 AM, Michel Belleville wrote: You may also like this nifty little trick : $('#myImage').attr('src', 'image.jpg').load(function() { alert('Image Loaded'); }); Apparently images does use the .load() event callback. Michel Belleville Good point, Michel. You have

[jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread AdyLim
Hi there, I'm just starting to learn jquery and trying to implement tabs onto my aspx page...The problem is that the tabs are showing up one on top of anotherhow do i get the tabs to line up in a row? I'm using jquery 1.2.6...all the js's (ui.core.js, ui.tabs.js) are included in my

[jQuery] Re: Calling function in jQuery

2009-11-12 Thread adam_g2000
Hi Dhruva, I've tried to implement this, with the following code: (function($) { $.dave = function() { alert('in function'); } })(jQuery); $(document).ready(function(){ $.dave(); }); which does nothing, I'm guessing as I'm new to this I've missed something simple, can you see

[jQuery] jQuery newbie is looking for a hint. (dynamically add div tags to html :: plugin accordion)

2009-11-12 Thread hagbardceline
Hi I'm a total newbie to jQuery and need a hint. I have a site that has a structure like this which is used for accordion plugin: (html content is set by TinyMC RTE Editor) div class=modAccordion h3header 1/h3 psome text/p psome other text/p h3header 2/h3 psome text/p ul

[jQuery] JQuery and Mootools still not working

2009-11-12 Thread Ryan Levin
Hi, I am unable to get jquery and the barackslideshow working on the same page. I have been struggling for hours and it is an urgent thing. I researched and found the noConflict and after a while realized the correct order to put it in for it to work. And it works great - in Chrome and Firefox.

[jQuery] Autocomplete , inseting text

2009-11-12 Thread Inbar, Shai
This is a newbie question. I want to use the jQuery autocomplete for injecting text in the middle of another text, inside a text area. I mean, I have a textarea that may already contain some text. I want to set the cursor anywhere in that text and start typing. The autocomplete box pops up and

[jQuery] Conditionally format rows in a table

2009-11-12 Thread Marcel Roesink
I have the following code: $().ready(function() { $(td:contains('HENGELO')).parent().children().addClass ('red'); }); Now I want to get the condition from an ASP control for example a dropdown or a listbox. How do I use the value of this control in my

[jQuery] VALIDATE change errormessage

2009-11-12 Thread fyp
Moin, sorry, i dont get it: how to change the error message for all fields This field is required. script type=text/javascript src=http://dev.jquery.com/view/trunk/ plugins/validate/jquery.validate.js/script script $(document).ready(function(){ $(#mainform).validate(); }); /script

[jQuery] Division Blocking is not working

2009-11-12 Thread azy
Hi , I am using jQuery BlockUI Plugin (v2) in my project ,Block UI is working fine in my project. when i am trying to block particular Division its not working. Please check the following code and reply soon. Thanks in advance MY Code : %@ Page Language=C# AutoEventWireup=true

Re: [jQuery] embed java applets in div element using jquery

2009-11-12 Thread Andrei Eftimie
Try: $('#appletHere').html(' script type=text/javascript jmolApplet(load somefile.pdb); /script '); But it might not help if your javascript or java applet does something like ocument.write(content); You probably *could* move your created DOM objects after they

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
This is a CSS issue, not really related to jQuery. Do something like this in your CSS file: /* Forcing the ul to take not of its floated children. */ #tabs ul { display: inline-block; overflow: hidden; } #tabs ul { display: block; } /* Floating the children */ #tabs li { float: left; }

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Michel Belleville
This is a css question rather than jQuery, though the answer goes as follow : 1. you're using an ul with li inside 2. ul work as block elements containing li which are block elements too 3. block elements pile up on top of one another unless told otherwise What you need is made them act

Re: [jQuery] Conditionally format rows in a table

2009-11-12 Thread Andrei Eftimie
$('#select').val() will return the value of the selected item But I'm not seeing *how* this has anything to do with the example you posted. On Thu, Nov 12, 2009 at 8:14 AM, Marcel Roesink mg.roes...@gmail.com wrote: I have the following code:            $().ready(function() {                

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Michel Belleville
Also, you'd better not use floating positioning (easier on the very short term, a lot more complicated in mid-long term). Michel Belleville 2009/11/12 Andrei Eftimie k3liu...@gmail.com This is a CSS issue, not really related to jQuery. Do something like this in your CSS file: /* Forcing

[jQuery] Re: Division Blocking is not working

2009-11-12 Thread MorningZ
Your selector of $('div.question').block(); is wrong as that looks for a div with a class of question your HTML of div id=question would be found by $('#question').block(); On Nov 12, 7:52 am, azy azymd...@gmail.com wrote: Hi ,          I am using jQuery BlockUI Plugin (v2) in my project

Re: [jQuery] Get the real html from an iFrame

2009-11-12 Thread brian
Do either of these work? var html = parent.$('#indexIframe').contents().html(); var html = parent.$('#indexIframe').contents(); On Wed, Nov 11, 2009 at 9:49 AM, m.ugues m.ug...@gmail.com wrote: Hallo all. I have an iframe with an id. I need to get the html content of this iframe. So from

[jQuery] Re: Are there any specific reason why the Jquery library returns a lot of errors in the Firefoxx error console?

2009-11-12 Thread MorningZ
What I mean is that I get a lot of Jquery CSS errors/warnings in Firefox error console ,like if I visit this page Well, let's look at one: From the Firefox error console: Warning: Error in parsing value for 'cursor'. Declaration

Re: [jQuery] Re: Are there any specific reason why the Jquery library returns a lot of errors in the Firefoxx error console?

2009-11-12 Thread Michel Belleville
2009/11/12 MorningZ morni...@gmail.com you could go through the CSS and remove every IE specific declaration, but now you'd have to support two copies of the file, one for IE, one for everyone else. If only 2 copies were enough here... More like 2+ copies depending on how many versions

[jQuery] Change style of Div with fade

2009-11-12 Thread Dan
Hi, Can anyone tell me how to rotate the background-color style of a div with a fade? I need it to rotate colors every 10 seconds, having one fade into the next, and will need to have 3 background colors, then keep looping from the first color. My Div is named #rotateBG. Thanks

[jQuery] Re: button value change

2009-11-12 Thread David pr
Thanks but this won't work for a input type=button .../ ? David

Re: [jQuery] Re: button value change

2009-11-12 Thread Joe Moore
David, You are correct, that wont work for the input element. Sorry about that. I guess I got focused on the first part of your email and the a element. I'm wondering if you thought about why the code I provided didn't work? You might want to review the jQuery documentation and the tutorials: -

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
Sorry for thread-hijacking, but why would you say that floats are complicated? Right now (as in current browser implementations) floats work really reliably. (with 1 small IE bug with an easy fix) inline-block needs to be hacked in multiple browsers 2009/11/12 Michel Belleville

Re: [jQuery] Re: button value change

2009-11-12 Thread saxan rappai
iam not sure with this .. but its working... a lil modification.. html head titleTest Page/title script src='jquery.js' type='text/javascript'/script script type=text/javascript $(function() { $('#but').toggle(

Re: [jQuery] Re: button value change

2009-11-12 Thread Joe Moore
Certainly more concise! On Thu, Nov 12, 2009 at 10:00 AM, saxan rappai saxanrap...@gmail.comwrote: iam not sure with this .. but its working... a lil modification.. html head titleTest Page/title script src='jquery.js' type='text/javascript'/script script

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Michel Belleville
Floats are a pain as soon as you try to use proper positionning (relative / absolute) along with proper overflow. Floats should be used to place content alongside inline content to make said content flow around the floating element, adapting to its shape. It's perfect for, say, inserting a visual

[jQuery] Issues with jQuery plugins

2009-11-12 Thread Paulo Henrique
Hello all... I am working on a php website, and I am using jquery and some plugins I use on all my websites... The problem is that I am doing exactly the same thing I do in every website, but it suddenlly stopped working on this one... The jquery works fine, I tried a command, the problem is with

Re: [jQuery] Issues with jQuery plugins

2009-11-12 Thread Jörn Zaefferer
Sounds like the includes aren't working, maybe base_url() returns the wrong value. Do a View Source to see how the URLs of those script tags look like. Or use Firebug's Net panel to check that there are no 404s. Jörn On Thu, Nov 12, 2009 at 4:50 PM, Paulo Henrique paulode...@gmail.comwrote:

[jQuery] Jquery Tabs

2009-11-12 Thread StephenJacob
I'm having an issue, which seems common, when loading tab content using the Jquery Tab plugin. It seems the content loads on the page prior to being tabbed. This causes the page to jump around for a split second before the content loads completely. Is there any way of fixing this issue?

[jQuery] Getting a position and setting a absolute position relatively

2009-11-12 Thread Atkinson, Sarah
I want to find the x,y position of an element on the page and then set the xy position of another element relative to the first one. How do I do this?

Re: [jQuery] Getting a position and setting a absolute position relatively

2009-11-12 Thread Michel Belleville
http://docs.jquery.com/CSS/offset http://docs.jquery.com/CSS/css#namevalue Michel Belleville 2009/11/12 Atkinson, Sarah sarah.atkin...@cookmedical.com I want to find the x,y position of an element on the page and then set the xy position of another element relative to the first one. How do

[jQuery] Re: SimpleModal issues when loading content via Ajax

2009-11-12 Thread Eric Getchell
I determined what was the issued and will post my solution here in case others encounter the same problem. I incorrectly assumed the .load() call was a synchronous (blocking) call, which it is not. Therefore, the SimpleModal call was processing the empty div before the content had finished being

[jQuery] Re: better way to access JSON than with $.getJSON on each button press

2009-11-12 Thread roryreiff
Thanks Scott...you have given me some food for thought. On Nov 12, 9:18 am, Scott Sauyet scott.sau...@gmail.com wrote:     function getData(url) {         var storedData;         return function(callback) {             if (storedData) callback(storedData)             else $.getJSON(url,

[jQuery] Re: better way to access JSON than with $.getJSON on each button press

2009-11-12 Thread roryreiff
Thanks Scott...you have given me some food for thought. On Nov 12, 9:18 am, Scott Sauyet scott.sau...@gmail.com wrote:     function getData(url) {         var storedData;         return function(callback) {             if (storedData) callback(storedData)             else $.getJSON(url,

[jQuery] Re: better way to access JSON than with $.getJSON on each button press

2009-11-12 Thread Scott Sauyet
    function getData(url) {         var storedData;         return function(callback) {             if (storedData) callback(storedData)             else $.getJSON(url, function(data) {                 storedData = data;                 callback(storedData);             });         };    

[jQuery] AJAX call returns as error when no error

2009-11-12 Thread John.Morgan
I don't know if anyone else has seen this. But if anyone has and knows a fix for it it would be great. I am using the jquery ajax library to do a timed update (once per minute). I am using POST against and asmx web service. Intermittently jquery will return an error with the requested data as

[jQuery] jQuery not obeying my css? or applying its own during effect?

2009-11-12 Thread James Fleeting
I have some image/text animation here http://www.smithsgardentown.com/ The big promo below the nav fades in and out. However, during the effect it appears on top of my sidebar div and after the effect I guess applies my css and drops behind it. I would like for the entire effect to take place

[jQuery] error when using a timeout

2009-11-12 Thread matthewordie
I'm using this plugin to animate some background images: http://plugins.jquery.com/project/backgroundPosition-Effect Now it works fine until I wrap the animate function in a timer. Then it gives me errors. I'm changing the image on hover. Here's my code: var hideDelay = 2000; var hideDelayTimer

[jQuery] JQuery - Feedback tab

2009-11-12 Thread Scott
Hey All, I am just working on a site with an associate which is a jQuery driven feedback tab. Which uses a javascript mvc style model and AJAX / jsonp communication, to communicate to a asp.net modified web services. I would love to get some feedback about the tab www.monyta.com, and any ideas

[jQuery] autocomplete div don't disappear after move scroll

2009-11-12 Thread danielecr
try in http://www.confestetica.it/estetica/ (on the right) 1. typed some chars 2. move scrollbar with mouse 3. click elsewhere 4. div do not disappear as expected (at least by me) I loaded bgiframe plugin, there is something I have to do to make it behave as I expect? Daniele.

[jQuery] (validation) jQuery validation plugin and FormWizard

2009-11-12 Thread Jesse
Hi All! I have a really, really long form (about 300 fields) that I broke down into different sections using this slick a href=http:// www.jankoatwarpspeed.com/post/2009/09/28/webform-wizard-jquery.aspxjQuery plugin Form Wizard/a. If you group your form into different fieldsets, the FormWizard

[jQuery] Get paste event text.

2009-11-12 Thread sonal.breed
Hi all, How can I get the text from the clipboard when user is about to paste. For example, if user has copied the text Jquery forum, I should get this text from the paste event. I tried to use $(#test).bind('paste', function(e) { alert(e.clipboardData.getData(Text));

[jQuery] Defaults one page have to enable

2009-11-12 Thread Vimalraj
when i using jquery.history_remote.js working good... but i need a help for it, when landing to the page one remote file should enable, but i can't any one can?

[jQuery] IE radio button show nothing after click or change

2009-11-12 Thread 2daughtersdad
In IE7 my radio button do not display 'checked' when I click on it. (ie I would not change to show which button has been clicked) I work fine in Firefox. Need Help. Thanks in advance. I am using jquery-1.3.2.min.js and the following work fine as well. $(input[name='radioname']).click(function()

[jQuery] Re: Jquery Tabs

2009-11-12 Thread StephenJacob
Issue Resolved. I stopped using the Jquery Tabs and started using http://flowplayer.org/tools/demos/tabs/index.html On Nov 12, 11:06 am, StephenJacob turnstylecreat...@gmail.com wrote: I'm having an issue, which seems common, when loading tab content using the Jquery Tab plugin. It seems the

[jQuery] Re: Cluetip not working in Chrome 3.0.195

2009-11-12 Thread dondmcg
Karl, I see thanks for pointing that out. My bad. You were right it is working now. On Nov 11, 9:20 am, dondmcg d...@mcgrathdesigns.com wrote: Thecluetipdisplays wonderfully in all browsers I have tested exceptChromever. 3.0.195.  The problem is that the first instance appears but

[jQuery] jQuery cycle plugin

2009-11-12 Thread bozlite
I've been using the jquery cycle plugin (http://malsup.com/jquery/ cycle) and it's doing exactly as I want except that it doesn't seem to recognise the first slide as slide one. I'm using the onAfter function to to turn the next/prev links on and off as appropriate and to display page 1 of ? but

[jQuery] jQuery Pagination - Return to top of screen

2009-11-12 Thread wheatstraw
jQuery Pagination works great, but when you click for the next set of results the window does not return to the top (if you have to scroll to get to the pagination). would anyone have any ideas on how to force the window scroll back to the top on click? - function

[jQuery] Re: Instantiating a chart in a dynamically-added div

2009-11-12 Thread Scott Sauyet
It's probably not a good idea to make the user's browser hang while you wait for a response from the server. Have you tried something like this? $(#summDiv).load(/your/url, {ASXCode:z}, function (responseText, textStatus) { // might want to check textStatus here.

Re: [jQuery] jquery tabs not on the same row! help please!

2009-11-12 Thread Andrei Eftimie
You have a lot of you facts wrong. Floats are a pain as soon as you try to use proper positionning (relative / absolute) along with proper overflow. Nope, they are not. Floats do not have any effect on positioning. Positioning works the way it should around and inside floats. (Except for a

Re: [jQuery] jQuery Pagination - Return to top of screen

2009-11-12 Thread Andrei Eftimie
would anyone have any ideas on how to force the window scroll back to the top on click? function pageselectCallback(page_index, jq){ var new_content = $('#hiddenresult div.result:eq('+page_index+')').clone(); $('#Searchresult').empty().append(new_content);

Re: [jQuery] IE radio button show nothing after click or change

2009-11-12 Thread Andrei Eftimie
I'm not sure about this right now, but from memory, IE will change the value after the element has loses its focus. On Thu, Nov 12, 2009 at 7:54 PM, 2daughtersdad jacob@gmail.com wrote: In IE7 my radio button do not display 'checked' when  I click on it. (ie I would not change to show which

Re: [jQuery] Get paste event text.

2009-11-12 Thread Andrei Eftimie
You do not have access to the clipboard. (Only IE provides some mechanism for it) And from what I remember there might be some implementations for other browsers. I think using flash. But they're very hackish. On Thu, Nov 12, 2009 at 7:14 PM, sonal.breed sonal.br...@gmail.com wrote: Hi all,

Re: [jQuery] autocomplete div don't disappear after move scroll

2009-11-12 Thread Andrei Eftimie
Works fine in FF 3.5.5 On Thu, Nov 12, 2009 at 6:36 PM, danielecr daniele...@gmail.com wrote: try in http://www.confestetica.it/estetica/ (on the right) 1. typed some chars 2. move scrollbar with mouse 3. click elsewhere 4. div do not disappear as expected (at least by me) I loaded

Re: [jQuery] jQuery not obeying my css? or applying its own during effect?

2009-11-12 Thread Andrei Eftimie
Congrats on having courage to go with HTML 5. Add *position: relative;* to your *aside* element. And it should be fixed. On Thu, Nov 12, 2009 at 4:57 PM, James Fleeting twofivethree...@gmail.com wrote: I have some image/text animation here http://www.smithsgardentown.com/ The big promo below

Re: [jQuery] error when using a timeout

2009-11-12 Thread Andrei Eftimie
                       hideDelayTimer = setTimeout(function () {                               $(this).animate({backgroundPosition: '(0 0)'});                                hideDelayTimer = null;                        }, hideDelay); $(this) might not refer to anything in this context.

[jQuery] CSSIE = jQuery plugin to fix IE's CSS

2009-11-12 Thread weepy
Plugin for jQuery providing native support for missing CSS in IE. Currently provides: * E F (direct descendant) * :hover (normally only available to a tags) * E + F (sibling) * [rel=attr] (attribute selection) * :first-child and any other selectors containing : and supported

Re: [jQuery] Superfish - Auto Arrows on sub menus only?

2009-11-12 Thread Andrei Eftimie
Anyone know of a quick way to apply auto arrows to ONLY the sub menus, while leaving the top-level list items sans-arrow? I'm not what kind of arrows you would need, but I suppose you are able to add them via CSS. (And yes, this isn't really jQuery related. This is a CSS issue) For a HTML like

Re: [jQuery] CSSIE = jQuery plugin to fix IE's CSS

2009-11-12 Thread Andrei Eftimie
Cool. So we'd only need to use these selectors in an external CSS file, and it should work? I'm usually adding manually some extra classes for IE6 for these kind of things (when they cannot be avoided at all). So I am making sure that it applies only to the elements I need fixing. Is the

[jQuery] Contact Form not working

2009-11-12 Thread madfenix
Hey just a quick question here, i have a contact form that i got from some random forum i googled, and find this nice contact form made from jquery the author said u only need to change a few things to make it work: the email addres which will accept the mail and the css style i also read some

Re: [jQuery] (validation) Validation plugin submitHandler

2009-11-12 Thread Jörn Zaefferer
Use a different name for the submit-button. Using name=submit you override the actual submit-function of the form. Keep in mind that in the DOM API, you can access any form element as a property of the form, referenced by name. Jörn On Thu, Nov 12, 2009 at 8:48 PM, mcrawford mcrawf...@gmail.com

[jQuery] Re: Jquery Tabs

2009-11-12 Thread StephenJacob
After further research it appears they are both doing the same thing when loading content. Does anyone have any suggestions or experience working with things like this? I understand that Jquery can not tabify the content until the page is loaded.. there for, the HTML must load the page and then

[jQuery] How to add click() function to a tr during grid loadComplete function.

2009-11-12 Thread davebrown
Hi All, Hoping someone might be able to help me here, I'm trying specify a click function to a jqGrid's row during the loadComplete event but having difficulty 'getting to' the tr element.. What I've been trying is this sort of thing but with no result.. var ids =

[jQuery] Re: jQuery Pagination - Return to top of screen

2009-11-12 Thread wheatstraw
Works great, thank you. On Nov 12, 4:30 pm, Andrei Eftimie k3liu...@gmail.com wrote: would anyone have any ideas on how to force the window scroll back to the top on click? function pageselectCallback(page_index, jq){        var new_content = $('#hiddenresult

[jQuery] Re: (validation) Validation plugin submitHandler

2009-11-12 Thread mcrawford
Right, thanks. I mentioned that in my initial post. But if I rename the submit-button, if you click the Cancel button, that value of cancel=Cancel will not get sent in the post. Any ideas why? On Nov 12, 2:05 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Use a different name for the

[jQuery] Re: (validation) Validation plugin submitHandler

2009-11-12 Thread mcrawford
Also, that doesn't explain why the form still submits when I call form.submit(). Since submit is no longer a function, the form should never get submitted in that case. On Nov 12, 2:05 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Use a different name for the submit-button. Using

Re: [jQuery] Cluetip: Access both local external content

2009-11-12 Thread Karl Swedberg
Just write two separate calls: $('a.some-class').cluetip({local: true}); $('a.another-class').cluetip(); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 11, 2009, at 2:35 PM, JMD wrote: What script do I use to have cluetip alternately access local

Re: [jQuery] Change style of Div with fade

2009-11-12 Thread Karl Swedberg
Jonathan Snook's background animation article might be helpful: http://www.snook.ca/archives/javascript/jquery-bg-image-animations/ --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 12, 2009, at 9:27 AM, Dan wrote: Hi, Can anyone tell me how to rotate

[jQuery] Re: How can i make a timer that i can stop with jquery?

2009-11-12 Thread MorningZ
Not really requiring jQuery, just read up on JavaScript's setInterval, which is like setTimeout except you can cancel it On Nov 12, 7:39 pm, Mark mark...@gmail.com wrote: Hi, i tried this jquery countdown plugin:http://davidwalsh.name/jquery-countdown-pluginand it works neat.. but not for

Re: [jQuery] Re: How can i make a timer that i can stop with jquery?

2009-11-12 Thread Michael Geary
Now MorningZ, that is possibly the worst comparison of setInterval() and setTimeout() that I've ever seen! (Please take that as a little good-natured ribbing among friends, OK?) Both setInterval() and setTimeout() are cancelable, using clearInterval() and clearTimeout() respectively. The

[jQuery] Cycle plugin won't start until all images have loaded (IE-only)

2009-11-12 Thread tallvanilla
When using the cycle plugin to display a slideshow in IE(6/?), it won't start playing until all of the images have completely loaded. This causes a delay of 5-15 seconds depending on the size and quantity of images. There's no such problem with non-IE web browsers, however, all of which start

[jQuery] Re: Superfish - Auto Arrows on sub menus only?

2009-11-12 Thread discern
Thanks, but I now realize my question was not terribly clear. Superfish has the autoArrows option, but that adds arrows to ALL the list items having sub list items, at any level. What I would like is to only add arrows (with Superfish's autoArrow option) to list items that happen to have a

[jQuery] (treeview) expandable / collapsable classes badly assigned in inactive tabs (jquery ui tabs)

2009-11-12 Thread jawosis
Hi, I noticed that the expandable-hitarea and collapsable-hitarea classes are not assigned as they should in inactive tabs when using jquery ui tabs. The lists in these inactive tabs are expanded by default (just as they should) but the assigned class is expandable-hitarea, thus showing the wrong

Re: [jQuery] Jquery Tabs

2009-11-12 Thread stworthy
try to use this tabs plugin http://www.etmvc.cn/project/show/63 http://www.etmvc.cn/project/show/63 StephenJacob wrote: I'm having an issue, which seems common, when loading tab content using the Jquery Tab plugin. It seems the content loads on the page prior to being tabbed. This causes

[jQuery] Re: css based on url wildcard

2009-11-12 Thread Wacko Jacko
Hi Michael, Thanks so much for taking the time to reply. I have very limited Javascript knowledge (learning). Are you able to offer any more clues to get me on track? Thanks in advance for your help!. Jack On Nov 9, 4:32 pm, Michel Belleville michel.bellevi...@gmail.com wrote: Straight js :

[jQuery] Re: selector performance

2009-11-12 Thread RobG
On Nov 12, 6:11 am, Karl Swedberg k...@englishrules.com wrote: Are those tests really using jQuery 1.1.4? If so, they're hardly   relevant now, unless you're using a very old version of jQuery. The tests are relevant in the context of the article. The point is really about improving

Re: [jQuery] SimpleModal issues when loading content via Ajax

2009-11-12 Thread stworthy
I use this dialog plugin instead of SimpleModal, I'm feeling it works good. http://www.etmvc.cn/project/show/61 http://www.etmvc.cn/project/show/61 Eric Getchell wrote: Hello, I’m having two issues with the SimpleModal jQuery plugin that I’m sure someone knows the answers to.

[jQuery] Re: How can i make a timer that i can stop with jquery?

2009-11-12 Thread MorningZ
it was admittedly a quick reply, but setInterval would be a path to take. sorry the verbose and novelized version wasn't typed out :-) On Nov 12, 8:39 pm, Michael Geary m...@mg.to wrote: Now MorningZ, that is possibly the worst comparison of setInterval() and setTimeout() that I've ever

[jQuery] URGENT!!! Need help!!! problem in IE carousel3d plugin on image click after ajax call

2009-11-12 Thread bourne_net2009
I did a workaround for now, because my client needed to have a release to show the site, but I didn't found the problem yet...so I still need HELP!!! I try a lot of possibilities to fix it, but with no result...so if anyone can help me has soon as possible, I will really appreciate that. Thank you

[jQuery] Re: How can i make a timer that i can stop with jquery?

2009-11-12 Thread Phish
Hey Mark, The plugin uses a recursive function to achieve the countdown. You can cancel the countdown by checking a global variable with each decrement in the number. Line 19: $(this).animate({ 'fontSize': settings.endFontSize },settings.duration,'',function() {

[jQuery] Re: How can i make a timer that i can stop with jquery?

2009-11-12 Thread Phish
Great response, Mike. In the plugin that the OP mentioned, it uses neither, but uses a recursive function instead. To cancel the recursive function, one would need to use a variable, and check it's value with each recursive function call. I replied to this post earlier, but it didn't seem to

[jQuery] form validation: compare two values

2009-11-12 Thread barbara
I have a form with 2 fields, the minimum number of people needed for an event to happen and the maximum number who can register. I want to validate that the maximum is greater than or equal to the minimum. I don't immediately see how to do that with the validation plugin, but it ought to be

[jQuery] Joomla Superfish menu affects other modules problem

2009-11-12 Thread sb
Hello! I looked around a lot and could not fix the problem. I am using siteground template (http://joomla15.siteground.com/? template=siteground-j15-82) with joomla 1.5 . I have the vertical suckerfish menu on the main menu position (left) and I had to change the width to 20em, because of the

[jQuery] image refresh problem due to browser cache

2009-11-12 Thread Jay
I am trying to display a image on my website. The image always has the same file name, but the content will change each time it is requested. I use the following code to refresh it on my web site, but it only works with Firefox. Is there any better way to do it? html head titleSimple

[jQuery] Forgot something about the Superfish issue that I posted moments ago

2009-11-12 Thread sb
Hello! I forgot to add that the problem with the Superfish menu and other modules is in Firefox. in IE works fine. Thank you again

[jQuery] Re: How to add click() function to a tr during grid loadComplete function.

2009-11-12 Thread Phish
I'm not quite familiar with jqGrid and how it creates tables, but when using the click or bind function, it only applies to static elements. If you want to bind click to anything generated dynamically you will want to use the jquery live function. I'm assuming that jqGrid creates rows

[jQuery] Re: Nested Accordion

2009-11-12 Thread Adriana
Hello Akbar, Here are two links that provide examples of nested accordions: http://adipalaz.awardspace.com/experiments/jquery/nested_accordion.html http://blog.evaria.com/wp-content/themes/blogvaria/jquery/index-multi.php Regards, Adriana

[jQuery] Re: image refresh problem due to browser cache

2009-11-12 Thread Matthew
you could try appending some sort of query string on the end of the image name? http://images.earthcam.com/ec_metros/newyork/newyork/lindys.jpg?refreshImg=[random_number]; for [random_number] try generating a random number using javascript then putting it there. I have heard that passing a query

Re: [jQuery] Re: css based on url wildcard

2009-11-12 Thread Michel Belleville
Hey Jacques, Here's how you make a regexp that looks for BlogRetrieve.aspx in a string : /BlogRetrieve.aspx/ or new RegExp('BlogRetrieve.aspx') Now here's how you check wether a string matches with a regexp : blah blah blah.match(/blah/) Here's a good site to learn about regexp (which are very

[jQuery] modal popup is not working with Update panel

2009-11-12 Thread azy
Hi , I am using jquery plugin for modal popup.in my page i am using update panel for opening the search window , this is the content page i used master page also. while clicking search button,it will trigger the updatepanel search window. i want this window should open like modal

Re: [jQuery] Re: Superfish - Auto Arrows on sub menus only?

2009-11-12 Thread Andrei Eftimie
Thanks, but I now realize my question was not terribly clear. Superfish has the autoArrows option, but that adds arrows to ALL the list items having sub list items, at any level. What I would like is to only add arrows (with Superfish's autoArrow option) to list items that happen to have a

[jQuery] Re: modal popup is not working with Update panel

2009-11-12 Thread azy
Hi This is my aspx page %@ Page Language=C# MasterPageFile=~/C2SFAMaster.master AutoEventWireup=true CodeFile=Sales_List.aspx.cs Inherits=Sales_List Title=Primary Sales % %@ Register Assembly=AjaxControlToolkit Namespace=AjaxControlToolkit TagPrefix=cc1 % asp:Content ID=Content1

[jQuery] Re: Division Blocking is not working

2009-11-12 Thread azy
hi Thanks . its working now Regards, Azeez

  1   2   >