[jQuery] Re: limit drag to a zone

2009-04-28 Thread gostbuster
Hi, Thank you for you answer. I didn't see this page. I'm gonna study it. Thanks again ! On 27 avr, 18:42, Remon Oldenbeuving r.s.oldenbeuv...@gmail.com wrote: Hi, First, you should post this in the jquery-ui google group. Second, your request is being handled in the draggable demo page.

[jQuery] Re: Safari 3.2.1 and $.ajax POST doesn't work

2009-04-28 Thread alex.zeta
Eric, thank you for your explanation.. But i've got some confusion in my head... Your not actually submitting the form by ajax. In the full version of my scripts, i also sent a datastring as variable through the ajax call, and the receiving page is getting correctly that parameters.. do you

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

2009-04-28 Thread gostbuster
Okay everyone, I tried this : $('#plan').click(function(event) { alert(click plan); }); $('#plan .emplacement_plan').click(function(event){ alert(click emp); return false; }); and it WORKS ! but this way is

[jQuery] jqery.load missing html tags

2009-04-28 Thread clicforw...@googlemail.com
Hello, im using .load to get a part of a html site into my div. Problem: For exapmle i have some markup like: pstrongsome text/strong/p When i load this content the p tag is closing befor of the strong tag. Looks like this: p/pstrongsome text/strong script type=text/javascript

[jQuery] How to get file name

2009-04-28 Thread David .Wu
img src=images/xxx.gif $('img').attr('src') - This will get images/xxx.gif How to get xxx.gif by jQuery?

[jQuery] Re: How to get file name

2009-04-28 Thread David .Wu
If I use split, how to get the last array? On 4月28日, 下午6時39分, Remon Oldenbeuving r.s.oldenbeuv...@gmail.com wrote: I dont think there's a real jQuery way, you could use regular expressions, or maybe split the string with .split('/') On 28 apr 2009, at 10:36, David .Wu chan1...@gmail.com

[jQuery] Re: How to get file name

2009-04-28 Thread David .Wu
I got it, thanks everyone. $('img').attr('src').split('/').pop(); On 4月28日, 下午6時39分, Remon Oldenbeuving r.s.oldenbeuv...@gmail.com wrote: I dont think there's a real jQuery way, you could use regular expressions, or maybe split the string with .split('/') On 28 apr 2009, at 10:36, David

[jQuery] Re: jqery.load missing html tags

2009-04-28 Thread Charlie
got similar results however if take out the "*" it works fine. The "*" is redundant since jQuery will look for all anyway clicforw...@googlemail.com wrote: Hello, im using .load to get a part of a html site into my div. Problem: For exapmle i have some markup like: pstrongsome

[jQuery] Periodical Updater

2009-04-28 Thread Alaa
HI, I tried to implement some code that do the same as Ajax.periodicalUpdater in Prototype, when I run it in the browser, it works, but the memory used by the browser getting bigger and bigger, so the browser will not respond anymore, Here is my code script type=text/javascript

[jQuery] Re: Events without $(document).ready()?

