[jQuery] Re: Download a file from server...

2009-01-21 Thread Ricardo Tomasi
You could create a hidden iframe and point it to the file, wouldn't that work? On Jan 22, 5:28 am, Alexandre Plennevaux wrote: > Well, AFAIK It HAS to be triggered by a click event on a A anchor, so, > just make sure your onclick handler returns true. > > For the "force download" functionality,

[jQuery] Re: Download a file from server...

2009-01-21 Thread Alexandre Plennevaux
Well, AFAIK It HAS to be triggered by a click event on a A anchor, so, just make sure your onclick handler returns true. For the "force download" functionality, this writeup of mine might help you: http://www.pixeline.be/blog/2009/php-force-download-script-convert-url-to-localpath/ On Thu, J

[jQuery] Re: $.ajaxSuccess.

2009-01-21 Thread pinky reddy
On 1/21/09, Ami wrote: > > Sorry about my grammar, > English isn't my tang. > > What is the different betwen: > $(document).ajaxSucess(function () {}) > > $('div').ajaxSucess(function () {}) > > $.ajaxSetup (success: function () {} ) > > *When I am execute* > $.ajax(url); > > > Also, how I can ch

[jQuery] Re: form standart submit event doesn't handle by jquery submit event

2009-01-21 Thread ifrond
continue speaking with myself only http://blogs.vertigosoftware.com/snyholm/archive/2006/09/27/3788.aspx Current browsers do not adhere to this part of the html specification. The event only fires when it is activated by a user - and does not fire when activated by code. On Jan 22, 8:50 am, ifr

[jQuery] Re: form standart submit event doesn't handle by jquery submit event

2009-01-21 Thread ifrond
This works: form.get(0).onsubmit = function() { if ($("input:first").val() == "correct") { $("span").text("Validated...").show(); return true; } $("span").text("Not valid!").show().fadeOut(1000); return false; } and somewhere in the action : var f

[jQuery] Re: sortable portlets

2009-01-21 Thread shmuelzon
thanks! not sure how i missed that in the documentation On Jan 20, 3:50 pm, besh wrote: > You can use the "handle" option of the sortable. In this case it would > look like this: > > $(".column").sortable({ >         handle: '.portlet-header', >         connectWith: ['.column'] > > }); > > -- >

[jQuery] Re: Content not fading in correctly

2009-01-21 Thread zeckdude
zeckdude wrote: > > Hello all, > > I am trying to fade in some content, but it's not working correctly. I got > some code at the Nettuts tutorial at > http://nettuts.com/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/ > and changed it a bit so it just fades in and out. > > I

[jQuery] Re: simple jQuery img src Question

2009-01-21 Thread LoicDuros
Thanks everyone for your help. many different ways of doing it... I'll try each of them until something works! THanks! On Jan 21, 11:35 pm, Ricardo Tomasi wrote: > A cross-browser way of doing that: > > $('img').fadeOut(500, function(){ >   $(this).attr('src',newsrc).bind('onreadystatechange loa

[jQuery] Re: Looping JSON Data

