Re: [jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-01-31 Thread Richard D. Worth
Yes, and yes. On Sun, Jan 31, 2010 at 3:41 PM, Jose jmal...@gmail.com wrote: On Fri, Jan 29, 2010 at 1:38 AM, Richard D. Worth rdwo...@gmail.com wrote: The latest version is jQuery UI Autocomplete, and it is compatible with jQuery 1.4. You can find it in jQuery UI 1.8rc1: http

Re: [jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-01-28 Thread Richard D. Worth
The latest version is jQuery UI Autocomplete, and it is compatible with jQuery 1.4. You can find it in jQuery UI 1.8rc1: http://blog.jqueryui.com/2010/01/jquery-ui-1-8rc1/ - Richard On Thu, Jan 28, 2010 at 6:44 PM, dirk.diggler mitch.ab...@gmail.com wrote: Anthony, The short answer would

[jQuery] Re: FastFlip like plugin

2010-01-25 Thread Richard
carousel - so that's what that effect is called. Thanks! I realized there was a new JQuery forum so asked this question again there: http://forum.jquery.com/topic/fast-flip-like-image-gallery It is interesting that I received an answer first in the older supposedly abandoned forum. Richard

Re: [jQuery] New Forums

2010-01-22 Thread Richard D. Worth
feedback on what features are important to you. Also, if it's a good one, with web services such as RSS, APIs, advanced search, RESTful urls, you could make your own clients, web browser/site or otherwise. - Richard

Re: [jQuery] jquery 1.4 and jqueryui tabs with ajax load

2010-01-22 Thread Richard D. Worth
See http://forum.jquery.com/topic/jquery-1-4-upgrade-issues#1473700636757 - Richard On Mon, Jan 18, 2010 at 5:59 AM, Joris D'Huys jdh...@gmail.com wrote: I've upgraded to jquery 1.4 and my tabs with ajax load no longer work. uncaught exception: jQuery UI Tabs: Mismatching fragment

[jQuery] FastFlip like plugin

2010-01-20 Thread Richard
Hello, do you know of a JQuery plugin that supports rapidly skimming through an image set like Google's FastFlip? For demo see http://fastflip.googlelabs.com/ Thanks, Richard (sorry, I accidentally posted this question to JQuery-UI)

[jQuery] Re: Select all items in list on form submit

2010-01-15 Thread Richard McKenna
, Richard On Jan 14, 9:27 pm, pedalpete p...@hearwhere.com wrote: Can you give a bit more detail? Is the submit not firing? or the .each? I always like to give my selectors an element+class/id, apparently it is more efficient, and I have noticed that some browses (it seems only sometimes

[jQuery] Re: Select all items in list on form submit

2010-01-15 Thread Richard McKenna
So here's the full example. What it should do is select all the items that have been moved to the right hand side, then submit the form. http://67.199.29.196/selecttest.cfm On Jan 14, 9:27 pm, pedalpete p...@hearwhere.com wrote: Can you give a bit more detail? Is the submit not firing? or

[jQuery] Re: Select all items in list on form submit

2010-01-15 Thread Richard McKenna
of the submit instead of the submit event.  Just make sure to return false so the submit doesn't go off. On Fri, Jan 15, 2010 at 5:12 AM, Richard McKenna richardofmcke...@googlemail.com wrote: So here's the full example. What it should do is select all the items that have been moved

[jQuery] Select all items in list on form submit

2010-01-14 Thread Richard McKenna
(selected, selected); }); }); It works perfectly in IE8, FF, safari and chrome but not IE7 6 Does anyone have any idea why or can anyone suggest alternative code. Thanks, Richard

[jQuery] Validation Plugin

2010-01-10 Thread Richard Beacroft
People enter an address to lookup on a google map, this makes an asynchronous call and will either return a lat/longitude or not. if not, i want to display an error to the user that an address could not be found. How do I go about this? I've not managed to get it working using the remote

Re: [jQuery] jquery.stylish-select.js - problem in Internet Explorer

2010-01-10 Thread Richard D. Worth
The plugin could be updated to use fireEvent in IE to prevent this issue. I'm still working on whether it makes sense (and how) to fix this in jQuery core's .trigger. See http://groups.google.com/group/jquery-dev/browse_thread/thread/b373713680e58be7 - Richard On Sun, Jan 10, 2010 at 1:56 PM, Yvan

[jQuery] XPath for Attribute Selection Criteria

2010-01-06 Thread Richard Collette
The jQuery documentation states that it uses a combination of both CSS and XPath selectors. Does that mean that I should be able to select attributes using the syntax: [attName=Val1 or attName=val2] since XPath criteria allow OR's like this? If not, exactly what parts of XPath are supported?

[jQuery] (autocoplete) problem with fast typers:)

