[jQuery] Re: Treeview with checkboxes

2008-03-02 Thread [EMAIL PROTECTED]
Patch works perfectly for my needs. Thanks. Mike

[jQuery] Re: Firefox Only Error..... jQuery is not defined..... jScrollPane.js (line 94)

2008-03-02 Thread [EMAIL PROTECTED]
Turns out this error was being caused by Joomla!. The Email Cloaking Mambot was inserting javascript that was breaking everything. Turning the Mambot off has solved the problem. On Feb 29, 12:10 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I need some help with a website I have recently

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread [EMAIL PROTECTED]
This works. I'm using v 1.2.2. // click on/off $('#panelOff, #hidestyles').bind('click',function(){ $('#pagestyles').toggle(); Cherry. David McFarland wrote: On Feb 25, 2008, at 4:10 AM, Ariel Flesler wrote: Try the latest jQuery (1.2.3) which removed .toggle()

[jQuery] Re: toggle disables links - unwanted

2008-02-25 Thread [EMAIL PROTECTED]
This works. I'm using v 1.2.2. // click on/off $('#panelOff, #hidestyles').bind('click',function(){ $('#pagestyles').toggle(); Cherry. David McFarland wrote: On Feb 25, 2008, at 4:10 AM, Ariel Flesler wrote: Try the latest jQuery (1.2.3) which removed .toggle()

[jQuery] A jQuery and php os without Mysql

2008-02-25 Thread [EMAIL PROTECTED]
Hello and sorry for my english. In first, all my thanks to John Resig and all the people on his team ! I'm working since a few years on a php motor who's abble to work only with files, folders and logs. It's the same things as a computer. With that, i'm abble to make some web page without Mysql.

[jQuery] Re: Getting started

2008-02-24 Thread [EMAIL PROTECTED]
24, 9:51 am, jonpren [EMAIL PROTECTED] wrote: Hi, Is there anywhere listed all functions that is added by including jquery? Best Regards - Jon

[jQuery] Re: Is this bug in jquery???

2008-02-22 Thread [EMAIL PROTECTED]
mouseover focus', fnOver).bind('mouseleave mouseout blur', fnOut); } }); Cherry http://jquery.cherryaustin.com On Feb 21, 6:52 pm, fshuja [EMAIL PROTECTED] wrote: i am using jquery version 1.2.3. I was trying to attach hover on area inside map. but find that its working ok in FF but not in IE

[jQuery] What's the meaning of underlying elements in focus()

2008-02-22 Thread [EMAIL PROTECTED]
Hello all! I read Note that this does not execute the focus method of the underlying elements. of focus() in jq' doc ,but I couldn't catch the meaning of underlying elements . Anyone may tell me which elements is underlying elements, Thanks

[jQuery] How to use Jquery with other Frameworks?

