[jQuery] Re: Simple next/prev controls for

2009-04-28 Thread René
Thanks! On Apr 28, 3:53 pm, Charlie Griefer wrote: > On Tue, Apr 28, 2009 at 1:56 PM, René wrote: > > > Assuming: > > > > > Both > > Red > > Blue > > Green > > > > > Prev > > Next > > > Just wondering if someone has figured a simple jQuery function for > > moving through the a select list (us

[jQuery] Re: datepicker highlight individual days

2009-04-28 Thread Code Daemon
I'm having the same problem. It makes sense to hilite individual days because those days might be important. On Apr 7, 7:04 am, MorningZ wrote: > That doesn't make any sense > > the control by default is looking for the user to choose one > individual day > > On Apr 7, 8:15 am, Danny wrote: >

[jQuery] Changing the Cell Colors in DatePicker

2009-04-28 Thread Code Daemon
I've tried to two different datepicker scripts and what I'm trying to do is hilite which dates satisfy a certain condition. For example, when the page loads I will make a JSON call to the server to return all dates that are holidays, then on the inline datepicker I want to hilite those cells in r

[jQuery] Lava lamp navigation and coda slider on same page but only one works.. HELP!

2009-04-28 Thread SPWebcreations
The navigation works but the slider does not Driving me crazy! Here is what I got... Thanks! $(function() { $("#top-nav ul").lavaLamp({ fx: "backout", speed: 700, click: function(event, menuItem) {

[jQuery] Re: find and replace

2009-04-28 Thread mkmanning
Use a regex: $('body').html( $('body').html().replace(/(got|the)/g,'$1') ); On Apr 28, 9:39 am, kazim mehdi wrote: > hi > by using the following code  i am able to find only first occurrences > of the keywords can anyone help me to make it work for all of the > occurrences. > > thank you > > fu

[jQuery] Re: find and replace

2009-04-28 Thread mkmanning
Use a regex: $('body').html( $('body').html().replace(/(that|your)/g,'$1') ); On Apr 28, 9:39 am, kazim mehdi wrote: > hi > by using the following code  i am able to find only first occurrences > of the keywords can anyone help me to make it work for all of the > occurrences. > > thank you >

[jQuery] Re: Can I use more than one JQuery code on a page at a time?

2009-04-28 Thread SPWebcreations
Brian thanks for the reply! However... If I take away the Jquery.js and keep the jquery.1.3.2 the coda slider will stop working and the navigation will start working... Here is the link to the actual page that has the code... www.txenergysaving.com/audits/ Thanks for your help! Scott

[jQuery] window resize not working in IE8

2009-04-28 Thread ThaStark
I'm testing on Windows 7 and have not checked to see if its related to that ... The following code does not run in IE 8: $(window).resize(function(){ alert("Stop it!"); }); Can anyone verify, Thx

[jQuery] Treeview Plugin -- What are the options???

2009-04-28 Thread Marv
The documentation doesn't seem to detail the optoins and the demos use some but without any explanation of what options and settings are available. For example, what does 'Unique:' mean? Or 'Control:'?

[jQuery] Re: jQuery next() to find

2009-04-28 Thread dimitre
ACE Solution! Thanks more compact than this would be: works with keydown event too. do you think I'll have some problem with browser, etc? navigation is working with keyboard here: http://dmtr.org/ On Apr 28, 12:10 pm, George Adamson wrote: > Are you able to use the keyup event instead or does

[jQuery] Re: Trouble selecting a P inside a repeating DIV

2009-04-28 Thread Ricardo
That's because eq() filters the whole collection of Ps from all DIVs. Use nth-child instead (indexes start at 1 instead of 0): $(".insidepost p:nth-child(1)").addClass("cambottomline"); $(".insidepost p:nth-child(2)").addClass("cambuy"); cheers, - ricardo On Apr 28, 10:15 pm, Tobias wrote: > H

[jQuery] Re: Your download is corrupted

2009-04-28 Thread Ricardo
I don't see this group mentioned anywhere in the extension pages: http://extensions.joomla.org/extensions/6731/details http://joomlacode.org/gf/project/superfishmodule/ nor in the extension's source code. I assume you googled "superfish" and found references to it. That way you'll end up in a Win

[jQuery] Re: Please Help - While Loop PHP & JSON - Comment List

2009-04-28 Thread fluxUX
This is great. Thanks so much! For some reason the DIV for the "commentWrapper" is not working on the render page..here is what I have: go It appears the code you provided amends the DIV. Any thoughts would be great? On Apr 28, 5:11 pm, Jake McGraw wrote: > You've got quite a few erro

[jQuery] Re: Selector help needed

2009-04-28 Thread Jeffrey Kretz
You can also create a closure: $(document).ready(function(){ $('#menulinks a').hover(function(){ var fn = function(el){ return function(){ $(el).stop().animate({ top : '40px', paddingTop : '40px' }); el = null;

[jQuery] Re: Selector help needed

2009-04-28 Thread MorningZ
You'll have to build up the selector as a string when you call "setTimeout", that function is run out of the context of being within that .each statement so you'll have to do something like (and there's many ways of doing this, i'll just show quick and easy), and yeah, the 's will have to ha

[jQuery] Re: Simple problem with createElement

2009-04-28 Thread brian
You're not actually removing the span, though. It might be better to create it once, then move it wherever as needed. // inside $(document).ready() $('').attr("id", "fieldstatus") .addClass("fieldstatus") .appendTo('body'); ... // inside your event handler $('#fieldstatu

[jQuery] Selector help needed

2009-04-28 Thread Warfang
Here's my code: $(document).ready(function(){ $('#menulinks a').hover(function(){ setTimeout(function(){ $(this).stop().animate({ top : '40px', paddingTop : '40px'

[jQuery] Re: Simple problem with createElement

2009-04-28 Thread Code Daemon
Here is how I fixed it: 1) I needed to use remove() instead of empty() 2) To avoid conflicts in the the id, I appended (new Date()).getTime() to each id to make sure all the id's are unique. Now when I create a bunch of elements really quickly, they all disappear eventually. On Apr 28, 7:10 

[jQuery] Simple problem with createElement

2009-04-28 Thread Code Daemon
I am creating an element with createElement and then appending it to a table and then after a few seconds, deleting it with a call to empty (). This works fine The problem seems to be that every time I create the element, I am creating it with the same id and after a few iterations, it fails. It

[jQuery] Re: looking for a jquery comparison to this mootools image menu

2009-04-28 Thread Olivier Percebois-Garve
http://www.jeremymartin.name/projects.php?project=kwicks B wrote: please see the link. http://www.phatfusion.net/imagemenu/ Anyone know of a jquery option that is similar to this mootools image menu?

[jQuery] Re: Your download is corrupted

2009-04-28 Thread Jordon Bedwell
You know what else is annoying? When you try to be a smart ass and can't even spell necessary correctly, it is REALLY ANNOYING. You know what else is REALLY ANNOYING? When you use a period instead of a comma because you don't know punctuation. What is the moral of this story? Don't be a smart ass

[jQuery] Re: Your download is corrupted

2009-04-28 Thread Olivier Percebois-Garve
Hi Annie Apparently you are very confused. The right place to solve your issue is : http://joomlacode.org/gf/project/superfishmodule/forum/?action=ForumBrowse&forum_id=10474 You should discuss your issues with the Joomla extension developer that has created this Joomla module : Cy Morris The

[jQuery] Re: Your download is corrupted

2009-04-28 Thread brian
It isn't MY "module". I'm simply one of the 16000+ people who use this list to seek and share information about jQuery. Your tirades posted to this list, thus far, suggest that you don't have an "adequate" understanding about what jQuery even is. Nor mailing lists, free software, Joomla, or the k

[jQuery] Re: Your download is corrupted

2009-04-28 Thread Chacha Golden
It REALLY isn't NESSECARY to CAPITALIZE words FOR emphasis. IT is JUST annoying. On Tue, Apr 28, 2009 at 6:14 PM, Annie Stevens wrote: > Oh, I'm on a message board that isn't even FOR Joomla? That really cooks > it then. Maybe the bad review is deserved, because THIS is the link he > provided t

[jQuery] Trouble selecting a P inside a repeating DIV

2009-04-28 Thread Tobias
Hello - My basic code is something like paragraph 1 paragraph 2 paragraph 3 paragraph 1 paragraph 2 paragraph 3 I was hoping to use $(".insidepost p:eq(1)").addClass("cambottomline"); $(".insidepost p:eq(2)").addClass("cambuy"); Only works on the first div

[jQuery] Re: Your download is corrupted

2009-04-28 Thread Annie Stevens
Oh, I'm on a message board that isn't even FOR Joomla? That really cooks it then. Maybe the bad review is deserved, because THIS is the link he provided to get HELP for the BAD file that I had a helluva day with. How else would I get here? He offered this link as support for the Joomla plugin.

[jQuery] Re: looking for a jquery comparison to this mootools image menu

2009-04-28 Thread donb
It looks like a basic horizontal accordian with the tags assigned a background image. On Apr 28, 6:37 pm, B wrote: > please see the link.http://www.phatfusion.net/imagemenu/ > > Anyone know of a jquery option that is similar to this mootools image > menu?

[jQuery] parent trouble

2009-04-28 Thread brian
I have a nested (many levels) list, each item containing a link which, among other things should cause a child list (if there is one) to display. All child lists are hidden by default. ...

[jQuery] Re: Your download is corrupted

2009-04-28 Thread Jonathan
Wow, really? Ok here goes. jQuery is a javascript framework. It has nothing to do with Joomla or the other "site" you're talking about. The way it works is some people create widgets using jQuery to help make life a little bit easier for web developers. One of these widgets is a Superfish menu w

[jQuery] Form Tips

2009-04-28 Thread shapper
Hello, I would like to show a tip or balloon with some info when a user clicks an input to enter a value. Does anyone knows a good plugin that does this? Thank You, Miguel

[jQuery] Re: A selector question

2009-04-28 Thread Jonathan
IDs are supposed to be unique. You should change subgroup into a class then you can do the following to select it: $('#group2 .subgroup') On Apr 28, 4:04 pm, Dragon-Fly999 wrote: > Hi, I have the following html and would like to find out how to select > #subgroup under #group2.  I tried $(#grou

[jQuery] Re: Your download is corrupted

2009-04-28 Thread Annie Stevens
No, you don't have it straight. I downloaded YOUR module, which refused to install. So I studied the site for a long time trying to understand what was the installation method. I spent a lot of time trying to learn how to use this module which didn't seem to BE a module. It seemed all of you we

[jQuery] Re: Help tracking down error in IE8 / jquery 1.3.2

2009-04-28 Thread supermegapollo
Hi. I am experiencing an issue related with this topic: Message: Invalid argument. Line: 1061 Char: 4 Code: 0 URI: [...]/jquery-1.3.2.js This occurs when clicking a jeditable (plugin) TD. Trying to debbug I put some alerts here: * alert(name) * alert(value) 1060if ( set ) 1061

[jQuery] BlockUI 2.X ver. not ful screen overlay in WSS 3.0 new item list form

2009-04-28 Thread Vasssek
Hello everybody, first of all I want to say BlockUi plugin is very useful, perfect... but now I've tried it in my WSS (Sharepoint) web form. I want to block whole page, but it blocks just part of screen. When I click on horizontal or vertical scroll then the screen below is not overlayed and look

[jQuery] Diagram plugin

2009-04-28 Thread Rafael Ferreira Silva
Hi everyone, Does anyone know if there is a plugin to build diagrams like this http://raphaeljs.com/ I want to do something very simple like baloons with a connection Thanks in advance!

[jQuery] Diagram plugin

2009-04-28 Thread Rafael Ferreira Silva
Hi everyone! I'm trying to find any diagram construction plugin. I don't need anything very complex like http://mindomo.com/ just a way to connect some "baloons". Does anybody know if there is a plugin to do that? Thanks a lot!

[jQuery] A selector question

2009-04-28 Thread Dragon-Fly999
Hi, I have the following html and would like to find out how to select #subgroup under #group2. I tried $(#group2 #subgroup) but that didn't seem to work. Thank you. ... ... ...

[jQuery] looking for a jquery comparison to this mootools image menu

2009-04-28 Thread B
please see the link. http://www.phatfusion.net/imagemenu/ Anyone know of a jquery option that is similar to this mootools image menu?

[jQuery] Re: Simple next/prev controls for

2009-04-28 Thread Charlie Griefer
On Tue, Apr 28, 2009 at 1:56 PM, René wrote: > > Assuming: > > > Both > Red > Blue > Green > > > Prev > Next > > Just wondering if someone has figured a simple jQuery function for > moving through the a select list (using the above type of controls). > The idea is that the Prev anchor would dis

[jQuery] Re: Please Help - While Loop PHP & JSON - Comment List

2009-04-28 Thread Jake McGraw
You've got quite a few errors in both your JavaScript and PHP, which probably explains the lack of answers. Utilizing AJAX using jQuery and PHP can be a bit confusing at first, I've tried to make some sense of what you're doing here: http://snipt.net/jakemcgraw/jquery-listserv-answer-ajax-comment

[jQuery] Simple next/prev controls for

2009-04-28 Thread René
Assuming: Both Red Blue Green Prev Next Just wondering if someone has figured a simple jQuery function for moving through the a select list (using the above type of controls). The idea is that the Prev anchor would disappear if the first option is selected, and that the Next ancor would disap

[jQuery] Re: line breaks in alert boxes

2009-04-28 Thread MorningZ
Not really sure where jQuery would come in the equation, but "\n" is a linebreak in JavaScript and works inside an alert string so var message = "Your Ticket# is: " + $(xml).find("rid").text() + "\nPlease make a note of it."; On Apr 28, 12:23 pm, "508!" wrote: > Hi, > > Just started g

[jQuery] Re: Conditional required fields

2009-04-28 Thread Jörn Zaefferer
Take a look at http://jquery.bassistance.de/validate/demo/marketo/mktSignup.js The billingRequired method is what you should look for. Jörn On Tue, Apr 28, 2009 at 9:09 PM, Thomas Allen wrote: > > And I'm not going out of my way to change the subject...I'm not sure > what's going on there. > >

[jQuery] Re: Re-implementing Ext-js webapp using jQuery

2009-04-28 Thread Ricardo
jQuery UI (ui.jquery.com) is probably what you're after. On Apr 28, 3:50 pm, Kynn Jones wrote: > I want to use jQuery to re-implement a webapp that was originally > implemented (by someone else) using Extjs. > The only things I like about Extjs are the uniform look of its widgets and > the broad

[jQuery] Please Help - While Loop PHP & JSON - Comment List

2009-04-28 Thread fluxUX
I want to display an unordered list of comments from my echoed JSON result using this jQuery code block: $("#goComment").click(function(){ bigComment = $("#bigComment").val(); $.post("i-upComments.php", { //this inserts the comment into the 'comments' table in the DB

[jQuery] Get td string and replace

2009-04-28 Thread Dewey Wong
Hi, I would like to select the text of this td and replace with another string. How can that be accomplished? 8050 Drexel Ct, Lemon Grove, CA 91945 I tried with this without any success: var vtd = $(".googledir tr td:contains('8050 Drexel Ct, Lemon Grove, CA 91945')").html('8050 Blossom Lane, L

[jQuery] Menu / prev()

2009-04-28 Thread HerrJuergen
Hi, i'm trying to create a Tree Menu as follows Category A Category A, Subcategory A Category A, Subcategory B Category A, Subcategory C Category A Category A, Subcategory A Category A, Subcategory B Category A, Subcategory C all of the nav points are always visible i

[jQuery] find and replace

2009-04-28 Thread kazim mehdi
hi by using the following code i am able to find only first occurrences of the keywords can anyone help me to make it work for all of the occurrences. thank you function test() { var keywords = ["got", "the"]; var el = $("body");

[jQuery] Selector issue (i think), Cant control specific elements

2009-04-28 Thread stuart
Heres a very stripped down version of the page i'm trying to write. For simplicity, the Show / Hide functions (not meaning hide from view, but within a db) are the same (they change the background color of the div), the functions work for the most part but ignores certain divs (the ones titled Hid

[jQuery] Select td text

2009-04-28 Thread nstar
How can I select the text of the td below with jquery? For example: {code} 8050 Drexel Ct, Lemon Grove, CA 91945 {code} I tried with something like this without much success: {code} var vtd = $(".googledir > table > tbody >tr > td:contains('8050 Drexel Ct, Lemon Grove, CA 91945')").text(); co

[jQuery] Get td string and replace

2009-04-28 Thread nstar
Hi, I would like to select the text of this td and replace with another string. How can that be accomplished? 8050 Drexel Ct, Lemon Grove, CA 91945 I tried with this without any success: var vtd = $(".googledir tr td:contains('8050 Drexel Ct, Lemon Grove, CA 91945')").html('8050 Blossom Lane,

[jQuery] jQuery Superfish dropdown issue in IE7

2009-04-28 Thread Brian
I haven't seen this problem elsewhere as of yet. This is an internal site, so sorry, can't show the site. What is occurring though, is when you mousover a menu item that has a dropdown, it shows the first 10 pixels or so of the top of the dropdown, then shows the rest of the dropdown 1/10 of a s

[jQuery] Jquery Superfish problem with dropdown in IE7

2009-04-28 Thread Brian
I haven't seen this problem elsewhere as of yet. This is an internal site, so sorry, can't show the site. What is occurring though, is when you mousover a menu item that has a dropdown, it shows the first 10 pixels or so of the top of the dropdown, then shows the rest of the dropdown 1/10 of a s

[jQuery] line breaks in alert boxes

2009-04-28 Thread 508!
Hi, Just started getting into jQuery yesterday. Question: How can I place line breaks in alert box text? [code] var message = ""; message += "Your Ticket# is: " + $(xml).find("rid").text() + " Please make a note of it."; alert(message); [/code] The part, " Please make a note

[jQuery] Re: Fading text in/out (like a text slideshow)

2009-04-28 Thread Mitch Cohen
I've solved this myself (a good night's sleep always helps!). Posting results here for anyone interested. The trick was understanding the callback option in fadeIn, which didn't work as I'd expected (no parameters allowed; it doesn't really call the function, just passes the function name to som

[jQuery] Re: Conditional required fields

2009-04-28 Thread Thomas Allen
And I'm not going out of my way to change the subject...I'm not sure what's going on there. Thomas On Apr 28, 2:40 pm, Thomas Allen wrote: > > a custom method is used for the fields inside the Billing Address group > > What does this method do (or, better, what's it called so I can search > the

[jQuery] Re: div contains -> select div but NOT li

2009-04-28 Thread Ricardo
That code is fine. It would have been much simpler if you had said from the beginning you were going to attach a different click handler for the LI elements! The 'return false' in it prevents the click event from bubbling up to the DIV (as per my second example). On Apr 28, 4:49 am, gostbuster w

[jQuery] Re-implementing Ext-js webapp using jQuery

2009-04-28 Thread Kynn Jones
I want to use jQuery to re-implement a webapp that was originally implemented (by someone else) using Extjs. The only things I like about Extjs are the uniform look of its widgets and the broad range of widgets it supports. But I find Extjs too big to find my way around, and often slow. I know th

[jQuery] Re: [validate] Conditional required fields

2009-04-28 Thread Thomas Allen
> a custom method is used for the fields inside the Billing Address group What does this method do (or, better, what's it called so I can search the source)? Thanks, Thomas On Apr 28, 2:16 pm, Jörn Zaefferer wrote: > One alternative approach can be found > here:http://jquery.bassistance.de/va

[jQuery] Re: Plugin help: need dropdown (stylable in IE)

2009-04-28 Thread Chacha Golden
If you are just redirecting them to a URL, probably the easiest way would be to use a CSS Dropdown box like the one described in this: http://www.alistapart.com/articles/horizdropdowns/ On Tue, Apr 28, 2009 at 11:07 AM, Kim 'Johnson' Cameron wrote: > Hello, > > Searching for dropdown in the plugin

[jQuery] Re: Problem with treeview and Firefox 3

2009-04-28 Thread vg33
The problem was due to FireBug, the Firefox add-on.

[jQuery] Re: [validate] Conditional required fields

2009-04-28 Thread Jörn Zaefferer
One alternative approach can be found here: http://jquery.bassistance.de/validate/demo/marketo/step2.htm Instead of adding and removing classes, a custom method is used for the fields inside the Billing Address group. Whatever works for you... Jörn On Tue, Apr 28, 2009 at 7:20 PM, Thomas Allen

[jQuery] Plugin help: need dropdown (stylable in IE)

2009-04-28 Thread Kim 'Johnson' Cameron
Hello, Searching for dropdown in the plugin repository yields dozens of results, most of which have no comments. So I'm hoping someone out there with experience using the kind of plugin I need can chime in. :) Currently I have a SELECT field that contains theme names. Upon choosing a value in

[jQuery] Re: jQuery(document).ready() Type error on WebKit based Browsers

2009-04-28 Thread Jonathan
Try changing jQuery("#dir").attr("disabled", false) to jQuery ("#dir").removeAttr('disabled'); Also, does it give you a line number for the type mismatch that might help track it down? On Apr 28, 12:12 am, Sulfura wrote: > Hi there, > > I searched the internet for hours but couldn't find

[jQuery] Re: jBind With FireFox

2009-04-28 Thread a.karimzadeh
I guess you have bad template format. download the jbind samples and test them in safari and firefox. You can get them from here. http://arashkarimzadeh.com/index.php/downloads.html?func=select&id=10 On Mar 24, 12:19 pm, ".Nil" wrote: > Hi, > > I'm using JBind in my project. I have defined the

[jQuery] [validate] Conditional required fields

2009-04-28 Thread Thomas Allen
I have a form with a flexible number of field sets on my form. I think it'll be easier to understand if you just fiddle around a bit here: http://content.constructioninst.org/corporate_renewal.html I want to make a handful of fields be required in each field set, but only fields in visible field

[jQuery] Re: Jbind/JQuery With Safari browser

2009-04-28 Thread a.karimzadeh
I guess you have bad template format. download the jbind samples and test them in safari and firefox. You can get them from here. http://arashkarimzadeh.com/index.php/downloads.html?func=select&id=10 On Mar 24, 7:49 pm, ".Nil" wrote: > Hi, > > I have an Aspx page in which I'm using JQuery. I'm

[jQuery] Re: Known issues with webkit and jQuery 1.3?

2009-04-28 Thread Kelvin Luck
Hi again, I have now reproduced the issue in Safari on PC and now Chrome on PC. One of the user's reported a problem with this site: http://warehousetwentyone.com/ Clicking back and forth between warehouse and services in the aforementioned browsers sometimes breaks. A refresh fixes it. And it

[jQuery] Re: .hide and .show in FireFox vs IE6

2009-04-28 Thread Leonardo K
We can't access your example page. "You don't have permission to access /hideshow.php on this server." On Tue, Apr 28, 2009 at 04:58, tahooft wrote: > > For me one of the best things about jQuery is that I don't have to > worry about browser compatiblity. I wrote some code to extend an > excist

[jQuery] Re: [validate] - max validation with float values

2009-04-28 Thread JesperDK
Hey Jörn, But how can that be done with the code I currently have implemented? $(document).ready(function() { $("#commentForm").validate({meta: "validate"}); }); /Jesper On 27 Apr., 14:14, Jörn Zaefferer wrote: > You need to add a custom > method:

[jQuery] Known issues with webkit and jQuery 1.3?

2009-04-28 Thread Kelvin Luck
Hi, Sorry for the vague question but I'm wondering if there are any known issues with webkit browsers (e.g. Safari and Chrome) and jQuery 1.3? I've had quite a few queries from users of my jScrollPane plugin who have noticed issues with it on Safari on mac. They seem to be related to either docu

[jQuery] Re: how to make an alert before processing a form

2009-04-28 Thread Liam Potter
If you want to style your alert use a submit button and preventDefault (use whatever your confortable with to do this). Instead, have it popup a div with your options in, and on the yes button, trigger this to submit for the form document.FormName.submit(); brian wrote: As Mike said, bind a

[jQuery] Re: how to make an alert before processing a form

2009-04-28 Thread brian
As Mike said, bind a function to the form's submit and "return confirm('your msg');" On Tue, Apr 28, 2009 at 11:02 AM, hybris77 wrote: > > I think what I want to do is do a preventDefault(), > throw a custom alert with a YES and NO button > then reverse the preventDefault() > > maybe?  Hmmm, but

[jQuery] Re: question about approaching an interactive image gallery

2009-04-28 Thread roryreiff
Hello, I have updated the code a bit, and I think that the problem I am having has to do with scope and how I am binding my pause() and click functions to my controls? Any help is greatly appreciated. Basically, each time either arrow left or arrow right is clicked, I have bound a function to cli

[jQuery] FCKEditor jQuery Plugin Configuration

2009-04-28 Thread WhoButSB
I was wondering if anyone could provide me with a sample in how to configure the FCKEditor when I'm using the jQuery Plugin. Do I write the toolbarset script in the configuration within the jQuery like so: $.fck.config = { path: "public/js/fck/", toolbar: "Default

[jQuery] jEditable - WYSIWIG combination || problem

2009-04-28 Thread Hugo
Hi, Experiencing a little problem using the WYSIWYG inline editor with jEditable. I have succesfully installed it and got it actually to work. But here’s the thing: Once I specify options/controls for the wysiwyg editor, these are only being applied to the first ‘editable’ area I activate. Once I

[jQuery] Re: jQuery next() to find

2009-04-28 Thread George Adamson
Are you able to use the keyup event instead or does it need to be keydown? (Inside the keyup event handler the option:selected item should be the one you're after, instead of having to derive it.) Failing that could you just find the next/previous option by using selectedIndex +/-1 ? Something

[jQuery] Re: how to make an alert before processing a form

2009-04-28 Thread hybris77
I think what I want to do is do a preventDefault(), throw a custom alert with a YES and NO button then reverse the preventDefault() maybe? Hmmm, but im not sure im on the right track here /pär

[jQuery] Re: Cluetip override Error to stop showing cluetip

2009-04-28 Thread DotnetShadow
Karl, Really apprecaite the hard work you have put into this keep up the great work, my one concern left for this plugin is in IE8 I've mentioned the problem here: http://groups.google.com/group/jquery-en/browse_thread/thread/b265002a73625313/b6b16fa1a8ae5167?lnk=gst&q=dotnetshadow#b6b16fa1a8ae5

[jQuery] Re: ThickBox 3.1 , not able to display images fetched via ajax

2009-04-28 Thread Rick Faircloth
Hi, Amar! A great tool (if you're not using it already) for debugging AJAX is Firebug, which is a plug-in for Firefox. You can see in the console by enabling it using console.log(); in your code to view that data that the AJAX call is returning and see if it looks correct. Rick On Tue, Apr 28,

[jQuery] Re: cluetip IE8 very slow adding to table rows

2009-04-28 Thread DotnetShadow
Hi there, I was wondering if you had a chance to try out cluetip on IE8 in regards to this issue? Regards DotnetShadow On Apr 18, 12:32 am, Karl Swedberg wrote: > Not sure what's going on there, to be honest. I'll have to take a look   > as soon as I find some more time. It might just be that

[jQuery] .hide and .show in FireFox vs IE6

2009-04-28 Thread tahooft
For me one of the best things about jQuery is that I don't have to worry about browser compatiblity. I wrote some code to extend an excisting jQuery application (Galleria) and only tested it in FireFox. I split a long list with thumbs in several blocks: deel0, deel1, deel2 ... etc. After that I h

[jQuery] Re: Cluetip not working on multiple links calling local html data

2009-04-28 Thread Mark Trapp
Hi Karl, I'm having a similar issue as described in the original post here: - I have three divs that I want to use for cluetip: info-1, info-2, and info-3. - I have six links: two for each div. They all have the correct rel attributes set (two have rel="#info-1", and so on). - Only the first of

[jQuery] [autocomplete] Drop down doesn't show

2009-04-28 Thread sancho
Hi, I'm using http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/, but having some problems. When the page im using it on loads there is javascript tracking code loaded at the end of the page. If i click on the text box and start typing before the tracking code has completed loading

[jQuery] CSS @import not working in IE

2009-04-28 Thread marney
Hi, I have the following jQuery and HTML on my site, which performs both a total CSS switch, and a partial CSS import: $(document).ready(function() { // COLOUR autumn $("#css-autumn").click(function() { $("link[rel=stylesheet]").attr({href : "/Portals/19/Skins/Design001/ autumn.css"}); }); //

[jQuery] ThickBox 3.1 , not able to display images fetched via ajax

2009-04-28 Thread Flexian_me
hii! I am using following javaScript libraries in a project - jquery-1.3.2.min.js thickbox.js jquery-ui-1.7.1.custom.min.js Everything is working fine. But problem is when I am trying to display image/images in Thickbox via ajax then it doesn't work and if I am displayin

[jQuery] jQuery(document).ready() Type error on WebKit based Browsers

2009-04-28 Thread Sulfura
Hi there, I searched the internet for hours but couldn't find a solution which worked for me. I use jQuery to call a Perl-Module which outputs an XML File with all the Pictures in a specified Folder, which in turn is interpreted by jQuery to show a preview of that same Folder. It all works fine

[jQuery] [validate] How to show element in its in/valid form in JS.

2009-04-28 Thread Feryt
Hi. Is there any way how in JS show particular element in its valid or invalid state? I have a function which validate one element, and in this function i need to change second elements state to valid or invalid. Thank you. Best regards.

[jQuery] Re: Get element position relative to the body

2009-04-28 Thread Chacha Golden
Are you looking for getting the absolute position relative to the entire document, try offset instead: http://docs.jquery.com/CSS/offset. On Mon, Apr 27, 2009 at 9:28 PM, cohq82 wrote: > > I found out this http://docs.jquery.com/CSS/position > But it is not relative but rather absolute position.

[jQuery] JCarousel, Transparent PNG and IE6

2009-04-28 Thread Miguel XT
Hi, I'm using JCarousel with transparent PNGs so I need to use a fix for those images to show correctly in IE6. This fix is http://jquery.khurshid.com/ifixpng.php I run $('i...@src$=.png]').ifixpng(); on $(document).ready(); and is fine, but the problem appears when the PNGs are inside a carou

[jQuery] accordion problem

2009-04-28 Thread iam_peter
this website dummie uses the jquery accordion plugin http://gonzo.uni-weimar.de/~atix5565/kim/ for now everything is ok, but their is a bug which lets disapear a div container. try this steps first: portfolio -> installations -> then the thirdmenu appears reload page. now second step: news ->

[jQuery] Novice help -- surely this is easy to accomplish?

2009-04-28 Thread Juliane
A freelance developer designed this superfish menu for me, but he has since taken another job and cannot assist me anymore. I have this page in development: http://www.cmpl.org/infinity/html/aboutus/index2.asp Using this stylesheet for design: http://www.cmpl.org/infinity/html/styles/styles2.

[jQuery] Start Cycle Plugin from External Page Link

2009-04-28 Thread amuhlou
Hello all, I'm using the Cycle plugin to build a photo album feature and am looking for a way to jump to a specific slide when a user clicks a thumbnail on a separate page. For example, I have a thumbnail listing page: http://static.spartaninternet.com/sandbox/schools/library.php When clicking

[jQuery] Re: fadein thumbnails when loaded

2009-04-28 Thread Eric Garside
I don't know that would work, Karl. It would have to be either at the bottom of the page, as the elements wouldn't be in the dom yet if it was just up top. But, that did inspire an idea. If you want to keep the compliance, you could try the following: Test var css = document.create

[jQuery] [treeView] Problem with treeview and Firefox 3

2009-04-28 Thread vg33
I use the jQuery plugin treeView with jQuery 1.3.2 I have a long list (over 500 items), each item with 3 links . Exemple : first item second item With IE8, Opera, Safari and Google Chrome : no problem. Display the tree takes 3 or 4 seconds. But, with Firefox 3.10, it takes over

[jQuery] Re: jQuery form plugin file upload failure

2009-04-28 Thread Jim
Ok, after large amounts of debugging and thinking things through, my co-worker (who originally wrote the piece we're working on) noticed that we close the modal dialog in which our form resides after we make our call to submit. This makes perfect sense because the modal is no longer needed after

[jQuery] Re: how to make an alert before processing a form

2009-04-28 Thread Mike Nichols
subscribe (bind) to your form's 'submit' event . show your alert and return true/false accordingly...false will prevent the form from submitting. On Apr 28, 5:59 am, hybris77 wrote: > i might be tired right now but I cannot seem to figure out > a good way to show an alert before processing a for

[jQuery] Re: buggy .add()

2009-04-28 Thread MorningZ
if "smt" is supposed to mean "something", then yes you did e2 = document.getElementById('xxx'), won't "get" this HTML xxx as the ID is not "xxx", you have "#xxx" xxx would be had with e2 = document.getElementById('xxx'), On Apr 28, 7:43 am, KidsKilla wrote: > Hi there! > > Maybe I misse

[jQuery] Re: How to get file name

2009-04-28 Thread Andy Matthews
You could also do this: $('img').attr('src').split('/').slice(-1); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of David .Wu Sent: Tuesday, April 28, 2009 3:36 AM To: jQuery (English) Subject: [jQuery] How to get file name $('img')

[jQuery] how to make an alert before processing a form

2009-04-28 Thread hybris77
i might be tired right now but I cannot seem to figure out a good way to show an alert before processing a form, the form is not processed using AJAX, just passed on to a PHP script I might however want to implement AJAX when processing the form, hmmm, maybe that will sort me out then I guess /p

  1   2   >