2010-01-05 Thread Richard KLINDA
into the search input field, he has to wait for the suggestions to show up, only after this he can press enter to get the results. Is there a workaround for that? Thanks, Richard

Re: [jQuery] Dialog bug

2010-01-01 Thread Richard D. Worth
/Dialog#event-dragStart http://docs.jquery.com/UI/Dialog#event-dragStop - Richard On Fri, Jan 1, 2010 at 6:20 AM, Yuriy Pobezhymov yuradoc.commerc...@gmail.com wrote: Hello. I have iframe (100% width and height) and jQueryUI dialog on the page. I don't know why, but when I move or resize

Re: [jQuery] jquery customised easing

2009-12-30 Thread Richard D. Worth
This can be achieved by using the easing plugin http://plugins.jquery.com/project/Easing which is included in the jQuery UI Effects Core. See here for a demo: http://jquery-ui.googlecode.com/svn/trunk/demos/effect/easing.html I think the one you're looking for is 'easeOutBack' - Richard

Re: [jQuery] jquery customised easing

2009-12-30 Thread Richard D. Worth
The easing plug-in doesn't care what property is being animated: $('#side').animate({backgroundPosition: 71px 9px}, 500, 'easeOutBack'); - Richard On Wed, Dec 30, 2009 at 9:50 AM, t1mmie t1m...@hotmail.com wrote: Hey Richard, thanks for your reply!! Yeah I was aware of the easing plug

Re: [jQuery] Re: how to access elements with index in for-loop

2009-12-23 Thread Richard D. Worth
What about using .each? http://docs.jquery.com/Core/each#callback - Richard On Wed, Dec 23, 2009 at 8:34 PM, Eric Zhong ericiszhongwen...@gmail.comwrote: 2009/12/24 Eric Zhong ericiszhongwen...@gmail.com when i use for-loop to access elements with array index or get() method it doesn't

Re: [jQuery] Re: how to access elements with index in for-loop

2009-12-23 Thread Richard D. Worth
The index is passed as the first argument to the callback function you provide to .each. - Richard On Wed, Dec 23, 2009 at 8:49 PM, Eric Zhong ericiszhongwen...@gmail.comwrote: 2009/12/24 Richard D. Worth rdwo...@gmail.com What about using .each? http://docs.jquery.com/Core/each#callback

Re: [jQuery] Re: dialog box

2009-12-22 Thread Richard D. Worth
); } Shouldn´t it get just: fGbDelete(gbid,link)? Or why is it triggering twice? Because you're animating two elements, so they each trigger the callback at the end of the animation. See http://jsbin.com/uzite3 source: http://jsbin.com/uzite3/edit - Richard

Re: [jQuery] Dialog only opening the once

2009-12-22 Thread Richard D. Worth
See http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/ Also, if you should have any more questions, note there's a separate list for jQuery UI: http://groups.google.com/group/jquery-ui - Richard On Tue, Dec 22, 2009 at 5:22 AM, Sir Rawlins robert.rawl

Re: [jQuery] UI dialog, How to center buttons

2009-12-22 Thread Richard D. Worth
.ui-dialog .ui-dialog-buttonpane { text-align: center; } .ui-dialog .ui-dialog-buttonpane button { float: none; } - Richard On Tue, Dec 22, 2009 at 1:44 PM, RobGMiller robgmil...@gmail.com wrote: What is the easiest way to manage button location at runtime?

Re: [jQuery] Re: jQuery in e107 plugin?

2009-12-21 Thread Richard D. Worth
Sure, just include jQuery UI before including the second jQuery, or after the noConflict call. - Richard On Sun, Dec 20, 2009 at 7:11 AM, Harsányi János hajani...@gmail.com wrote: This sounds great :) One more problem: Can I extend the first jQuery with jQuery UI? On Dec 19, 9:31 pm

Re: [jQuery] dialog box

2009-12-21 Thread Richard D. Worth
with, and eventually either button click. Rather than those callback functions returning a value, they carry out what your function would do depending on which button is clicked. - Richard On Mon, Dec 21, 2009 at 10:00 AM, Jojje jojjsus_chr...@hotmail.com wrote: Hi! I´m trying to make a dialog box

Re: [jQuery] To make an Id using a variable

2009-12-19 Thread Richard D. Worth
$(#utype + t) - Richard On Sat, Dec 19, 2009 at 3:18 PM, Andre Polykanine an...@oire.org wrote: Hello everyone, What I'm trying to do is to make a radio button checked depending on a variable gotten via PHP. Here's the code: // What radio button was checked previously? var t=?=$f[Type

Re: [jQuery] jQuery in e107 plugin?

2009-12-19 Thread Richard D. Worth
After the second one is loaded you can get back to the first one using noConflict: http://docs.jquery.com/Core/jQuery.noConflict - Richard On Fri, Dec 18, 2009 at 11:13 AM, Harsányi János hajani...@gmail.comwrote: I have two e107 plug ins which are using jQuery. The first one uses jQuery UI

Re: Re[2]: [jQuery] To make an Id using a variable

2009-12-19 Thread Richard D. Worth
var lang = 'fra'; $('#lang option[value=' + lang + ']').attr('selected', 'selected'); or var lang = 'deu'; $('#lang').val(lang); - Richard On Sat, Dec 19, 2009 at 3:35 PM, Andre Polykanine an...@oire.org wrote: Hello Richard and all, Yepp, it works) and if I want to do the same