2008-02-22 Thread [EMAIL PROTECTED]
How can i reach the functions that are inside the main Jquery function for example: function dothis(){ doSomething(); } $(document).ready(function(){ function doSomething(){ $(# + spiel0).css({zIndex :5 } }); the reason i do this is because the dothis() function wont run

[jQuery] How can I Use Jquery without $(document).ready

2008-02-22 Thread [EMAIL PROTECTED]
Hello everyone, Can someone please tell me how can i use Jquery outside the function $ (document).ready(function(){ ... }); Because I have some functions that build my HTML page that wont run if i put them inside this function. thank you in advanced Rodolfo

[jQuery] $.( 'a:link' )

2008-02-22 Thread [EMAIL PROTECTED]
This has to be obvious - but I can't find it! I'm trying to have a script restyle the a:links. Using the CSS name (which is, precisely, #nav a:link) doesn't get a result. It does if I take the :link part off, but that overrides the child styles. Seeing as link isn't a DOM element, I've tried all

[jQuery] jQuery design pattern for dom.ready snippets

2008-02-22 Thread [EMAIL PROTECTED]
Hi there, I am going to be implementing jQuery on a very large enterprise level website, and have a few questions with regards to some best-practices for managing scripts. Where is the best place to include all of the initialization code for plugins? I'd like to keep everything external, but

[jQuery] Re: $.( 'a:link' )

2008-02-22 Thread [EMAIL PROTECTED]
it be possible to add another filter, like :first, only :link? I'll have a go if someone can point me to the instructions ;) I'm all ears (or eyes)! On Feb 23, 12:42 am, Klaus Hartl [EMAIL PROTECTED] wrote: a:link in CSS is basically the same as a[href], try: $('#nav a[href]') --Klaus

[jQuery] change image src not working in IE6

2008-02-21 Thread [EMAIL PROTECTED]
group, i just ran across an issue in IE6, that works in both Safari and Firefox. I am simply trying to change the source of an image using: $('img#tab2').attr(src,/b_tab2_on.png); img id=tab2 src=/b_tab2_off.png border=0 alt=colors/ I've noticed that in IE, the object is found but the attr

[jQuery] Re: is there a secret to jQuery with Opera?

2008-02-21 Thread [EMAIL PROTECTED]
in Opera. I've simply made the function unavailable to Opera. Thank goodness it's not all that popular! Cherry On Feb 21, 11:41 am, Ariel Flesler [EMAIL PROTECTED] wrote: What timothyjoe said is right, why don't you join the jpg-# ? The hash (#...) you add to the url is to avoid caching ? if so, you

[jQuery] how to remove a behavior?

2008-02-21 Thread [EMAIL PROTECTED]
Hi, I have this function ... function defineBehaviors() { $('a.deleteWorksheetItem').click( function() { alert(Executing action); }); } and I notice (at least in PC Firefox) if I call this function twice on a page, clicking

[jQuery] Re: is there a secret to jQuery with Opera?

2008-02-21 Thread [EMAIL PROTECTED]
. Which probably brings me back to where I was before, so I'll shut up now!! Cherry ;) On Feb 21, 7:23 pm, Ariel Flesler [EMAIL PROTECTED] wrote: I've simply made the function unavailable to Opera. Thank goodness it's not all that popular! ...and then you complain about accessibility

[jQuery] is there a secret to jQuery with Opera?

2008-02-20 Thread [EMAIL PROTECTED]
Admittedly, the function in question is my own home-fudged one. It depends on: $('img src=' + '/images/thelogo.png' + '#' + Math.random() + '/ ' ).load(function() { Firefox and IE (hurrah) behave as required. Opera doesn't register the changed 'variable' (an .html() function), but loads the

[jQuery] Re: is there a secret to jQuery with Opera?

2008-02-20 Thread [EMAIL PROTECTED]
for the heads-up TT! The page looks the same in Safari as in Firefox ie (phew!). So what's up with Opera? On Feb 21, 1:54 am, timothytoe [EMAIL PROTECTED] wrote: Safari for Windows is a pretty good browser now, especially if you want to have a good idea whether you'll run on Mac Safari

[jQuery] Re: is there a secret to jQuery with Opera?

2008-02-20 Thread [EMAIL PROTECTED]
the CSS jQuery links around. If anything, it seems to be loading *all* the stylesheets at once! Does Opera think for itself?? I'd post a link, but the page is such a mess it wouldn't help. On Feb 21, 12:59 am, Ariel Flesler [EMAIL PROTECTED] wrote: Argh.. saw the # and thought id... ignore my

[jQuery] Re: is there a secret to jQuery with Opera?

2008-02-20 Thread [EMAIL PROTECTED]
'); } } So - well, any comment must be a helpful comment ;) Cheers, Cherry On Feb 21, 3:00 am, timothytoe [EMAIL PROTECTED] wrote: Yeah, the first Windows version didn't seem able to run for 5 minutes without crashing violently. I hated it. The JavaScript has gotten so fast in that browser

[jQuery] Re: Counting numbers from X to Y

2008-02-18 Thread [EMAIL PROTECTED]
://www.anthor.net/fr/jquery-progression.html Just making the numbers scroll up and down between what I choose is what I'm looking for, but this one had progress bars and stuff too, so I'll see if I can digg into the code and take out the necessary parts. On Feb 17, 8:04 pm, Karl Swedberg [EMAIL PROTECTED

[jQuery] Counting numbers from X to Y

2008-02-17 Thread [EMAIL PROTECTED]
I'm looking for a simple plugin which can tick a number from say 1 to 10 (1,2,3,4,5 and so on up to 10). I remember seeing a demo page of this with an example which I think included some currency counter but I can't seem to find it again! Been browsing the Plugin directory but haven't found it.

[jQuery] [tooltip] image title rather than anchor?

2008-02-17 Thread [EMAIL PROTECTED]
Hi i use jquery tooltips on anchor links, but i have a system full of images that use the title tag - i have tried everything to switch the javascript but the jquery tooltip is always empty despite it looking wright, just nothing in it? $('#innercontainer a').Tooltip({ WORKS $('#innercontainer

[jQuery] [tooltip] image title rather than anchor?

2008-02-17 Thread [EMAIL PROTECTED]
Hi i use jquery tooltips on anchor links, but i have a system full of images that use the title tag - i have tried everything to switch the javascript but the jquery tooltip is always empty despite it looking wright, just nothing in it? $('#innercontainer a').Tooltip({ WORKS $('#innercontainer

[jQuery] jQEm: font size relative to original?

2008-02-17 Thread [EMAIL PROTECTED]
I'm very happy with this plugin ( http://davecardwell.co.uk/javascript/jquery/plugins/jquery-em/ ) but I can't work out how to establish what the initial (default) em width was. I'm using it to get rid of background images, which will only tolerate 1x size increase (about 20%, I think). If I

[jQuery] Re: image title rather than anchor?

2008-02-17 Thread [EMAIL PROTECTED]
Tool tips for jQuery. You can have the tool tips appear when a user hovers over a div or an a. It looks as though you will have to add 'return false' links to your images. On Feb 17, 8:10 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi i use jquery tooltips on anchor links, but i have

[jQuery] Re: Change stylesheets if images are off

2008-02-17 Thread [EMAIL PROTECTED]
because we're not loading images ... that is, an if not function ? I'm very perplexed. On Feb 17, 5:36 am, Danny [EMAIL PROTECTED] wrote: One thing I realized, is that it will still have a delay from page load to running the images-enabled function--the browser has to request the nonexistent

[jQuery] Re: Change stylesheets if images are off

2008-02-16 Thread [EMAIL PROTECTED]
. On Feb 16, 2:04 pm, Richard D. Worth [EMAIL PROTECTED] wrote: The problem here is your .load callback will get called at some point in the future, when the image finishes loading. However, the next line will get executed immediately, without waiting for that. While this may work in some cases

[jQuery] Re: a small accessibility rant

2008-02-16 Thread [EMAIL PROTECTED]
That told me. I'll download it this minute! Sorry. On Feb 16, 12:51 pm, Ariel Flesler [EMAIL PROTECTED] wrote: Just a quick note, jQuery.Accessible's main use is not the validator shown in the demo, that's just an addition. What I really wished to do is to actually improve accessibility

[jQuery] is there a tab-indexer plugin?

2008-02-16 Thread [EMAIL PROTECTED]
or does anyone know how to make one? Something that will incrementally number the tabindexes for all the hrefs on a page? It's a shot in the dark, but worth trying to save all that effort! Cherry :) http://jquery.cherryaustin.com

[jQuery] Re: Change stylesheets if images are off

2008-02-16 Thread [EMAIL PROTECTED]
Oops, set typing in motion before engaging brain Setting 'On' will defeat the object :o Stupid idea! On Feb 16, 2:04 pm, Richard D. Worth [EMAIL PROTECTED] wrote: On Feb 15, 2008 6:55 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I finally finished it // detect whether

[jQuery] Re: is there a tab-indexer plugin?

2008-02-16 Thread [EMAIL PROTECTED]
Like magic :)) Thanks, Dennis! On Feb 16, 4:26 pm, spinnach [EMAIL PROTECTED] wrote: try this: $('a').each(function(i,e){ $(this).attr('tabindex', i); }); dennis. [EMAIL PROTECTED] wrote: or does anyone know how to make one? Something that will incrementally number

[jQuery] Re: Is this possible with jQuery?

2008-02-16 Thread [EMAIL PROTECTED]
Johny, there are some things you can try - see this thread for ideas? http://groups.google.com/group/jquery-en/browse_frm/thread/5ec2f96cc15f03d4# On Feb 16, 7:47 am, Johny [EMAIL PROTECTED] wrote: Hi, I have a website with some images.The size of these pictures are ok for the most of users

[jQuery] Re: Change stylesheets if images are off

2008-02-16 Thread [EMAIL PROTECTED]
comes up with a kosher solution! Cherry :) http://jquery.cherryaustin.com On Feb 16, 2:04 pm, Richard D. Worth [EMAIL PROTECTED] wrote: The problem here is your .load callback will get called at some point in the future, when the image finishes loading. However, the next line will get executed

[jQuery] Re: tabs: replacing the content without switching the selected tab

2008-02-16 Thread [EMAIL PROTECTED]
Thanks, Klaus. Another 5 star post. - On Feb 15, 6:20 pm, Klaus Hartl [EMAIL PROTECTED] wrote: Try: $('#replaceContent').click(function() {     $('#tabcontent div.ui-tabs-panel:visible').html('hello'); }); --Klaus On Feb 15, 11:24 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote

[jQuery] Re: a small accessibility rant

2008-02-16 Thread [EMAIL PROTECTED]
Wow!! What fantastic news :)) Please will you hurry up, so I can get on with using entertaining jQuery effects? Cherry ;) On Feb 16, 4:52 pm, Colin Clark [EMAIL PROTECTED] wrote: Excitingly, we just received a grant from the Mozilla Foundation to help the jQuery community make jQuery more

[jQuery] Re: returning variable from extension function

2008-02-16 Thread [EMAIL PROTECTED]
**think** means naming your function. If there is any simple documentation about this, I haven't found it yet! Good luck - and, if you don't get a reply but find the answer anyway, please post it back!! Cherry :) On Feb 16, 1:35 am, jquertil [EMAIL PROTECTED] wrote: I know little about variable

[jQuery] Re: is there a tab-indexer plugin?

2008-02-16 Thread [EMAIL PROTECTED]
- magic indexing isn't reliable either, but is better than an abandoned manual system! On Feb 16, 11:48 pm, Karl Rudd [EMAIL PROTECTED] wrote: I'm curious as to why this would need to be done. By default links on a page have a tabindex based on their position in the HTML so there's usually no need

[jQuery] Re: Change stylesheets if images are off

2008-02-16 Thread [EMAIL PROTECTED]
OMG, I can't wait to test this!!! On Feb 17, 5:12 am, Danny [EMAIL PROTECTED] wrote: A simple hack to detect if images are enabled: Include the following in your HTML: img src=http://microsoft.com/nothing.gif; onerror=alert('hello'); style=position: absolute;top=-100px / If images

[jQuery] Opening a Shadowbox onload?

2008-02-15 Thread [EMAIL PROTECTED]
Does anyone know how to open a shadowbox onload, whithout having to click a link?

[jQuery] Re: a small accessibility rant

2008-02-15 Thread [EMAIL PROTECTED]
easier, at any rate! Cherry. On Feb 15, 3:30 am, Benjamin Sterling [EMAIL PROTECTED] wrote: Rick, I have not gotten into it too much because it has not been a requirement, having just the alt/title tags is usually enough, but there has been talk over at the EPA accessiblity testing group

[jQuery] Re: What's wrong with this conditional?

2008-02-15 Thread [EMAIL PROTECTED]
OMG, I'm an idiot. THANK YOU, Richard!!! :)) On Feb 14, 7:50 pm, Richard D. Worth [EMAIL PROTECTED] wrote: The first part of the ternary is going to evaluate as a boolean (true or false). What you've actually got in there is a jQuery object with a load function, which exists (notice, you're

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-15 Thread [EMAIL PROTECTED]
Yes, the idea of saving the selected tab in a variable will do nicely. Just for posterity, I wanted to include that the line var selected = $tabs.data('selected.ui-tabs'); is causing a JS error, $tabs is not defined. Thanks, - Dave On Feb 15, 1:24 am, Klaus Hartl [EMAIL PROTECTED] wrote

[jQuery] Quick way to package form elements?

2008-02-15 Thread [EMAIL PROTECTED]
Hi, What's the quickest way you know of to gather parameters and values in a form and put them into a string param1=value1param2=value2 ... and so on. Not sure if this affects the question, but I have radio buttons and checkboxes in my form. Thanks for any insights, - Dave

[jQuery] Re: searching for an element with particular value

2008-02-15 Thread [EMAIL PROTECTED]
. - Dave On Feb 15, 9:29 am, Jamie [EMAIL PROTECTED] wrote: Hey, This should work: myDiv.find(input:hidden[name^='file'][value=' + myVar + ']); - Jamie Goodfellow On Feb 14, 6:33 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, How do I search the DIV, myDiv for a hidden input field

[jQuery] tabs: replacing the content without switching the selected tab

2008-02-15 Thread [EMAIL PROTECTED]
Hi, Let's say I have these tabs and code that makes them so ... script type=text/javascript $(function() { var tabSelected = $('#tabcontent ul').tabs() }); /script div id=tabcontent ul lia href=doc_properties.php

[jQuery] Re: if (! someThing.fired ) {

2008-02-15 Thread [EMAIL PROTECTED]
as though it could be useful! Cherry. On Feb 15, 5:12 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] schrieb: Is *fired* a valid property? If it is, how should you access it? I'd need way more context to answer that question, testpages prefererred... Jörn

[jQuery] Change stylesheets if images are off

2008-02-15 Thread [EMAIL PROTECTED]
I finally finished it // detect whether images are on // and change styles accordingly jQuery.imagesOn = function(){ $('img src=' + '/images/bgimage.jpg' + '#' + Math.random() + '/ ' ).load(function() { $('#noimages').attr(href, '/styles/gotimages.css');

[jQuery] Re: a small accessibility rant

2008-02-15 Thread [EMAIL PROTECTED]
the Disability Discrimination Act, here in the UK. Nobody's brought a test case, yet - I hoped my friend would make an official complaint about that bank, but we'll have to wait for someone else to do it. It should wake a few clients up, at least ;) On Feb 15, 9:41 pm, Chris [EMAIL PROTECTED] wrote: On Feb

[jQuery] Re: if (! someThing.fired ) {

2008-02-15 Thread [EMAIL PROTECTED]
Oh, OK What a shame! Thanks, Josh :) Josh Nathanson wrote: It looks like he is using 'fired' as a property, it's not native to javascript. It's just a way of indicating that an event has occurred. -- Josh

[jQuery] Re: jQuery pimped out Free Css Template project

2008-02-14 Thread [EMAIL PROTECTED]
improvements over YooTheme's and Apple's, but also bugs, like flickering in IE6/IE7. Anyway drop me a message if anyones interested =) On Jan 27, 1:24 pm, Ty (tzmedia) [EMAIL PROTECTED] wrote: Thanks alot Cloudream, I'm realling lining up projects I'ld like to cover in a future website

[jQuery] Re: how to disable wheel scroll?

2008-02-14 Thread [EMAIL PROTECTED]
. I let that infect my reply :o On Feb 14, 12:44 pm, Eridius [EMAIL PROTECTED] wrote: Why on earth do you think you know hat my plugin is and needs. I have my reason for wanting to disable scrolling just like thickbox does.

[jQuery] a small accessibility rant

2008-02-14 Thread [EMAIL PROTECTED]
Before (trying to) adopt jQuery, I've never used Javascript to control content. In reading hundreds of blogs by Javascript developers over the past weeks, I've been alarmed by their attitude to accessibility. It's not just a matter of 'political correctness', and it's not just about minority

[jQuery] Re: how to disable wheel scroll?

2008-02-14 Thread [EMAIL PROTECTED]
, better to allow the overflow to scroll - or set the div size pos in % or ems. Cherry On Feb 14, 4:09 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Sorry Eridius, I was going to suggest ensuring that your content only takes up the screen area but thought you would probably have discounted

[jQuery] tabs: possible to save a form when switching tabs?

2008-02-14 Thread [EMAIL PROTECTED]
Hi, I'm using the jQuery tabs plugin from here http://docs.jquery.com/UI/Tabs. I have a number of AJAX tabs. When one of the tabs loads (the tab Properties), it loads with a form. How do I call my validate form function and then submit this form when a user clicks on a different tab? Here are

[jQuery] What's wrong with this conditional?

2008-02-14 Thread [EMAIL PROTECTED]
Hi. I'm still struggling with this! It's supposed to load an alternative stylesheet if images are OFF. I'm trying a zillion different methods, but they only seem to 'half' work :( Here's my latest attempt; I tried a ternary as a last resort ;) I don't get a code error, but still only the 'images

[jQuery] Re: a small accessibility rant

2008-02-14 Thread [EMAIL PROTECTED]
is this: My friend's computer is *her* computer. How can it be right to say she shouldn't choose to make use of its built-in capabilities to read what's on the screen?? You may as well say that using a magnifier to read the newspaper is a hack . On Feb 14, 6:23 pm, Benjamin Sterling [EMAIL PROTECTED

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread [EMAIL PROTECTED]
Thanks, Klaus. I only want to run this form validation if a user is leaving the tab with a.title = Properties. How do I screen for that prior to executing the function? - Dave On Feb 14, 12:43 pm, Klaus Hartl [EMAIL PROTECTED] wrote: Try the select event. If the handler for that event returns

[jQuery] Re: jquploader 2 alpha 1 - rich file upload dialog plugin - please test and help

2008-02-14 Thread [EMAIL PROTECTED]
I'll give that a go - thanks for the advice :-) If that doesn't work - is there a way to simply not use the iflash plugin (e.g. manually add the object and embed tags - and if so where do they get added)? On Feb 12, 9:07 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hi ipo and thanks

[jQuery] jquploader: possible to build an upload form without Flash?

2008-02-14 Thread [EMAIL PROTECTED]
Hi, Guess I'm just a sucker for punishment. Has anyone had any success building a form that doesn't require Flash that uploads files using jqUploader? I followed their setup instructions http://www.pixeline.be/experiments/jqUploader/setup.php and it didn't say anything about needing the

[jQuery] searching for an element with particular value

2008-02-14 Thread [EMAIL PROTECTED]
Hi, How do I search the DIV, myDiv for a hidden input field whose name begins with the word file and whose value is equal to the value contained in the variable myVar? Thanks, - Dave

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread [EMAIL PROTECTED]
the Properties tab. Any way to adjust the below for this situation? - Dave On Feb 14, 6:05 pm, Klaus Hartl [EMAIL PROTECTED] wrote: On Feb 14, 9:25 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks, Klaus.  I only want to run this form validation if a user is leaving the tab with a.title

[jQuery] Re: searching for an element with particular value

2008-02-14 Thread [EMAIL PROTECTED]
expression is returning a zero length array. Thanks for any clarifications, - Dave On Feb 14, 5:40 pm, Morgan Allen [EMAIL PROTECTED] wrote: 'input[name*=file][value=' + val + ']:hidden' On Thu, Feb 14, 2008 at 3:33 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, How do I search

[jQuery] Re: tabs: possible to save a form when switching tabs?

2008-02-14 Thread [EMAIL PROTECTED]
example of the concept somewhere online and I just copy their code? - Dave On Feb 14, 9:06 pm, FrenchiINLA [EMAIL PROTECTED] wrote: if you use the click event of tab it pass 3 parameters Tab clicked, Tab toShow, TabtoHide so you can write something like var $tabs = $('#foo).tabs({click

[jQuery] Re: Need help with the basics: functions variables

2008-02-13 Thread [EMAIL PROTECTED]
varnier [EMAIL PROTECTED] wrote: I think it is not easy as it seems, and I'll try to explain why :) you could put that code in a function, something like this: the problem is that the variable will not be initialized until the load() method has completed its task. so what you will get from

[jQuery] Need help with the basics: functions variables

2008-02-13 Thread [EMAIL PROTECTED]
I'm embarrassed to admit this. After literally days of reading experimenting, I still haven't got a grip on how we're supposed to define functions get results out of them! ( http://jquery.cherryaustin.com ) For example, I used this to find out whether images are on ( http://tinyurl.com/3dy6pb

[jQuery] tabs: Can't get tabs to work, but I'm including the right files!

2008-02-13 Thread [EMAIL PROTECTED]
I just downloaded the jquery tabs zip file, unzipped it and got the demo working http://elearningrd.info/tabs/scripts/tabs/ but when I try and build my own page, I get JS errors: http://elearningrd.info/tabs/docbuilder/build_doc2.php I'm including the same JS files (so I think) as the demo

[jQuery] Re: tabs: Can't get tabs to work, but I'm including the right files!

2008-02-13 Thread [EMAIL PROTECTED]
still aren't displaying as tabs. I have included the style sheet and placed the images in the appropriate places, but I'm still missing something. How can I make those LIs look like tabs? Thanks, - Dave On Feb 13, 3:27 pm, Klaus Hartl [EMAIL PROTECTED] wrote: Dave, that's weird, there's a syntax

[jQuery] Re: how to disable wheel scroll?

2008-02-13 Thread [EMAIL PROTECTED]
Why on earth would you want to? Your visitors may think your page broke their computer! Eridius wrote: but the wheel scroll still scrolls the window, how to i disable it.

[jQuery] if (! someThing.fired ) {

2008-02-13 Thread [EMAIL PROTECTED]
Is *fired* a valid property? If it is, how should you access it? There's nothing about it in the api, but I've seen it in some plugins. I'm hoping (desperately, by now) that it may hold the key to my painful non-working function problem ...

[jQuery] Re: Loading page plugin or script.

2008-02-13 Thread [EMAIL PROTECTED]
13, 4:49 pm, Josoroma [EMAIL PROTECTED] wrote: Maybe a newbie question. When i use Plesk 8 there is a loading message that display loading page contents, and dissapear until all the page is loaded. There exist some jquery plugin or script for this kind of functionality? to prevent users to use

[jQuery] Moving DIVs up/down

2008-02-12 Thread [EMAIL PROTECTED]
Hi, Let's say I have a large DIV with class largeDiv and inside it, a bunch of smaller DIVs, each with its own unique ID and class smallDiv. Given an arbitrary DIV with class smallDiv, if I want it to switch places with the DIV immediately above it, how do I achieve the switch? Keep in mind

[jQuery] Counting DIVs with class x within a larger DIV

2008-02-12 Thread [EMAIL PROTECTED]
Hi, Sure this is simple, still trying to get a handle on the basics of JQuery. Given a DIV with id = data, how would I count the number of DIVs with class = x, within the larger DIV data? Thanks, - Dave

[jQuery] loading content from a remote file and appending it into DOM element

2008-02-12 Thread [EMAIL PROTECTED]
Hi, I would like to load content from process_data.php?id=2 and then append that data into the DIV with id=dataDiv, how would I do this? I have seen the .load directive, but seems to erase any data previously in the DOM element whereas I want to append on to what is already there. Thanks for

[jQuery] Re: Can we detect whether images are turned off?

2008-02-12 Thread [EMAIL PROTECTED]
It works perfectly! Thank you very much for your explanation, Richard. I'm learning loads! Cherry :) On Feb 12, 10:13 am, Richard D. Worth [EMAIL PROTECTED] wrote: If you're interested, here's the equivalent in jQuery: $('img src=http://www.google.com/intl/en_ALL/images/logo.gif

[jQuery] Re: plugin to upload files

2008-02-12 Thread [EMAIL PROTECTED]
, Benjamin Sterling [EMAIL PROTECTED] wrote: Dave, Most of the plugins you are going to find will use flash to get the progress bar and some other functionality that you just can't get with javascript.  I am not sure how the jqUploader functions, but I believe that it would fail nicely if flash

[jQuery] Copying menu item from one menu to another

2008-02-11 Thread [EMAIL PROTECTED]
Hi, Let's say I have a SELECT menu with id = fromMenu and if a user clicks the Add button, I want the selected menu item from the fromMenu to be appended as the last item in antoher menu with id = toMenu. I'm sure this is simple. How can it be done? Thanks, - Dave

[jQuery] Re: jquploader 2 alpha 1 - rich file upload dialog plugin - please test and help

2008-02-11 Thread [EMAIL PROTECTED]
instead of the iflash plugin. Once again - congrats to the author - good job mate. On Feb 1, 3:46 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: For your Information: flash does not allow upload bigger than 100 Megs so this might explain that. I still have to implement filesize checking

[jQuery] how to set the value of an input after selecting an option in a list

2008-02-11 Thread [EMAIL PROTECTED]
Hello, after selecting a value in my select field and clicking on a button, I call a function (please see the code below) But $('#newDoc_name') is an input, I would like to set his value with the result of 'index.php/get/s_document_loadName/ Can you help me? Thank you

[jQuery] AutoScroll Plugin without using a mod_key

2008-02-11 Thread [EMAIL PROTECTED]
Him I've been loooking at the jQuery autoscroll plugin (http://jdsharp.us/ jQuery/plugins/AutoScroll/demo.php) and it works pretty well. I'd like to know if its possible to modify this plugin to not use the ctrl key though and rather scroll as i move my mouse off the end of the window while

[jQuery] Treeview question

2008-02-11 Thread [EMAIL PROTECTED]
Jörn, Greate plugin. Very useful indeed. I have a quick question. Do you (or anyone) for that matter know of any problems with IE 6 not rendering the entire tree? Let me explain. I have a large tree 1024 items nested 4 deep. This page loads in FF fine (takes a while, but nonetheless fine)

[jQuery] Can we detect whether images are turned off?

2008-02-11 Thread [EMAIL PROTECTED]
Hello again Still trying to adhere to 'Web Standards' while using (almost too many) whizzy jQuery effects, I see I'll need to provide some alternative text styles for users that don't see my lovely background images. I imagine Javascript can do the detection? Can you please advise - I read this:

[jQuery] plugin to upload files

2008-02-11 Thread [EMAIL PROTECTED]
Hi, I'm looking for a jquery plugin that will help me upload files, some which may be large ( 20 MB). I have seen jqUploader, but it seems like that requires Flash and I would not want to i mpose that requirement on end users. Thanks for any advice, - Dave

[jQuery] jqmodal (ajaxed markup) can't access javascript loaded in page on IE

2008-02-11 Thread [EMAIL PROTECTED]
Hey all, I've run into an interesting bug. I'm using jquery's jqmodal plugin for modals and I'm pulling down additional markup to populate the modal via ajax. The new markup is supposed to leverage the existing javascript (javascript functions, not jquery functions) that modal owner had

[jQuery] Re: still confused, but a little more organised

2008-02-10 Thread [EMAIL PROTECTED]
That's fantastically helpful, Wick! Thank you (yet again). I'll get there in the end hold on tight ;) Cherry On Feb 10, 4:56 pm, wick [EMAIL PROTECTED] wrote: Hey Cherry, I like the new page layout! I have one comment about your Methods: $().append section .

[jQuery] Re: Is it possible to send javascript vars TO a jquery function??

2008-02-10 Thread [EMAIL PROTECTED]
On Feb 10, 12:05 pm, timothytoe [EMAIL PROTECTED] wrote: This is worth a little more discussion. You're saying that we can use a div to hold variables, then jQuery can naturally deal with them. That kinda blows my mind. I'm not sure it would be very speedy, but it seems very flexible. I

[jQuery] Re: still confused, but a little more organised

2008-02-10 Thread [EMAIL PROTECTED]
Oh, darn :( Thanks for letting me know, Rick! I'm even worse at Flash than jQuery ;) Will sort out some sort of fix ... Cherry. On Feb 11, 1:59 am, Rick Faircloth [EMAIL PROTECTED] wrote: I tried to leave a comment on your flash comments thingy as you described it, but the spinner just kept

[jQuery] Count rows with FlyDOM

2008-02-09 Thread [EMAIL PROTECTED]
Hi there, is there any chance to create multiple rows of a table in a for form/form to have rows counted and the id# appended to the input element name? Has anyone tried to achieve this?

[jQuery] Re: Is it possible to send javascript vars TO a jquery function??

2008-02-09 Thread [EMAIL PROTECTED]
On Feb 8, 4:08 pm, cbmtrx [EMAIL PROTECTED] wrote: OK, I'll need to look into this click event. If it's worth rewriting (because the original degrades poorly) then I'll probably do it this way. Was hoping jquery would simplify!! :/ For your sample code, you don't need that javascript link

[jQuery] ajax file uploads: getting strange error

2008-02-09 Thread [EMAIL PROTECTED]
Hi, I just downloaded the latest version of the ajax file upload plugin (http://www.phpletter.com/Demo/AjaxFileUpload-Demo/). I have created a test page http://elearningrd.info/test.php but every time I upload a file, the error callback is invoked and the message Syntax error: Invalid label

[jQuery] Re: Is it possible to send javascript vars TO a jquery function??

2008-02-09 Thread [EMAIL PROTECTED]
On Feb 9, 11:43 am, cbmtrx [EMAIL PROTECTED] wrote: Thanks lihao. Actually, there are cases when there would be more than one newdiv following an olddiv...which means that the jquery .next identifier wouldn't always work. ie: It's not a 1:1 ratio. So I've been trying to find the most

[jQuery] still confused, but a little more organised

2008-02-09 Thread [EMAIL PROTECTED]
About a week ago, I volunteered to blog my efforts at learning jQuery - I seem to be finding it more troublesome than most beginners! Some of you were encouraging (thank you VERY much!) but you all said it made a confusing read. Well, to an extent I can't fix that because the author *is*

[jQuery] Re: Is it possible to send javascript vars TO a jquery function??

2008-02-08 Thread [EMAIL PROTECTED]
On Feb 8, 11:11 am, cbmtrx [EMAIL PROTECTED] wrote: I've just barely started getting my feet wet with jquery, so please bear with this novice's question... With a javascript function you can accept vars like this: function doSomething(number, name) { //Do something with them } From

[jQuery] Somewhat On Topic - iWidgets is Hiring JQuery Developers!!!

2008-02-08 Thread [EMAIL PROTECTED]
send a brief resume and ideally some links to your work to [EMAIL PROTECTED] Thanks! Peter

[jQuery] Re: Mouse controlled scrolling

2008-02-08 Thread [EMAIL PROTECTED]
(and how to let it work without the ctrl key being pushed at the time). On Feb 7, 9:15 pm, Ariel Flesler [EMAIL PROTECTED] wrote: Hi I'd say that is doable, but using jQuery's animate() might not be the best solution, as you have to stop the current animation and start a new one. Maybe

[jQuery] Re: Is it possible to send javascript vars TO a jquery function??

2008-02-08 Thread [EMAIL PROTECTED]
On Feb 8, 1:39 pm, Klaus Hartl [EMAIL PROTECTED] wrote: You could use the trigger method probably, it allows passing around data: // attach click events $('a').click(function(e, arg1, arg2) { // do something withs arg1, arg2 }); // trigger click with external data $('#some-link

[jQuery] Re: Firefox: how to center the selected text in textarea

2008-02-08 Thread [EMAIL PROTECTED]
Hi, Ariel: Thank you so much for your nice suggestions. : ) On Feb 6, 10:52 pm, Ariel Flesler [EMAIL PROTECTED] wrote: Hey lihao First, let me point out a few small things: At the beggining you typed 'test' once instead of 'text'. I'm sure it's just a typo of the post. You should remove

[jQuery] Can't access newly created DOM from XML

2008-02-08 Thread [EMAIL PROTECTED]
the Contact Email Address Link var taxProListingContactEmail = document.createElement('a'); taxProListingContactEmail.setAttribute('href','mailto:[EMAIL PROTECTED]'); taxProListingContactEmail.appendChild(document.createTextNode

[jQuery] Re: What tool is used to minify the official jQuery distribution?

2008-02-08 Thread [EMAIL PROTECTED]
minified scripts I'm using work fine when loaded on their own, but I've not yet tried to concatenate them all. I'll try that next to see the outcome. Anyone else have a line into the official minifier used for jQuery? Thanks, haylo On Feb 7, 3:36 pm, Collin Allen [EMAIL PROTECTED] wrote

<    2   3   4   5   6   7   8   9   10   11   >