2009-01-21 Thread seasoup
or... $.each(theList.list,function (a,b) { alert (b.id + ',' + b.name); }) On Jan 21, 7:30 pm, Ami wrote: > I think that this what R U searching for: > > var theList={"list":[ > {"id":"15","name":"Testing","description":"test","owner":"1","active":"1","featured":"0","machinename":"testing"},

[jQuery] Re: Form Plugin with file upload

2009-01-21 Thread BogusRed
Hi Mike, Sorry for the delayed response. I tried taking a break from it and coming back to it with a fresh mind. It's not easy for me to set up a page for you to test because the app requires a log in. But lets see how far we can get without it. I tried submitting the form in a non-ajax environme

[jQuery] Help to find Plugin

2009-01-21 Thread Cambo
Hi I have seen a great feature on a site I would like to use. The site is using jQuery and I guess a plugin ( unless it's handcoded by the owner) Have a look at www.carlist.ie. On the left of each car there is a star. If you click on the star, the cars details show up in a box on the right hand si

[jQuery] Re: Looping through headers object

2009-01-21 Thread Ricardo Tomasi
I assume you're using the Tablesorter plugin? This should work. var headers = {}; $('#table thead th').each(function(index){ if (index > 2) headers[index] = { sorter: false }; }); $("#table").tablesorter({ headers: headers }); You can also disable headers using metadata, with a

[jQuery] Re: append() not updating DOM

2009-01-21 Thread Ricardo Tomasi
Good you figured it out. IDs being unique are one of the basics of XHTML/CSS/JS coding, guess a page on jQuery.com is not needed for that. On Jan 21, 9:39 pm, Russ Hacker wrote: > Please disregard, I figured it out. > > There is something about jquery--or one of the plug-ins that I am > using--

[jQuery] Re: Syntax similar to IN in SQL

2009-01-21 Thread Ricardo Tomasi
var abc = /^A|B|C$/.test( $('#price_group_lesson').val() ); $('#price_group_lesson_yes')[abc ? 'slideDown' : 'slideUp']('fast') (it could be a one-liner but I splitted it for readability) A simpler improvement you could have done: var p = $('#price_group_lesson').val(); if ( p == 'A' || p == '

[jQuery] Re: simple jQuery img src Question

2009-01-21 Thread Ricardo Tomasi
A cross-browser way of doing that: $('img').fadeOut(500, function(){ $(this).attr('src',newsrc).bind('onreadystatechange load', function() { if (this.complete) $(this).fadeIn(1000); }); }); http://jsbin.com/uriku http://jsbin.com/uriku/edit On Jan 21, 7:30 pm, Balazs Endresz wrote: >

[jQuery] Re: referring back to a specific element

2009-01-21 Thread Ricardo Tomasi
var lastClicked; $('.A_tables').click(function(){ lastClicked = this; }); later on $('.B_tables input').click(function(){ $(lastClicked).css('background','lime'); }); On Jan 21, 7:26 pm, Ron wrote: > Hi, > How do I refer back to a specific element? > > This is the scenario I'm trying t

[jQuery] Re: Looping through headers object

2009-01-21 Thread Ami
Please give as a simple HTML of your table. so we can try help you On Jan 22, 12:21 am, shinobi wrote: > Hi everybody. > I have an html table with a fixed number columns (or headers) and a > variable number of columns, that may vary in numbers depending on data > in the DB. > > I want to make so

[jQuery] Re: Looping JSON Data

2009-01-21 Thread Ami
I think that this what R U searching for: var theList={"list":[ {"id":"15","name":"Testing","description":"test","owner":"1","active":"1","featured":"0","machinename":"testing"}, {"id":"16","name":"Testing","description":"test","owner":"1","active":"1","featured":"0","machinename":"testing"}, {"i

[jQuery] Re: Simple jQuery problem with fading In/Out

2009-01-21 Thread zeckdude
Thanks for your help RSol! I did what you said, but I'm experiencing problems. In firefox, It still won't fade in the second area, and it wont fade back to the first area either. So pretty much, none of it works in Firefox. In Internet Explorer, the first area cuts away before the second area

[jQuery] $.ajaxSuccess.

2009-01-21 Thread Ami
Sorry about my grammar, English isn't my tang. What is the different betwen: $(document).ajaxSucess(function () {}) $('div').ajaxSucess(function () {}) $.ajaxSetup (success: function () {} ) *When I am execute* $.ajax(url); Also, how I can change the data before it's send to the server by us

[jQuery] [autocomplete] Proper way to send id for an auto-completed field

2009-01-21 Thread bayo opadeyi
I would like to send the id of the auto-completed field instead of the text in my post request to the server and am wondering how i could accomplish that. I am quite new to jquery -- The design is complete then, not when there is nothing more to add, but when there is nothing more to take away

[jQuery] Looping JSON Data

2009-01-21 Thread blockedmind
I have data recieved by ajax function of jquery like: {"list":[ {"id":"17","name":"Testing","description":"test","owner":"1","active":"1","featured":"0","machinename":"testing"}, {"id":"16","name":"Another List","description":"Another","owner":"1","active":"1","featured":"0","machinename":"another

[jQuery] Re: select next n "somethings"

2009-01-21 Thread JLundell
RIcardo, Thanks. Removing the .r and properly (I think) installing nextUntil as a plugin (that was part of my problem) made it work for Mac FF3, but not for Safari, which still complains about an undefined symbol. Unfortunately, the symbol isn't specified in the log, an the line number reference

[jQuery] Re: how to do '++' in jQuery

2009-01-21 Thread David .Wu
yup, it's cool, but how about scrollLeft()++? On 1月21日, 下午9時22分, Liam Potter wrote: > This I didn't know, could be useful. > > Balazs Endresz wrote: > > Moreover, as of 1.3 this works like .css, so there's no animation at > > all: > > $("xx").animate({ width: "+=10px" }, 0); > > > (In 1.2 if you

[jQuery] Re: multiple submit sends with CSS Button

2009-01-21 Thread Robert
ah ok, I've found it in application.js I didn't code it for my own, I only have to integrate this function and CSS into this project. My main work is to do the php and html code + sql. Here is the function. (The alert doesn't show up by the way) function trigger_form_submit(ref, button_type) {

[jQuery] Re: Download a file from server...

2009-01-21 Thread MorningZ
You don't want AJAX in this situation have the page post like normal and do what you lay out above... AJAX is *not* the solution to every problem On Jan 21, 6:46 pm, AlexDeLarge wrote: > Hi, > > I have situation like this: I post certain data with $.post to PHP- > script which is supposed t

[jQuery] Re: Syntax similar to IN in SQL

2009-01-21 Thread Dave Methvin
> I am sure there is something in javascript > or jquery where I can say $ > ('#var').attr('value').in("A","B","C") You could do this: /^(A|B|C)$/.test(('#var').attr('value')); You can also use the i (ignore case) flag with that which is handy.

[jQuery] Re: Does IE7 still have a problem with clone()?

2009-01-21 Thread Dave Methvin
Rick, what's the specific problem with clone() that you have? I think there may be problems, but I'd like to collect some test cases.

[jQuery] Re: multiple submit sends with CSS Button

2009-01-21 Thread Karl Rudd
Robert, We need to see the code for the "trigger_form_submit" function before we can understand what is going wrong. Karl Rudd On Thu, Jan 22, 2009 at 9:47 AM, Robert wrote: > > A normal form with login and password. > > I included jquery in my functions file, so its everywhere included. > jqu

[jQuery] Re: multiple submit sends with CSS Button

2009-01-21 Thread Karl Rudd
Rick, I don't think Ricardo meant to be "damning". Your response was a bit harsh. Perhaps English isn't his native language, or perhaps he typed his response in a rush without thinking about the wording. I find that I think the best of people's motives and it makes things a lot easier (and it's u

[jQuery] XML Sorting using jQuery - is it possible?

2009-01-21 Thread skube
It seems jQuery is really great at traversing an XML object. It is quite easy to gather and filter node data. However I can't seem to find any information regarding sorting XML using jQuery. Is it possible? Or is there a plug-in? I have a project which requires me to read an XML file, then filter

[jQuery] Re: global events??? actions on multiple forms

2009-01-21 Thread Karl Rudd
There are a few ways. Have a read of this: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F Karl Rudd On Thu, Jan 22, 2009 at 9:26 AM, phanorcoll wrote: > > hi, > > i have the following code: > > $(function() { >$('.error').hide(); >

[jQuery] Download a file from server...

2009-01-21 Thread AlexDeLarge
Hi, I have situation like this: I post certain data with $.post to PHP- script which is supposed to handle the data, create a file from it and then trigger browser to open a Save As-dialog. Everything works just fine except the Save As-dialog, I just can't make it pop-up. For the Save As dialog

[jQuery] Re: Location Persistence... Almost

2009-01-21 Thread Jed
I went back and changed the code to match exactly what's behind Sample 0 on the treeview demo page, but still no joy. I can see the tree expand to show the proper subs, but then the page changes, and when the tree reloads that new sub is closed again.

[jQuery] Re: append() not updating DOM

2009-01-21 Thread Russ Hacker
Please disregard, I figured it out. There is something about jquery--or one of the plug-ins that I am using--that is adamant about the elements having unique ids and not just a "unique path". My bad. When I make the elements' id unique and append() it, my problem seems to go away. Hopes this he

[jQuery] Re: append() not updating DOM

2009-01-21 Thread Russ Hacker
Still no solution, but I thought I would post an update First, I am using the LiveQuery plugi-n and based other posts' recommendations, I ahve ensured that I am using the latest version compatible with jquery 1.3. Secondly, I have placed some Firebug statements in the page to get the actual v

[jQuery] global events??? actions on multiple forms

2009-01-21 Thread phanorcoll
hi, i have the following code: $(function() { $('.error').hide(); $('input.text-input').css({ backgroundColor:"#FF" }); $('input.text-input').focus(function(){ $(this).css({ backgroundColor:"#FFDDAA" }); }); }); })

[jQuery] [Tablesorter] Looping through headers object

2009-01-21 Thread shinobi
Hi everybody. I have an html table with a fixed number columns (or headers) and a variable number of columns, that may vary in numbers depending on data in the DB. I want to make sortable one or two columns of the fixed ones, so I would like to know how to loop through the headers object in order

[jQuery] Question Regarding Superfish

2009-01-21 Thread Amit Shah
Hi, I am trying to use Superfish Jquery menu in IE6. It all works fine except that the menu which have sub menus displays 2 arrows next to the text. I am using the following code: // initialise Superfish $(document).ready(function(){ $("ul.sf-menu").superfish(); }); Can so

[jQuery] Re: multiple submit sends with CSS Button

2009-01-21 Thread Robert
A normal form with login and password. I included jquery in my functions file, so its everywhere included. jquery should handle the trigger? I don't use jquery and CSS normally. But I have to include the CSS and the trigger doesn't submit without jquery. Here is the whole code of the form,

[jQuery] Re: multiple submit sends with CSS Button

2009-01-21 Thread Rick Faircloth
> "that's a useless pice (sic) of code" Can't you think of a less damning way to that, Ricardo? Perhaps, "I'm not sure what your code is supposed to do. What does the trigger_form_submit() function do? And I don't see where any jQuery fits into your code." See how nice that sounds and still g

[jQuery] Re: ui.tabs question

2009-01-21 Thread Alexandre Plennevaux
In that case, thank you Klaus for the preventive comment. On Wed, Jan 21, 2009 at 11:25 PM, Klaus Hartl wrote: > > Sorry to hear that, but I was only referring to MorningZ's example, > which contained an outdated syntax and I wanted to prevent you (and > everybody else) to use it and wonder why

[jQuery] Re: ui.tabs question

2009-01-21 Thread Klaus Hartl
Sorry to hear that, but I was only referring to MorningZ's example, which contained an outdated syntax and I wanted to prevent you (and everybody else) to use it and wonder why it wouldn't work. I'll try to quote better next time. --Klaus On 21 Jan., 22:43, Alexandre Plennevaux wrote: > Well,

[jQuery] Re: [validate] Group validation error highlighting

2009-01-21 Thread shiney
I don't have the page live anywhere but below is the test file I'm using. After loading the page, the behavior is seen when I: 1) submit the page with the default loaded data. Both 'endDate' and 'endTime' fields are highlighted as expected 2) move to 'endDate' field and adjust the date to '1/21/

[jQuery] Re: cluetip not loading external web page

2009-01-21 Thread Karl Swedberg
I just replied to your direct email to me, but in case you see this first, you should be able to do something like this: $('someselector').cluetip({ cluetipClass: 'jtip', arrows: true, dropShadow: false, hoverIntent: false, sticky: true, closePosi

[jQuery] Re: JQuery error with java applet running

2009-01-21 Thread Mike Alsup
>  Java class LobbyClientApp has no public field or method named > "jQuery1232546999783" >  In jquery-1.2.6.js Line 667 > > The JQuery code in that file is: id = elem[ expando ] = ++uuid; > > I can’t understand why this bit of JQuery would be trying to interact > with the applet. Does anyone have

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-21 Thread Mike Alsup
> also how and where to put in your codes if i have the slides in class="slideshow" id="jQuerySlideshow"> and my script is as follows: > > $(function() { >         $('#jQuerySlideshow').cycle({ >                 fx:    'fade', >                 speed:  1000 >          }); > > }); I don't underst

[jQuery] Syntax similar to IN in SQL

2009-01-21 Thread rsmolkin
Hi All, I am sure this is an easy question for someone in here. Is there a better, cleaner, shorter way to write this: if ( ($('#price_group_lesson').attr("value") == 'B') || ($ ('#price_group_lesson').attr("value") == 'C') || ($ ('#price_group_lesson').attr("value") == 'D') ){

[jQuery] append() not updating DOM

2009-01-21 Thread Russ Hacker
I have problem with elements that have been added to the DOM via append() not being reliably returned via selectors. Happens when I perform append between containers thus. 1. Append Container 1 2. Append Container 1 3. Append Contrainer 2 4. Append Contrainer 2 5. Append Container 1 Say yo

[jQuery] Syntax similar to IN in SQL

2009-01-21 Thread pixelwiz
Hi All, I am sure this is an easy question for someone in here. Is there a better, cleaner, shorter way to write this: if ( ($('#price_group_lesson').attr("value") == 'B') || ($ ('#price_group_lesson').attr("value") == 'C') || ($ ('#price_group_lesson').attr("value") == 'D') ){

[jQuery] colon in xml tag on webkit - cannot select

2009-01-21 Thread burrowing owl
Using jquery 1.2.6, but I quickly tested this on 1.3 as well. I am parsing the google books search feed http://code.google.com/apis/books/docs/gdata/developers_guide_protocol.html#SearchingForBooks (about 1/3 down the page is an example feed). This feed has tags like , , . This code succeeds in

[jQuery] Re: cluetip not loading external web page

2009-01-21 Thread Adam
Karl, Is there anyway to use cluetip with GET requests? My serlvet requires a query string parameter, so POST won't really work in my scenario. thanks, Adam On Jan 21, 11:07 am, Karl Swedberg wrote: > Hi Adam, > > > When I try to setup my cluetip using the apparent settings to > > achieve thi

[jQuery] Re: multiple submit sends with CSS Button

2009-01-21 Thread Ricardo Tomasi
that's an useless pice of code, what does the trigger_form_submit() function do, and where is jQuery in that? On Jan 21, 4:19 pm, Robert wrote: > Hi, > > i have a Problem with a CSS-Button. Evertime when I click the Button, > the formular will be send three times. > > A normal input submit butto

[jQuery] Re: ui.tabs question

2009-01-21 Thread Alexandre Plennevaux
Well, quite Frankly Klaus, i started this project 3 years ago and i used the tabs when it was but a plugin like another. The fact that now i have to integrate ui.core with ui.tabs is not really a good thing in my case: i don't have needs for anything else from the ui library, therefore i wish that

[jQuery] Re: simple jQuery img src Question

2009-01-21 Thread Balazs Endresz
Also, see this discussion about using the load event with images: http://groups.google.com/group/jquery-dev/browse_thread/thread/24b107e84adeaaee On Jan 21, 8:55 pm, Bohdan Ganicky wrote: > Fixed braces: > > $('#image').fadeOut(500, function() { >   $(this).attr('src','images/'+newImg).load(func

[jQuery] referring back to a specific element

2009-01-21 Thread Ron
Hi, How do I refer back to a specific element? This is the scenario I'm trying to build: Clicking on any field in table A will display table B. Clicking on any field in table B will 1) change attributes of the field that was clicked in table A (for example, change bg color). 2) update the correc

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread amuhlou
Oh cool, I will have to check that out for sure. Thanks! On Jan 21, 1:31 pm, Ricardo Tomasi wrote: > There is also the Cornerz jQuery plugin. It uses canvas/VML, works > perfectly for all I've seen.http://labs.parkerfox.co.uk/cornerz/ >

[jQuery] Re: jquery ui tabs 3 problem

2009-01-21 Thread Bohdan Ganicky
Hi, I don't recommend hiding it this way. Users without JS enabled wouldn't see the tab's content. Try this instead: http://www.learningjquery.com/2008/10/1-awesome-way-to-avoid-the-not-so-excellent-flash-of-amazing-unstyled-content -- Bohdan On Jan 21, 7:26 pm, Klaus Hartl wrote: > Attach the

[jQuery] Re: [validate] filled on Mac bug

2009-01-21 Thread Jörn Zaefferer
Hard to tell. See http://docs.jquery.com/Discussion#Support_Questions Jörn On Wed, Jan 21, 2009 at 6:52 PM, TUNGA wrote: > > Hello, > > is there any one who has experience on mac (both safari and FF) this > bug. none of rules are working: > >rules: { >sec

[jQuery] Re: Accordion push to bottom

2009-01-21 Thread Jörn Zaefferer
Set fillSpace: true. Jörn On Wed, Jan 21, 2009 at 9:39 PM, Dan Vega wrote: > > I have a sidebar that is 450 in height. I have 5 accordion menus and > they are working fine. What I would like to do though is when you > click one of the items for the other icons to push to the very bottom > of th

[jQuery] Accordion push to bottom

2009-01-21 Thread Dan Vega
I have a sidebar that is 450 in height. I have 5 accordion menus and they are working fine. What I would like to do though is when you click one of the items for the other icons to push to the very bottom of the content area just like it does on http://www.hp.com/. Does anyone know how to do this

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread Vik
Thanks, Ricardo. I will check this out as well. On Jan 21, 10:31 am, Ricardo Tomasi wrote: > There is also the Cornerz jQuery plugin. It uses canvas/VML, works > perfectly for all I've seen.http://labs.parkerfox.co.uk/cornerz/ > > On Jan 21, 4:10 pm, Vik wrote: > > > Thanks very much for this f

[jQuery] Re: simple jQuery img src Question

2009-01-21 Thread Bohdan Ganicky
Fixed braces: $('#image').fadeOut(500, function() { $(this).attr('src','images/'+newImg).load(function() { $(this).fadeIn(1000); }); }); -- Bohdan On Jan 21, 8:54 pm, Bohdan Ganicky wrote: > In theory it would be something like this: > > $('#image').fadeOut(500, function() { >   $(this

[jQuery] Re: simple jQuery img src Question

2009-01-21 Thread Bohdan Ganicky
In theory it would be something like this: $('#image').fadeOut(500, function() { $(this).attr('src','images/'+newImg).load(function() { $(this).fadeIn(1000); }); } ...but I'm not at all sure if the "load()" captures the "src" attribute change like that. -- Bohdan On Jan 21, 7:54 pm, Lo

[jQuery] Re: When to use LiveQuery plugin

2009-01-21 Thread Brandon Aaron
What is the issue you are having? Which version of Live Query are you using? Try using the very latest/edge version of Live Query that you can download from github. http://github.com/brandonaaron/livequery/tree/master -- Brandon Aaron On Wed, Jan 21, 2009 at 12:15 PM, Rics wrote: > > Karl, > >

[jQuery] Re: jquery ui tabs 3 problem

2009-01-21 Thread aaron
Come on, seriously, don't you think I tried that beforehand.

[jQuery] Re: Cycle plugin an absolute positioning

2009-01-21 Thread illuminati78
Very useful article but have you guys checked to see if it works in IE7 or IE6 - dont work there for me. just stacks the images there. also how and where to put in your codes if i have the slides in and my script is as follows: $(function() { $('#jQuerySlideshow').cycle({

[jQuery] form standart submit event doesn't handle by jquery submit event

2009-01-21 Thread ifrond
Example from documentation $("form").submit(function() { if ($("input:first").val() == "correct") { $("span").text("Validated...").show(); return true; } $("span").text("Not valid!").show().fadeOut(1000); return false; }); html: Type 'correct' to vali

[jQuery] [validate]

2009-01-21 Thread TUNGA
Hello, is there any one who has experience on mac (both safari and FF) this bug. none of rules are working: rules: { secondSentDocumentsTo: { // required: "#aTextArea:filled" required: function()

[jQuery] simple jQuery img src Question

2009-01-21 Thread LoicDuros
Hi, I'm new to JQuery and used to use Scriptaculous. I would like to make the following: A function to fade out an image, then change the src of the image, and once the new src is loaded, to fade in the image back (so that it's fading in with the new image loaded). Here is how I did it using Sc

[jQuery] [validate] filled on Mac bug

2009-01-21 Thread TUNGA
Hello, is there any one who has experience on mac (both safari and FF) this bug. none of rules are working: rules: { secondSentDocumentsTo: { // required: "#aTextArea:filled" required: function()

[jQuery] Re: When to use LiveQuery plugin

2009-01-21 Thread Rics
Karl, There is a bug somewhere between JQuery 1.3 and LiveQuery Plugin. I just can't put LiveQuery Plugin to work with JQuery 1.3. It's odd. I will use previous JQuery version until they implement all the events. Untill there I need to use LiveQuery... =((( On 19 jan, 14:43, Karl Swedberg wro

[jQuery] multiple submit sends with CSS Button

2009-01-21 Thread Robert
hm, my first request isn't shown online. Here is my question again: Hi, i have a Problem with a CSS-Button. Evertime when I click the Button, the formular will be send three times. A normal input submit button does the same task exactly one time. Here is my Code for this Button (only the first

[jQuery] multiple submit sends with CSS Button

2009-01-21 Thread Robert
Hi, i have a Problem with a CSS-Button. Evertime when I click the Button, the formular will be send three times. A normal input submit button does the same task exactly one time. Here is my Code for this Button (only the first button is important, Abort Button works fine at it is). jqeury 1.2.6

[jQuery] Re: $("area") not working in IE (sorry if this is a repost)

2009-01-21 Thread Chrisw
Thank you very much to everyone I got the bug fixed and got to learn about some new tools for debugging in IE. Could not have done without everyone! -cw On Jan 20, 10:30 pm, Chrisw wrote: > thanks for your input I will give this a try. > > p.s sorry for my late response I was out of town. > > O

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread Ricardo Tomasi
There is also the Cornerz jQuery plugin. It uses canvas/VML, works perfectly for all I've seen. http://labs.parkerfox.co.uk/cornerz/ On Jan 21, 4:10 pm, Vik wrote: > Thanks very much for this feedback. Yes, Safari and Firefox 3 are > easy, because they support that CSS property. The tough thing

[jQuery] Re: ui.tabs question

2009-01-21 Thread Klaus Hartl
Seems to be using a fairly outdated version. The event's name to bind has changed since quite a while. Why not take a look at the documentation: http://docs.jquery.com/UI/Tabs#Events --Klaus On 21 Jan., 16:36, MorningZ wrote: > I've got this code working if it helps > > $("#TabContainer ul.ta

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread amuhlou
Ah, I was a tad confused there :) On Jan 21, 1:12 pm, Vik wrote: > Sorry, I didn't see your reference to the DD_roundies script. I'll > check it out! > > On Jan 21, 10:10 am, Vik wrote: > > > Thanks very much for this feedback. Yes, Safari and Firefox 3 are > > easy, because they support that C

[jQuery] Re: jquery ui tabs 3 problem

2009-01-21 Thread Klaus Hartl
Attach the class to hide a tab panel beforehand: ... In the future please post jQuery UI related questions to the jQuery UI mailing list. --Klaus On 21 Jan., 18:03, aaron wrote: > I am using jQuery UI Tabs 3 fromhttp://stilbuero.de/jquery/tabs_3/. > The problem I have is the delay before t

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread amuhlou
Firefox 2 supports -moz-border-radius, though the rendering may not be as pretty. As for the IE's, you need to rely on a script method, and I prefer the DD_roundies script I mentioned above. It also appears as though you could pass an extra parameter to that script to make it work on Firefox if y

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread Vik
Sorry, I didn't see your reference to the DD_roundies script. I'll check it out! On Jan 21, 10:10 am, Vik wrote: > Thanks very much for this feedback. Yes, Safari and Firefox 3 are > easy, because they support that CSS property. The tough thing is to > find a solution that works on all major bro

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread Vik
Thanks very much for this feedback. Yes, Safari and Firefox 3 are easy, because they support that CSS property. The tough thing is to find a solution that works on all major browsers, including IE7, IE6, Firefox 2. Is there a way to do this yet? On Jan 21, 9:41 am, amuhlou wrote: > Safari and F

[jQuery] Re: [validate] checkboxes named by cms as pollutants[one],pollutants[two]

2009-01-21 Thread Jörn Zaefferer
The plugin assumes that a group of checkboxes has a single name... The groups option might help to group the messages back together into one, but you'll still have to specify rules for each input. Jörn On Wed, Jan 21, 2009 at 1:07 PM, kat...@googlemail.com wrote: > > I am using a CMS (Drupal) a

[jQuery] image manipulation

2009-01-21 Thread Ronn
I'm trying to take a standard .png image and turn the color all the way down so it looks like a shadow(solid black). I have seen plug-ins like the refection plug-in that manipulates the image. Can anyone point me in the right direction? Thanks

[jQuery] Re: A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread amuhlou
Safari and Firefox have css properties you can use to achieve rounded corners: -moz-border-radius and -webkit-border-radius, then for IE6 and 7 I use the DD_roundies script: http://dillerdesign.com/experiment/DD_roundies/ I made a quick test page to be sure it worked with absolute positioning an

[jQuery] Re: jquery ui tabs 3 problem

2009-01-21 Thread Liam Potter
c'mon, seriously, you knew what you had to do, you even said it. style="display:none" aaron wrote: I am using jQuery UI Tabs 3 from http://stilbuero.de/jquery/tabs_3/. The problem I have is the delay before the JS loads. You can see all the tabs for a couple of seconds, then they line up. Is

[jQuery] jquery ui tabs 3 problem

2009-01-21 Thread aaron
I am using jQuery UI Tabs 3 from http://stilbuero.de/jquery/tabs_3/. The problem I have is the delay before the JS loads. You can see all the tabs for a couple of seconds, then they line up. Is there some way to set display:none or some equivalent to hide these even before the scripts load?

[jQuery] Re: ui.tabs question

2009-01-21 Thread Richard D. Worth
A couple other people have reported this same issue. It was because they were using incompatible versions of jQuery and jQuery UI. Make sure you're using one of the following jQuery UI 1.5.3 with jQuery 1.2.6 (not 1.3) jQuery UI 1.6rc4 with jQuery 1.2.6 (not 1.3) jQuery UI 1.6rc5 with jQuery 1.3 (

[jQuery] Re: Put event click on a Radio group

2009-01-21 Thread betweenbrain
Hi Twi, Check out http://betweenbrain.com/sandbox/radio-test.html. I'm getting an event on all three. The only thing I did was to add "$ (document).ready(function(){ " Let me know if that does it. Matt On Jan 21, 10:43 am, Twi wrote: > Hi, > > I trying to put the click event on some radio but

[jQuery] Re: Possible IE problem with animate() and overflow?

2009-01-21 Thread Liam Potter
how could you animate an overflow property anyway? use .css $("#foo").css({overflow: "auto"}); ezod wrote: Hi there, are there any known issues with IE (6 & 7) and animate()? I tried something like this: Test $(document).ready(function() { $("#foo").animate

[jQuery] Re: Using variables in attribute selectors

2009-01-21 Thread Liam Potter
no proble mate. I couldn't figure this out when I was first learning either :) TimG wrote: Hi Liam, Bingo! Thank you so much -- I knew it must be something like that... On Jan 21, 5:06 pm, Liam Potter wrote: var VarName = something $("#tree li a[custom="+ VarName +"]").css('background-

[jQuery] Re: superfish question

2009-01-21 Thread David Meiser
Do you have a link? It's a little hard to diagnose without being able to see the problem(s). Thanks! On Wed, Jan 21, 2009 at 10:04 AM, mckag001 wrote: > > I have superfish dialed in great except for two little issues. > > 1. In IE6, whenever I hit the back button after clicking on a button, >

[jQuery] Possible IE problem with animate() and overflow?

2009-01-21 Thread ezod
Hi there, are there any known issues with IE (6 & 7) and animate()? I tried something like this: Test $(document).ready(function() { $("#foo").animate({"overflow" : "auto"}, "fast"); }); Foobar and the IE throws an error: "Could not get the

[jQuery] A Way to Do Curved Corners, with Borders, on an Absolutely Positioned Object?

2009-01-21 Thread Vik
Has anyone found an approach for curved corners, with borders, on an absolutely positioned element, that works on the major browsers? Thanks very much in advance to all for any info. Note - I'm trying lots of different approaches to do this. Here's an odd case of a demo that works in Mac Firefox

[jQuery] Re: [Treeview] CSS Styling Open Item

2009-01-21 Thread betweenbrain
I have succeeded in finding a way to add a custom style to open Treeview items, toggle their states when clicked, and preserve that state with the use of an expression. The working code, albeit ugly, if as follows: $(document).ready(function(){ var count = 0;

[jQuery] Re: Using variables in attribute selectors

2009-01-21 Thread TimG
Hi Liam, Bingo! Thank you so much -- I knew it must be something like that... On Jan 21, 5:06 pm, Liam Potter wrote: > var VarName = something > $("#tree li a[custom="+ VarName +"]").css('background-color', 'yellow'); >

[jQuery] Re: cluetip not loading external web page

2009-01-21 Thread Karl Swedberg
Hi Adam, When I try to setup my cluetip using the apparent settings to achieve this, the cluetip closes if the mouse pointer enters and then leaves the area of the cluetip Remove the mouseOutClose: true option. It is set to false by default, and that is what you'll need. --Karl _

[jQuery] Re: Using variables in attribute selectors

2009-01-21 Thread Liam Potter
var VarName = something $("#tree li a[custom="+ VarName +"]").css('background-color', 'yellow'); TimG wrote: I've done a lot of search on this subject but haven't been able to find any examples of using variables in [attribute=xx] selectors, only literals. As far as I can see it doesn't work

[jQuery] JQuery error with java applet running

2009-01-21 Thread Nick
Hi, I have a web page that initializes an applet and I get a Javascript error: Java class LobbyClientApp has no public field or method named "jQuery1232546999783" In jquery-1.2.6.js Line 667 The JQuery code in that file is: id = elem[ expando ] = ++uuid; I can’t understand why this bit of

[jQuery] Open in new Window based on C# case statement?

2009-01-21 Thread mcsst...@googlemail.com
Hi All, I've recently taken over a project after one member of staff left and he's done his navigation in a bit of a strange way that's causing a bit of an issue. The navigation is populated from a database that has a 'Shortcut Type' attributed to it. What I want to achieve is if the shortcut ty

  1   2   >