Re: Re[2]: [jQuery] Re: What is the event when a user presses the enter key anywhere on the page?

2009-12-19 Thread Richard D. Worth
Is it, thanks to normalization done by jQuery, as Mike mentioned. - Richard On Sat, Dec 19, 2009 at 4:18 PM, Andre Polykanine an...@oire.org wrote: Hello Richard and all, Is that a multi-browser solution? Thanks a lot! -- With best regards from Ukraine, Andre Skype: Francophile; WlmMSN

Re: Re[4]: [jQuery] Re: What is the event when a user presses the enter key anywhere on the page?

2009-12-19 Thread Richard D. Worth
Please share a live sample page showing the issue. If you don't have a place to host one, use jsbin.com: http://jsbin.com/ - Richard On Sat, Dec 19, 2009 at 5:02 PM, Andre Polykanine an...@oire.org wrote: Hello Richard and all, For some reason it doesn't work (IE8). Might it be due

Re: [jQuery] Help with draggable / droppable

2009-12-18 Thread Richard D. Worth
Worked ok for me: http://jsbin.com/anure source: http://jsbin.com/anure/edit If you need any more help, note that there's a separate list for jQuery UI: http://groups.google.com/group/jquery-ui - Richard On Thu, Dec 17, 2009 at 1:14 PM, Alex Beston alex.bes...@gmail.com wrote: Hi

Re: [jQuery] Help with droppable

2009-12-18 Thread Richard D. Worth
Answered here http://groups.google.com/group/jquery-en/browse_thread/thread/6baa555a340b3ec4 - Richard On Fri, Dec 18, 2009 at 5:28 AM, Alex Beston alex.bes...@gmail.com wrote: Hi there, I'm trying to create some words which can be dragged and dropped into a container (called droppable

Re: [jQuery] Jquery using Modal Window with user input

2009-12-18 Thread Richard D. Worth
You can use the jQuery UI Dialog with the modal option set to true. Here's an example: http://jqueryui.com/demos/dialog/#modal-form - Richard On Fri, Dec 18, 2009 at 10:12 PM, tinypond lawre...@tinypond.com wrote: What I am trying to do is the following: I have a webpage with some input

Re: [jQuery] prompt before closing dialog

2009-12-17 Thread Richard D. Worth
- Richard On Thu, Dec 17, 2009 at 5:10 AM, Obi1 gurreiro_fa...@yahoo.com.br wrote: Hi, i'm having some trouble because i'm using a dialog witch has a form in it where someone can change info about their hotel. this dialog also has 2 buttons one to close and the other to save changes. what i'm trying

Re: [jQuery] Re: Styling dynamic content

2009-12-17 Thread Richard D. Worth
Works for me: http://jsbin.com/egoto/ - Richard On Wed, Dec 16, 2009 at 8:44 PM, Jason Kaczmarsky jkaczmar...@yahoo.comwrote: Yes, I am sure they are the correct class and are showing up properly. Button press: //loop $(#files).append('div class=file'+Files[i]+'/div'); //end loop

Re: [jQuery] traversal question for IE6 and IE7

2009-12-17 Thread Richard D. Worth
with. - Richard On Wed, Dec 16, 2009 at 6:39 PM, cewing cew...@u.washington.edu wrote: Hi all, I've got a bit of HTML with the following structure: div id=foo dl dt / div id=bar dt / dd / dt / dd id=baz/ /div /dl /div in IE6 and IE7 $(dd#baz).parents

Re: [jQuery] Re: prompt before closing dialog

2009-12-17 Thread Richard D. Worth
Here's an example of using a confirm inside beforeclose Demo: http://jsbin.com/urosa Source: http://jsbin.com/urosa/edit - Richard On Thu, Dec 17, 2009 at 5:30 AM, Obi1 gurreiro_fa...@yahoo.com.br wrote: this doesn't seem to work, i mean the prompt appears but only after dialog is closed

Re: [jQuery] Re: prompt before closing dialog

2009-12-17 Thread Richard D. Worth
to decide whether or not to call .dialog('close') manually. But you'll use a flag to prevent an infinite loop. - Richard On Thu, Dec 17, 2009 at 6:44 AM, Obi1 gurreiro_fa...@yahoo.com.br wrote: it doesn't work for me as i'm using jConfirm not javascript confirm but it will have to do while i don't

