[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-05 Thread Mika Tuupola
On Apr 4, 2008, at 6:48 PM, [EMAIL PROTECTED] wrote: Hi all, I am building a really simple jEditable (plugin) implementation with the latest jQuery SVN. Trouble is I can't get it to work in Firefox 2.0.0.13. In this example in Firefox, no cal is being made to the php file (php/ tabsave.php).

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-05 Thread Erik Beeson
(and is jEditable the best edit-in-place plugin for jQuery anyway?) Yes.

[jQuery] Can you poll a database with jQuery or do I just use plain ajax?

2008-04-05 Thread jmDesktop
Hi, new to jQuery and really any of the javascript libraries. I have read about many of them and seen the examples and am settling on jQuery or Mootools. If I want to poll a database every x seconds and view new entries by users on a site (assuming I have many users updating, etc.), is that an

[jQuery] Re: cluetip on Safari Mac throws error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7

2008-04-05 Thread Krittick
I managed to find the issue. I was serving the page as valid application/xhtml+xml, which Safari mac apparently didn't like. Switching to the less-valid text/html fixed the issue, albeit with a warning upon validation. On Mar 31, 9:08 am, Karl Swedberg [EMAIL PROTECTED] wrote: When I open your

[jQuery] change in the slide panel movement

2008-04-05 Thread joe
Dear all, I am working on slide panel as in http://www.webdesignerwall.com/demo/jquery/simple-slide-panel.html what i need to do is a reversed movement, instead of on clicking the div is pulled down, on clicking the div is pulled up Please advice me what do i need to do. Thanks in advance.

[jQuery] Re: Hover flickers when mousing over select box

2008-04-05 Thread Chris
Karl, Thanks so much. You have helped me solve the issue. My implementation ended up looking more like this, but it works: $('.pos_fix').hover( function() { $(this).children('.IL_hover').fadeIn(fast); }, function(event) {

[jQuery] Re: New Plugin to help optimise usage of jQuery plugins - contributions welcome

2008-04-05 Thread Nicolas R
Ariel, thanks for the feedback. I included the debugging option so that developers can see how long it takes for some plugins to load, so that they could optimise it accordingly (fewer selectors for each plugin, no/less calls to getNeeded() function). It seems however that 'alternate stylesheet'

[jQuery] How can I check what button was clicked

2008-04-05 Thread keyser_soze
Hi, For example I have form method=post input type=submit name=edit_1 id=edit_1 value=Edit_1 br / input type=submit name=edit_2 id=edit_2 value=Edit_2 br / input type=submit name=edit_3 id=edit_3 value=Edit_3 br / input type=submit name=edit_4 id=edit_4 value=Edit_4 br /

[jQuery] Re: cluetip on Safari Mac throws error: NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7

2008-04-05 Thread Karl Swedberg
Thanks for sharing your discovery! Glad to hear that you managed to resolve the issue, even though the solution required a compromise. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 5, 2008, at 2:15 AM, Krittick wrote: I managed to find the

[jQuery] Re: get next item of sibling relationship unknown (was: first child of type form control)

2008-04-05 Thread Andiih
Caveat- I'm a newbie, and I'm just guessing...but I thought I would try to answer some questions rather than just asking them... Does it fail when there is more than one ? Try an .eq(0) i.e. $('.scrollTo').eq(0).findNext(:input).focus(); On Apr 4, 9:50 am, dug [EMAIL PROTECTED] wrote:

[jQuery] cycle plugin with image Array

2008-04-05 Thread tetris
hello, is it possible to configure cycle plugin to retrieve image files from an array instead of a li config? what i would like to achieve is: when you do have many images per list download times can get long so i was thinking that a dynamic download could help.. but im not sure of it.

[jQuery] Re: ui.tabs - setting the title attribute of newly added tab

2008-04-05 Thread Klaus Hartl
Try: $('#example').tabs({ add: function(ui) { ui.tab.title = foo; } }); --Klaus On Apr 5, 1:17 am, rolfsf [EMAIL PROTECTED] wrote: How do I set the title attribute of the anchor element of a newly created tab? In one case, I'm generating the tab label (tab name) and

[jQuery] Re: jQuery History Plugin

2008-04-05 Thread Klaus Hartl
You'll probably have to maintain the state on your own. I'm currently rewriting the History plugin, so that you can do: $.history('add', 'state_name', function { // handle, e.g. restore state... }); --Klaus On Apr 5, 1:12 am, sbyrne [EMAIL PROTECTED] wrote: I'm with you regarding the

[jQuery] Re: jquery tabs bind to tabselect

2008-04-05 Thread Klaus Hartl
Try (with latest version from SVN): var $tabs = $('.ui-tabs-nav').tabs({ select: function(ui) { alert( $('a', $tabs).index(ui.tab) ); } }); Maybe it is a good idea to attach the index to the ui object, so that you could do: alert(ui.index); or something similiar... this

[jQuery] Re: cycle plugin with image Array

2008-04-05 Thread Mike Alsup
is it possible to configure cycle plugin to retrieve image files from an array instead of a li config? what i would like to achieve is: when you do have many images per list download times can get long so i was thinking that a dynamic download could help.. but im not sure of it. There

[jQuery] click on a link and have a table appear - can't get it to work

2008-04-05 Thread ktpmm5
I'm a newbie to jquery, so no flames please...I have a basic 3 column web page - nav, center and left. That works great. My left column is navigation. When I click on a link on the left nav pane, I want a basic table to appear in the center and right panes - not even getting anything from a

[jQuery] Re: click on a link and have a table appear - can't get it to work

2008-04-05 Thread Theodore Ni
Shouldn't it be li id=btn-slideSchedule/li On Sat, Apr 5, 2008 at 9:09 AM, ktpmm5 [EMAIL PROTECTED] wrote: I'm a newbie to jquery, so no flames please...I have a basic 3 column web page - nav, center and left. That works great. My left column is navigation. When I click on a link on

[jQuery] Re: click on a link and have a table appear - can't get it to work

2008-04-05 Thread Rick Faircloth
Let's make a few adjustments to your code and see what happens... First (and something I used to forget when I first started), do you have your jquery referenced in the head section of your document? script src=jquery-1.2.2.pack.js type=text/javascript/script Now, the jquery... try this:

[jQuery] Sticky (scrolling) element

2008-04-05 Thread Thomas Jaggi
Hi there I have a scrolling box here: http://backflip.info/test/ Everything works fine except for two things: - I'd like the box to start scrolling not until arriving at the top of the page. Now there is always the initial margin. Is this possible with the ui.slider I'm using? - When the box is

[jQuery] Re: How can I check what button was clicked

2008-04-05 Thread Ryura
Hola, You'd want to do something like this, probably: $(input).click(function() { var foo = $(this).attr(name); //do something }); Alternatively you could just set a click event to each one. $(#edit_1).click(function() { //do something... }); $(#edit_2).click(function() { //do

[jQuery] Re: random tab and simple content switching

2008-04-05 Thread Tim Marshall
Hi Sperks I'm a bit new at JQuery and have been following what you have done here. I'm trying though to add a third id in and can't figure out how to get it to work with an additional set of div's or more for that matter. Can you help? On Feb 22, 2:33 pm, sperks [EMAIL PROTECTED] wrote: I

[jQuery] ui real world demo modification

2008-04-05 Thread Armand Datema
http://dev.jquery.com/view/trunk/ui/demos/real-world/layout/ Anyone made a modification to this one so that the positions after drag and drop can be saved in cookie

[jQuery] Re: Autocomplete and JSON

2008-04-05 Thread dineshv
Many thanks Shawn and Jorn - the use of the MAX parameter makes sense now. Onto, Ajax and JSON. On the Autocomplete site there is an example as follows: EXAMPLE Autocomplete a text-input with data received via AJAX. For small to medium sized datasets. JavaScript: $.getJSON(my_backend.php,

[jQuery] @ Mike Alsup: Cleartype fix

2008-04-05 Thread [EMAIL PROTECTED]
Thanks again for your help last night, Mike. Client's so happy with the result using Cycle, she's decided to go live before her new site is finished! ( http://homeholistics.com ) jQuery fade is ruining my beautiful work in ie7. I've tried the available Cleartype fixes, but they're not working -

[jQuery] Re: cycle plugin with image Array

2008-04-05 Thread [EMAIL PROTECTED]
I had the same issues, and am experimenting with various ways to delay and/or prevent un-needed image loading. I'll post back with any promising results and will be pleased if you'd do the same, tetris :) On Apr 5, 2:08 pm, Mike Alsup [EMAIL PROTECTED] wrote: is it possible to configure cycle

[jQuery] Re: cycle plugin with image Array

2008-04-05 Thread Mike Alsup
I had the same issues, and am experimenting with various ways to delay and/or prevent un-needed image loading. I'll post back with any promising results and will be pleased if you'd do the same, tetris :) I'm looking into a way to make this more manageable too.

[jQuery] Re: @ Mike Alsup: Cleartype fix

2008-04-05 Thread Mike Alsup
Thanks again for your help last night, Mike. Client's so happy with the result using Cycle, she's decided to go live before her new site is finished! ( http://homeholistics.com ) jQuery fade is ruining my beautiful work in ie7. I've tried the available Cleartype fixes, but they're not

[jQuery] Re: @ Mike Alsup: Cleartype fix

2008-04-05 Thread [EMAIL PROTECTED]
Thank you!!! :) On Apr 5, 8:05 pm, Mike Alsup [EMAIL PROTECTED] wrote: Thanks again for your help last night, Mike. Client's so happy with the result using Cycle, she's decided to go live before her new site is finished! (http://homeholistics.com) jQuery fade is ruining my

[jQuery] IE6,7,8b Transparency with Fade causes problems.

2008-04-05 Thread Issac Kelly
Ok, in IE the Fade: option is not working at all for me, it causes blank or non-existent images to be rotated in, This happens if I say True, or put a numerical value in, it doesn't matter. Fade works fine in FF

[jQuery] Comet Technique - possible with jQuery? Plugin?

2008-04-05 Thread coughlinsmyalias
Hey, I have been doing some research on Comet to use on my site: http://rksdesignstudios.com/magnet/ - To try to keep it live as possible almost to push the content to see other changes and keep the page constantly updated. I did a search here on the group but really didn't find anything, any

[jQuery] Re: Drag and Drop question

2008-04-05 Thread chris
I am still having problems with this. I can't find anything on the web about inspecting the arguments. Help :) On Apr 4, 1:45 pm, chris [EMAIL PROTECTED] wrote: I am trying to allow a person to sort a list of items by dragging and dropping them.  I need to know the new index to where the item

[jQuery] click removing highlight

2008-04-05 Thread Carl Fyffe
I am trying to capture highlighted text. To activate the capture method I am clicking on a div that jQuery is watching. When I click on the div the highlight goes away. The div is actually a context menu... YUI's context menu does not remove the highlight (see

[jQuery] Re: Sticky (scrolling) element

2008-04-05 Thread spectrus
Could you please rephrase your first question? Not sure people would understand.. As for the second one, have you tried setting overflow: hidden; on the #content box? On Apr 5, 10:58 am, Thomas Jaggi [EMAIL PROTECTED] wrote: Hi there I have a scrolling box here:http://backflip.info/test/

[jQuery] Re: Sticky (scrolling) element

2008-04-05 Thread spectrus
- I'd like the box to start scrolling not until arriving at the top of the page. Now there is always the initial margin. Is this possible with the ui.slider I'm using? Could you please rephrase your question? - When the box is higher than the screen (click expand) there is an unwanted

[jQuery] smartposition - a scrolling detection problem.

2008-04-05 Thread Brad
I'm using some code that I found in the K2 theme for WordPress. function smartPosition(obj) { // Detect if content is being scroll offscreen. if ( (document.documentElement.scrollTop || document.body.scrollTop) = jQuery(obj).offset().top) {

[jQuery] Re: smartposition - a scrolling detection problem.

2008-04-05 Thread Sam Sherlock
I have only had a look round at the code I have in a wordpress install with k2, I have not upgraded either since 2.5 came out. Make sure you have this somewhere jQuery(document).scroll(function() { smartPosition('.configstuff') }); possibly the k2 jquery pack includes dimensions plugin or

[jQuery] Re: cycle plugin with image Array

2008-04-05 Thread Mike Alsup
I had the same issues, and am experimenting with various ways to delay and/or prevent un-needed image loading. I'll post back with any promising results and will be pleased if you'd do the same, tetris :) I'm looking into a way to make this more manageable too. Just added a

[jQuery] Order of presence of DOM Elements

2008-04-05 Thread Olaf Gleba
Hi. I think i have a problem of understanding in what order the nodes get into the DOM. I have a select that is bound to different Text-Converter which is present within all content input areas in our little CMS. I integrated the markItUp! Editor successfully at least (thanks Jay for

[jQuery] Re: Order of presence of DOM Elements

2008-04-05 Thread Michael Geary
Olaf, I take it that mySettings is a variable defined in your set.js script, is that right? When you load a script dynamically, the JavaScript interpreter does not halt and wait for that script. Your code continues executing without pause, therefore any variables defined by that script are not

[jQuery] Re: Having trouble with += and toFixed for some reason

2008-04-05 Thread Chuck Cheeze
Thanks alot - i've never been good with javascript... worked great. On Apr 4, 3:01 pm, Wizzud [EMAIL PROTECTED] wrote: Initialise as numbers instead of strings?... var bagqty = 0; var bagtotal = 0; On Apr 4, 9:35 pm, Chuck Cheeze [EMAIL PROTECTED] wrote: Here is my code: pre        

[jQuery] tablesort

2008-04-05 Thread athlon4me
I cannot get table sorter plug in to work. I have things pointing correctly. I have the id's correct. hOWEVER , it still doesn't sort. its seems very easy to use but it will not work. script src=jquery2.js type=text/javascript/script script src=jquery.tablesorter.js type=text/javascript/script

[jQuery] Re: smartposition - a scrolling detection problem.

2008-04-05 Thread Brad
Okay. I figured it out. Since smartPosition was tracking the moving div, and since the moving div was always in the same place after the initial switch, the calculations weren't returning the div upon scroll up. I changed the smartPosition param to #content-area, which was a parent of the

[jQuery] Re: smartposition - a scrolling detection problem.

2008-04-05 Thread Brad
I do have that in the footer of my page. To be exact it says: jQuery(document).ready( function() { }); jQuery(window).scroll( function(){ smartPosition('#post- navigation'); }); The smartPosition param tells it which ID to track in the DOM. Thanks for the reply! On Apr 5, 5:17 pm, Sam