2009-04-28 Thread MorningZ
First you need to understand what .ready() is and does (http:// docs.jquery.com/Events/ready#fn). second, if you want to fire an event when someone touches a control, then you probably want to use .focus(), not .change(), but what you define that as may be different than what I *think* you

[jQuery] Re: How to get file name

2009-04-28 Thread Steven Yang
i dont think there is actually a jQuery way.i think your best bet is regular expression but sorry i am not good at regular expression myself but you can look at it and find your solution

[jQuery] Re: fadein thumbnails when loaded

2009-04-28 Thread Rick Faircloth
In the head you can do this: script type=text/javascript document.documentElement.className = 'js';/script Then you can set styles for elements as descendants of .js. Karl...will you explain a little more about what this means and perhaps give an example of its implementation? Or is there a

[jQuery] Re: How to get file name

2009-04-28 Thread bjorsq
This will only get you the first image filename in the document - to get all of them, use something like this: var filenames = []; $('img').each(function(){ filenames.push($(this).attr('src').split('/').pop()); }); now filenames contains the filenames of all the images in the page

[jQuery] buggy .add()

2009-04-28 Thread KidsKilla
Hi there! Maybe I missed smt, but seems like this is a bug: div id=#xx/div div id=#yy/div script type=text/javascript src=jquery.js/script script type=text/javascript var e1 = document.getElementById('yyy'), e2 = document.getElementById('xxx'), $e = $(e1);

[jQuery] load and unload site

2009-04-28 Thread clicforw...@googlemail.com
Hello, im loading external site like this. $('a#link').click(function(){ $(#playGround div).load(http://www.mysite.de;); return false; }); how can i unload this site? i tried: $(#playGround div).remove(html); and: $(#playGround div).unload(html); but both is not

[jQuery] Re: binding after .get()

2009-04-28 Thread hphoeksma
Hi... well the docs says: Currently not supported: ..., change, ... And that's what I need ;-) Henjo On Apr 17, 9:02 pm, Andy Matthews li...@commadelimited.com wrote: If you're using a current version of jQuery, then the liveQuery method is for you.

[jQuery] Re: How to get file name

2009-04-28 Thread RobG
On Apr 28, 6:36 pm, David .Wu chan1...@gmail.com wrote: img src=images/xxx.gif $('img').attr('src') - This will get images/xxx.gif How to get xxx.gif by jQuery? img.src.replace(/.*\//, '')); -- Rob

[jQuery] Re: How to get file name

2009-04-28 Thread Remon Oldenbeuving
I dont think there's a real jQuery way, you could use regular expressions, or maybe split the string with .split('/') On 28 apr 2009, at 10:36, David .Wu chan1...@gmail.com wrote: img src=images/xxx.gif $('img').attr('src') - This will get images/xxx.gif How to get xxx.gif by jQuery?

[jQuery] Re: Please Wait While Processing help

2009-04-28 Thread Shadraq
Remon, Dexter, Mike Thanks for giving me some good ideas to look into. If I run into any problems I will be sure to reply to this thread. Thanks for taking the time to help me out. - Shadraq

[jQuery] Re: load and unload site

2009-04-28 Thread Charlie
I don't know first one is semantically correct or not but it works: $("#playGround div").html(""); also $("#playGround div").contents().remove(); also $("#test_div *").remove(); clicforw...@googlemail.com wrote: Hello, im loading external site like this.

[jQuery] Re: Help About Using JQuery With Struts 2

2009-04-28 Thread ibmso...@gmail.com
The Problem Is That When i Don't Put an Action like : form name=contact action = , the form doesn't want to add the data But Whene i Put something like : html:form name=contact action =/NewLocation It Works , But The Field That use struts r not those that i recuperate from var loginClient

[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

[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] 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 dist...@yahoo.com wrote: i might be tired right now but I cannot seem to figure out a good way to show an alert before

[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] [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 : ul lifirst item a href=action1img src=icon1 //a a href=action2img src=icon2 //a a href=action3img src=icon3 //a /li lisecond item a href=action1img src=icon1 //a a

[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: head titleTest/title script

[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

[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

[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:

[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 quang...@gmail.com wrote: I found out this http://docs.jquery.com/CSS/position But it is not relative but rather

[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: script type=text/javascript src=/Portals/19/jquery-1.3.1.min.js/ scriptscript type=text/javascript $(document).ready(function() { // COLOUR autumn

[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

[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: 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

[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

[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 k...@englishrules.com 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

[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

[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:

[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: jQuery next() to find selectoption

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] 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

[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: ?= base_url(); ?public/js/fck/,

[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

[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 dist...@yahoo.com 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?  

[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

[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

[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? script type=text/javascript $(document).ready(function() { $(#commentForm).validate({meta: validate}); }); /Jesper On 27 Apr., 14:14, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: You need to add a

[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 taho...@tiscali.nl 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

[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: 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=selectid=10 On Mar 24, 7:49 pm, .Nil nileshd.kulka...@gmail.com wrote: Hi, I have an Aspx page in which

[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

[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=selectid=10 On Mar 24, 12:19 pm, .Nil nileshd.kulka...@gmail.com wrote: Hi, I'm using JBind in my

[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 sulfu...@gmail.com wrote: Hi there, I searched the internet for hours but

[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: [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] Re: Problem with treeview and Firefox 3

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

[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 egypt...@yahoo.comwrote: Hello, Searching for

[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 joern.zaeffe...@googlemail.com wrote: One alternative approach can be found

[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

[jQuery] Re: div contains li - 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

[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 thomasmal...@gmail.com 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

[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

[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 of it.

[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

[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

[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? td jscontent=address style=vertical-align: middle; width: 100%; jstcache=98050 Drexel Ct, Lemon Grove, CA 91945/td I tried with this without any success: var vtd = $(.googledir tr

[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

[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] Menu / prev()

2009-04-28 Thread HerrJuergen
Hi, i'm trying to create a Tree Menu as follows ul li class=nav_main_inactiveCategory A/li li class=nav_sub_inactiveCategory A, Subcategory A/li li class=nav_sub_inactiveCategory A, Subcategory B/li li class=nav_sub_inactiveCategory A, Subcategory C/li li

[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? td jscontent=address style=vertical-align: middle; width: 100%; jstcache=98050 Drexel Ct, Lemon Grove, CA 91945/td I tried with this without any success: var vtd = $(.googledir tr

[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] 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 kyn...@gmail.com 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

[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 thomasmal...@gmail.com wrote: And I'm not going out of my way to change the subject...I'm not sure what's

[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! chriskgre...@gmail.com wrote: Hi, Just

[jQuery] Simple next/prev controls for select

2009-04-28 Thread René
Assuming: select id=selector option value=0 selected=selectedBoth/option option value=1Red/option option value=2Blue/option option value=3Green/option /select a id=prevPrev/a a id=nextNext/a Just wondering if someone has figured a simple jQuery function for moving through the a select list

[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:

[jQuery] Re: Simple next/prev controls for select

2009-04-28 Thread Charlie Griefer
On Tue, Apr 28, 2009 at 1:56 PM, René renefourn...@gmail.com wrote: Assuming: select id=selector option value=0 selected=selectedBoth/option option value=1Red/option option value=2Blue/option option value=3Green/option /select a id=prevPrev/a a id=nextNext/a Just wondering if

[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] 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. div id=main div id=group1 div id=subgroup ... /div /div div id=group2 div id=subgroup ... /div

[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] 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

[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

[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 dragon-fly...@hotmail.com wrote: Hi, I have the following html and would like to find out how to select #subgroup under

[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: 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

[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. div id=section_list ul li class=Section id=one a href=../a

[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 li tags assigned a background image. On Apr 28, 6:37 pm, B barrett...@gmail.com 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 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] Trouble selecting a P inside a repeating DIV

2009-04-28 Thread Tobias
Hello - My basic code is something like div class=insidepost pparagraph 1/p pparagraph 2/p pparagraph 3/p /div div class=insidepost pparagraph 1/p pparagraph 2/p pparagraph 3/p /div I was hoping to use $(.insidepost p:eq(1)).addClass(cambottomline);

[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 prillychar...@gmail.comwrote: 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

[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

[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=ForumBrowseforum_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 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: 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?

  1   2   >