Re: [jQuery] Re: What is the event when a user presses the enter key anywhere on the page?

2009-12-17 Thread Richard D. Worth
$(document).keypress(function(e) { if(e.ctrlKey e.which == 13) { $('#myForm').submit(); } }); or $('#myForm').keypress(function(e) { if(e.ctrlKey e.which == 13) { $(this).submit(); } }); - Richard On Thu, Dec 17, 2009 at 7:40 PM, Andre Polykanine an...@oire.org wrote: Hello

Re: [jQuery] Re: Styling dynamic content

2009-12-17 Thread Richard D. Worth
See http://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_event_work_on_a_new_element_I.27ve_created.3F - Richard On Fri, Dec 18, 2009 at 12:23 AM, Jason Kaczmarsky jkaczmar...@yahoo.comwrote: Ahah, this was the problem I thought i was having. I can't make jQuery work on dynamic

[jQuery] Re: running an onload code snippet only once

2009-12-16 Thread Richard KLINDA
, Richard KLINDA rkli...@gmail.com wrote: Hello, what is a good way to run a code snippet after the page is loaded, but only just one time? I use the ready event $(function(){...}); most of the time, but sometimes it fires multiple times (when the DOM changes I think), and rarely

Re: [jQuery] Call from Javascript to jQuery javascript function

2009-12-16 Thread Richard D. Worth
(); }); // will be defined immediately function callit() { alert(Hello world!); } /script - Richard

Re: [jQuery] Viewport Scroll

2009-12-16 Thread Richard D. Worth
See http://flesler.blogspot.com/2007/10/jqueryscrollto.html - Richard On Tue, Dec 15, 2009 at 2:42 PM, Wroathe reallyto...@gmail.com wrote: Hi there! I'm using jQuery to load in some content from a separate page and I was wondering if there was a way to make the browser viewport scroll

[jQuery] running an onload code snippet only once

2009-12-15 Thread Richard KLINDA
pageload. What is a good way to achieve that? Now I do window.onload = function() {...}, but I hope there is something better. Thanks in advance... -- Richard

Re: [jQuery] beginner help with using custom jquery ui objects.

2009-12-14 Thread Richard D. Worth
We'd love to help answer these questions over here: http://groups.google.com/group/jquery-ui Thanks. - Richard On Mon, Dec 14, 2009 at 7:02 PM, David_ca david.calling...@gmail.comwrote: Hi, With help from this tutorial http://bililite.com/blog/understanding-jquery-ui-widgets-a-tutorial

Re: [jQuery] jquery numeric spinner and jqueryui tabs

2009-12-10 Thread Richard D. Worth
On Wed, Dec 9, 2009 at 4:52 PM, Jason Meckley jasonmeck...@gmail.comwrote: it appears that calling load programatically (rather than clicking on the tab manually) does not call the show function. In that case, you might try .triggerHandler('click') - Richard

Re: [jQuery] Problem with images loaded dynamically

2009-12-10 Thread Richard D. Worth
My guess would be to check and make sure the server is configured to send the appropriate mime-type for the file, based on the extension. - Richard On Mon, Dec 7, 2009 at 2:35 PM, jlee patrykk...@gmail.com wrote: Hi, I'm stuck here - I'm trying to load images dynamically on my website

Re: [jQuery] selectedClass option in jQuery UI 1.7.2

2009-12-10 Thread Richard D. Worth
at an appropriate time. - Richard On Mon, Dec 7, 2009 at 1:26 AM, Donny Kurnia donnykur...@gmail.com wrote: It's have been a long time since I use jQuery UI tabs in my project. My client want dragable function, so I use this opportunity to upgrade all jquery ui. However, I notice one page got

Re: [jQuery] selectedClass option in jQuery UI 1.7.2

2009-12-10 Thread Richard D. Worth
And if you have any future questions about jQuery UI, note there's a mailing list for it: http://groups.google.com/group/jquery-ui Thanks. - Richard On Thu, Dec 10, 2009 at 7:07 AM, Richard D. Worth rdwo...@gmail.com wrote: This decision was made as part of our creation and adoption

Re: [jQuery] Conflict at function data() of jquery 1.3.2 library and ui.core.js

2009-12-10 Thread Richard D. Worth
What exactly is the problem? - Richard On Thu, Dec 10, 2009 at 2:58 AM, cogitovn cogit...@gmail.com wrote: Dear all, I use both libraries: jQuery 1.3.2 and ui.core, ui.slider. Besides, plugin (jquery) tool.tooltip (http://flowplayer.org/tools/ tooltip.html http://flowplayer.org/tools

Re: [jQuery] Re: jquery numeric spinner and jqueryui tabs

2009-12-10 Thread Richard D. Worth
You may want to bring this up on the jQuery UI list http://groups.google.com/group/jquery-ui A live sample page would help. If you don't have a place to host one, use jsbin.com:: http://jsbin.com/ - Richard On Thu, Dec 10, 2009 at 10:15 AM, Jason Meckley jasonmeck...@gmail.comwrote: Richard

Re: [jQuery] AND OR Expression

2009-12-10 Thread Richard D. Worth
Convert with parseInt and then compare int to int instead of strings https://developer.mozilla.org/En/Core_JavaScript_1.5_Reference/Global_Functions/ParseInt - Richard On Thu, Dec 10, 2009 at 12:26 PM, evanbu...@gmail.com evanbu...@gmail.comwrote: I having trouble with this line

Re: [jQuery] Re: AND OR Expression

2009-12-10 Thread Richard D. Worth
var tdval = parseInt(td4th.text(), 10); //base 10 if ( (tdval 4) || (tdval 2 activeCEO == 'Yes') ) - Richard On Thu, Dec 10, 2009 at 3:26 PM, evanbu...@gmail.com evanbu...@gmail.comwrote: If I knew what I was doing, why would I be asking for help? I already know what doesn't work. That's

Re: [jQuery] Re: .trigger and .triggerHandler methods

2009-12-09 Thread Richard D. Worth
Could you share a live sample page? If you don't have a place to host one, jsbin.com: http://jsbin.com/ That will allows us to see what you're seeing quite easily. - Richard On Wed, Dec 9, 2009 at 9:23 AM, T.J. theimmortal...@gmail.com wrote: For further clarification, the way I'm calling

Re: [jQuery] Re: .trigger and .triggerHandler methods

2009-12-09 Thread Richard D. Worth
You're calling the function before binding the click handler. Change checkState(#nbl=3); $(#test).click(function(){ alert(You clicked #test!); }); to $(#test).click(function(){ alert(You clicked #test!); }); checkState(#nbl=3); - Richard On Wed, Dec 9, 2009 at 9:56 AM

Re: [jQuery] Re: .trigger and .triggerHandler methods

2009-12-09 Thread Richard D. Worth
I'm glad it helped! - Richard On Wed, Dec 9, 2009 at 10:05 AM, T.J. theimmortal...@gmail.com wrote: You know what, I just think I fixed my own problem. The function call is executed before I bind the click event to the button, which means that it has no event to trigger yet. Two days I've

Re: [jQuery] How do I write an express to access all radio button elements?

2009-12-09 Thread Richard D. Worth
$(':radio') http://docs.jquery.com/Selectors/radio - Richard On Wed, Dec 9, 2009 at 10:41 AM, Dhruva Sagar dhruva.sa...@gmail.comwrote: $('input[type=radio]') Thanks Regards, Dhruva Sagar. On Wed, Dec 9, 2009 at 9:03 PM, laredotorn...@zipmail.com laredotorn...@zipmail.com wrote

[jQuery] Not working in Firefox (mac) or IE

2009-12-09 Thread Richard McKenna
regards, Richard

Re: [jQuery] ui-accordion page is not working in Firefox

2009-12-08 Thread Richard D. Worth
Any chance you've fixed it since you sent your email? Caus it looks fine to me in Firefox 3.5.5. If it's still giving you problems, perhaps clear your cache, disable all add-ons (including Firebug), inspect with Firebug (after you've ruled out all add-ons and re-enabled it). - Richard On Tue

Re: [jQuery] Re: Remove css attribute from the DOM element

2009-12-07 Thread Richard D. Worth
').removeClass('myCSSClass'); Hi Evan, I'd prefer that approach too. But the problem is this css attribute value is stored in the database. I can not find the doc on how to add an extra css attribute to a css class. See http://flesler.blogspot.com/2007/11/jqueryrule.html - Richard

[jQuery] Spellchecker plugin

2009-12-04 Thread Richard W
Hi jQuery users I have pretty much finished my simple spellchecker plugin (barring additional functionality) and am wanting some testing/feedback/ criticism/bug reports etc from the jQuery community. My initial inspiration for the plugin came from a work responsibility: to build a spellchecker

Re: [jQuery] Is possible to update two div with the same load?

2009-12-04 Thread Richard D. Worth
I think you're better of with $.get and then doing the finding and loading into both divs yourself. - Richard On Fri, Dec 4, 2009 at 5:21 AM, NMarcu marcu.nico...@gmail.com wrote: Hi, I need to update a div that contain a table, and another one that contain a drop down list, that is build

Re: [jQuery] javascript variable scope

2009-12-04 Thread Richard D. Worth
Cool, huh? This is one of the beauties and real powers of the JavaScript language. It's called a closure: https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Working_with_Closures - Richard On Fri, Dec 4, 2009 at 6:46 PM, cmonahan cmona...@yahoo.com wrote: This surprised me. I made

[jQuery] blockUI history removal

2009-12-02 Thread Stephen Richard
In jquery.blockUI.js (most up to date version says it's 2.27 24- SEP-2009) the line $(data.el).removeData('blockUI.history'); (line 391, in the reset function) looks a bit suspect to me: in the install function the data object is added to the _blocked_ element, but data.el is the _message_

Re: [jQuery] About selectable

2009-12-01 Thread Richard D. Worth
This isn't a built-in feature. I have an idea or two about how you might do this. What's the use case? Oh, and please start a new thread on the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Tue, Dec 1, 2009 at 4:57 AM, Catta cat...@hotmail.com wrote: Hi Im

Re: [jQuery] Cookie in JQuery. Create, Update and Get

2009-12-01 Thread Richard D. Worth
See http://plugins.jquery.com/project/cookie - Richard On Tue, Dec 1, 2009 at 9:55 PM, shapper mdmo...@gmail.com wrote: Hello, I need to add a cookie with value true or false. If the cookie does not exist then created. Otherwise change its value to the new value. Later I need to get

Re: [jQuery] looping through elements with jQuery based on class

2009-12-01 Thread Richard D. Worth
succinctly: $('div.star-rating.rater-0.auto-submit-star.star-rating-applied.star-rating-live').addClass('star-rating-on'); - Richard

Re: [jQuery] Re: looping through elements with jQuery based on class

2009-12-01 Thread Richard D. Worth
See http://docs.jquery.com/Traversing/slice#startend - Richard On Tue, Dec 1, 2009 at 11:07 PM, led l.r@sapo.pt wrote: Thank you Richard. But what about to to use the example with only the first 3 '$ ('div.star-rating.rater-0.auto-submit-star.star-rating-applied.star- rating-live

Re: [jQuery] slideToggle Functions

2009-11-30 Thread Richard D. Worth
'); } }); }); - Richard On Mon, Nov 30, 2009 at 1:39 PM, Gavin failed...@gmail.com wrote: I have a simple bit of jQuery that I just can't get working. $('#my-element').click(function(){ $('#list-element').slideToggle(function(){ $('#status

Re: [jQuery] Re: Cancel Selected An Item of Selectable

2009-11-26 Thread Richard D. Worth
This is not currently supported. You can track progress here: http://dev.jqueryui.com/ticket/4205 - Richard On Wed, Nov 25, 2009 at 9:59 PM, He Jun-Jie junjie...@hp.com wrote: Thank you for replying my question. My situation is very easy I just want to ask whether the jQuery ui selectable

Re: [jQuery] jQuery Slider - disable keyboard control

2009-11-26 Thread Richard D. Worth
I don't recommend it, as it's there for accessibility. However, if you must, add your own handle manually with no href: div id=slider a class=ui-slider-handle/a /div If you have any more questions about it, please ask on the jQuery UI list: http://groups.google.com/group/jquery-ui - Richard

Re: [jQuery] Extract tag element and closing tag

2009-11-25 Thread Richard D. Worth
See http://github.com/brandonaaron/jquery-outerhtml Here's the spoiler: alert( $('div/div').append( $(this).clone() ).html() ); - Richard On Wed, Nov 25, 2009 at 8:14 AM, coldwired co...@coolwired.net wrote: Hi, I've got the following piece of code that extracts the html code contained

Re: [jQuery] Problem with slider if else. Please help.

2009-11-25 Thread Richard D. Worth
this: $200 / 1 page $350 / 2 pages $500 / 3 pages Sounds like you want $50 + (number of pages * $150). No? - Richard

Re: [jQuery] is there a good way to open show an iframe in a jQuery dialog window?

2009-11-24 Thread Richard D. Worth
If by jquery dialog window you mean jQuery UI Dialog, please ask here: http://groups.google.com/group/jquery-ui If you mean another plugin, please specify which one. Thanks. - Richard On Tue, Nov 24, 2009 at 7:32 PM, thisisvlad nab...@thisisvlad.com wrote: i want to use a jquery dialog

Re: [jQuery] Cancel Selected An Item of Selectable

2009-11-24 Thread Richard D. Worth
We'd be happy to help you over here: http://groups.google.com/group/jquery-ui http://groups.google.com/group/jquery-uiPlease post a live sample page showing the problem. If you don't have a way to host one, please create one on jsbin.com: http://jsbin.com/ - Richard On Tue, Nov 24, 2009 at 12

Re: [jQuery] Re: is this legal acording to the jQuery licence

2009-11-23 Thread Richard D. Worth
See http://groups.google.com/group/jquery-en/browse_thread/thread/2ab7ba203fc3267f - Richard On Mon, Nov 23, 2009 at 5:52 AM, Dimitar dimitar.vel...@gmail.com wrote: Can anyone answer on this? On Nov 19, 4:11 pm, Dimitar Velkov dimitar.vel...@gmail.com wrote: Hello, I need to use jQuery

Re: [jQuery] dialog partial content not visible in IE7

2009-11-23 Thread Richard D. Worth
Please post this question to the jQuery UI list: http://groups.google.com/group/jquery-ui http://groups.google.com/group/jquery-uiAlso, it would help if you could reduce this to a minimal test page that reproduces the issue. Thanks. - Richard On Sat, Nov 21, 2009 at 9:23 PM, Bill wcma

Re: [jQuery] JQuery Dialog, bug when page loading?

2009-11-19 Thread Richard D. Worth
Try this http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-content - Richard On Thu, Nov 19, 2009 at 2:48 AM, Nicu Marcu marcu.nico...@gmail.com wrote: Very good solution, working OK. I try to do something like this on tabs, but tabs are hidden permanently. On page

Re: [jQuery] JQuery Dialog, bug when page loading?

2009-11-18 Thread Richard D. Worth
Hide the dialog in the html by putting it in a hidden container, or putting style=display:none; on the element itself. When you call .dialog('open') that attribute will be removed. - Richard On Wed, Nov 18, 2009 at 4:20 AM, NMarcu marcu.nico...@gmail.com wrote: Hello all, I have

Re: [jQuery] Selectors, Escaping special Character in JQuery 1.3.2 not working as expected.

2009-11-17 Thread Richard D. Worth
Works for me: http://jsbin.com/izoco source: http://jsbin.com/izoco/edit - Richard On Tue, Nov 17, 2009 at 4:01 AM, phil pkra...@gmail.com wrote: I just recently attempted to upgrade from jQuery 1.2.6 to jQuery 1.3.2 and it broke several web pages where my selectors are escaping special

Re: [jQuery] How to implement an Excel-like UI?

2009-11-17 Thread Richard D. Worth
Start here: http://jqueryplugins.weebly.com/jquerysheet.html - Richard On Mon, Nov 16, 2009 at 8:27 PM, sayeo87 yeosuan...@gmail.com wrote: Hi, I'm new to jQuery, and plan on doing some tutorials to get more familiar with it. But my ultimate goal is to make a UI that has somewhat similar

Re: [jQuery] Jquery Boston Conference

2009-11-17 Thread Richard D. Worth
. - Richard On Mon, Nov 16, 2009 at 7:41 AM, ray raneeh...@gmail.com wrote: I've searched online for any posting related to a Jquery Conference in 2010. Does anyone have an idea if there will be another hosted and if so will it be in Boston; 2010?

Re: [jQuery] JQuery - how to fade and loop background style

2009-11-17 Thread Richard D. Worth
jQuery UI effects core adds color animation and class transitions: http://jqueryui.com/demos/animate/ http://docs.jquery.com/UI/Effects/animate You can download it here: http://jqueryui.com/download just check 'Effects Core' - Richard On Tue, Nov 17, 2009 at 11:43 AM, Dan dan.loff

[jQuery] Trying to update div tag in jQuery DOM window

2009-11-17 Thread Richard
I have a PHP form in a jQuery DOM window (just like jQuery Dialog), and when the form is sent I want to change the HTML in the div in the DOM window. The problem is that the div is not changing in the DOM window. When I relaunch the DOM window, then I can see the change. // When the form is

Re: [jQuery] Jquery suitable for advanced webapplication

2009-11-11 Thread Richard D. Worth
In addition to jQuery, you may also want to look at jQuery UI, which is jQuery's official suite of interactions, widgets, effects, and theming for creating rich internet applications: http://jqueryui.com/ http://jqueryui.com/- Richard On Wed, Nov 11, 2009 at 8:39 AM, Wiemer dvotion.ad

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

2009-11-11 Thread Richard D. Worth
you're performing a call that leads to an error in an event that continuously gets triggered, such as a timer or a mousemove. All guesses. Hard to do more than that without seeing some code. Please post a live page, or if you can't, reproduce on jsbin.com: http://jsbin.com/ - Richard On Wed, Nov 11

Re: [jQuery] help with milkbox conflict

2009-11-09 Thread Richard D. Worth
See http://docs.jquery.com/Using_jQuery_with_Other_Libraries http://docs.jquery.com/Using_jQuery_with_Other_Librariesand http://docs.jquery.com/Core/jQuery.noConflict http://docs.jquery.com/Core/jQuery.noConflict- Richard On Mon, Nov 9, 2009 at 8:02 AM, jessicaw1974 jessicaw1...@gmail.com

Re: [jQuery] How to determine number of elements after dom manipulation ?

2009-11-08 Thread Richard Bakker
Does anyone perhaps know ? On 7 nov 2009, at 09:18, Richard Bakker wrote: I am generating elements (img's) based on data from an xml file. Once that is done, I want to determine the number of icons that were generated. i do a: alert($('img').size()) result: 0, which isn't the case how can i

Re: [jQuery] Re: Jquery UI Accordion Navigation

2009-11-07 Thread Richard D. Worth
And sorry I didn't realize we're on the wrong list. If you need any more help, please start a new thread on the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard On Sat, Nov 7, 2009 at 7:21 AM, Richard D. Worth rdwo...@gmail.com wrote: It looks like you'll have

[jQuery] How to determine number of elements after dom manipulation ?

2009-11-07 Thread Richard Bakker
I am generating elements (img's) based on data from an xml file. Once that is done, I want to determine the number of icons that were generated. i do a: alert($('img').size()) result: 0, which isn't the case how can i determine them after they have generated ?

Re: [jQuery] How to get references to added elements

2009-11-05 Thread Richard D. Worth
Use insertAfter() instead. See http://docs.jquery.com/Manipulation/insertAfter http://docs.jquery.com/Manipulation/insertAfter- Richard On Thu, Nov 5, 2009 at 5:50 PM, kheraud kher...@gmail.com wrote: Hello, Thank you to help me to discover jQuery. I have a very easy question but i walk

Re: [jQuery] Re: Slider

2009-11-04 Thread Richard D. Worth
still don't understand the relationship you're trying to set up between these three sliders, but I'll give you an example that may help. I've created two sliders, A and B, whose values are added to determine the value of C: http://jsbin.com/avagu3 source: http://jsbin.com/avagu3/edit - Richard

Re: [jQuery] Attempting to hide a div using jquery but div displays for a split second and then disappears

2009-11-04 Thread Richard D. Worth
See http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-content http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flash-of-unstyled-content- Richard On Wed, Nov 4, 2009 at 10:21 AM, Newbie hjohn...@geolearning.com wrote: I am working on an accordian side

Re: [jQuery] Create interactive song list selector

2009-11-03 Thread Richard D. Worth
You might take a look at the ListNav plugin: http://www.ihwy.com/Labs/jquery-listnav-plugin.aspx - Richard On Tue, Nov 3, 2009 at 7:37 AM, wshawn sh...@sanityllc.com wrote: We have a master list of hundred songs we can draw from in our database. I have already created a php / mysql / ajax

Re: [jQuery] Create PDF from js

2009-11-02 Thread Richard D. Worth
See http://code.google.com/p/jspdf/ - Richard On Mon, Nov 2, 2009 at 5:26 AM, m.ugues m.ug...@gmail.com wrote: Hallo all. Is there any plugin for creating custom PDF from javascript? I found this library http://www.collinssoftware.com/Pdf_Samples_1.htm but is not free. Kind regards

Re: [jQuery] Slider

2009-11-02 Thread Richard D. Worth
? - Richard On Mon, Nov 2, 2009 at 1:24 PM, Luh Hooo Zer anthonynori...@gmail.comwrote: I have 3 sliders on one page. the value combination of slider1 and slider2 dictates the position of slider3 handle. but its not smooth... for instance, slider 1 and slider2 have 30 steps, so is pretty

Re: [jQuery] class toggle navigation

2009-11-02 Thread Richard D. Worth
lia href=images/stoppino_tictacs.jpg title=02/a/li lia href=images/stoppino_tictac_base1.jpg title=03/a/li lia href=images/stoppino_tictac_base2.jpg title=04/a/li /ul /div - Richard On Mon, Nov 2, 2009 at 2:48 PM, Bernard Elsmere bernard.elsm

[jQuery] Re: Can you remove styles from a certain UI

2009-10-26 Thread Richard D. Worth
Yes. See http://www.filamentgroup.com/lab/using_multiple_jquery_ui_themes_on_a_single_page/ - Richard On Mon, Oct 26, 2009 at 6:25 PM, Luh Hooo Zer anthonynori...@gmail.comwrote: i have a jquery slider, and jquery tabs on one page i dont want the tabs to have the theme the slider does

[jQuery] Re: toggleClass with Duration

2009-10-23 Thread Richard D. Worth
UI Effects, please post to the jQuery UI list: http://groups.google.com/group/jquery-ui Thanks. - Richard

[jQuery] Re: Synthax problem

2009-10-23 Thread Richard D. Worth
requests may temporarily lock the browser, disabling any actions while the request is active. Because JavaScript is single-threaded, you have to choose between locking the browser (synchronous) or having your result come through a callback function, like success (asynchronous). - Richard On Thu, Oct 22

[jQuery] Re: jquery.com plugin directory

2009-10-23 Thread Richard D. Worth
by end of year. ... - Richard On Thu, Oct 22, 2009 at 7:49 PM, JMan jbeck...@gmail.com wrote: Is it just me or does anyone else have the hardest time finding plugins on the jquery.com site? jquery is an awesome library and I do not plan on using anything else anytime soon but the manner

  1   2   3   4   5   6   7   8   9   10   >