[jQuery] Re: please help me for the performance

2009-02-06 Thread jQuery Lover
Removing image reflection might improve performance... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 2:58 AM, David .Wu wrote: > > url: http://chan.idv.tw:90/test/marquee/marquee.html > rar: http://chan.idv.tw:90/test/marquee/marquee.rar > > Hi, t

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-06 Thread ShurikAg
Thank you very much!!! I have just answered to all I was interested in this topic! Thanks. On Feb 6, 11:13 pm, jQuery Lover wrote: > 1. you can acces them like this $('tr td', this).each(...); Also see > here for custom plugins and > functions:http://jquery-howto.blogspot.com/search/label/plug

[jQuery] Re: traversing ajax response with .find in Safari/Chrome

2009-02-06 Thread jQuery Lover
var newItem=$("div#item", response).html(); Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb 7, 2009 at 9:02 AM, pedalpete wrote: > > I'm trying to get a div from an html ajax response. > my code is pretty simple > > [code] >success: function(response){

[jQuery] Re: HELP, how to catch these elements ?

2009-02-06 Thread jQuery Lover
To select all tables: $('.cbFieldsContentsTab') OR $('.cbFields') To select all divs: $('.tab-content') OR $('.cb_tab_conten') OR $('.cb_tab_tab_main') To select all tables AND divs: $('.cbFields, .tab-content') Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Sat, Feb

[jQuery] Re: Several questions regarding jQuery Approach...

2009-02-06 Thread jQuery Lover
1. you can acces them like this $('tr td', this).each(...); Also see here for custom plugins and functions: http://jquery-howto.blogspot.com/search/label/plugin 2. when you use $('table') you'll get a selection of all tables. If you do this you would get the same object instance: var $table = $(

[jQuery] Re: Ajax callback parameter endless

2009-02-06 Thread ilovejquery
I ran this code: function confirm(msg,callback_true,callback_false) { if (1){ callback_true(); }else{ callback_false(); } } confirm('message',function(){ console.log("ok"); }, function(){ console.log('not ok'); }); confirm('message',function(){ consol

[jQuery] Several questions regarding jQuery Approach...

2009-02-06 Thread ShurikAg
Hi, 1. Assume that there is a table on a page: and I'm using jQuery to manipulate this table by: $("table").table(); What is the right way of accessing "td" elements inside the function: (function(jQ) { jQ.fn.table = function(options, titles, data){ ... ... }

[jQuery] HELP, how to catch these elements ?

2009-02-06 Thread Ayan
Hello, I need a help to catch these HTML elements - Elements - What will be the statement ? $

[jQuery] traversing ajax response with .find in Safari/Chrome

2009-02-06 Thread pedalpete
I'm trying to get a div from an html ajax response. my code is pretty simple [code] success: function(response){ var newItem=$(response).find("div#item").html(); alert(newItem); } [/code] This works fine i

[jQuery] Re: Datepicker UI Opening at Random / Unexpected Locations

2009-02-06 Thread Ca-Phun Ung
Hi, Which version of UI are you using? We recently fixed a similar bug which was rolled into 1.6rc6. For details of the bug see this ticket: http://dev.jqueryui.com/ticket/3863 Finally, if you're using the latest rc it would be a great help if you could upload a minimal test page somewhere. Tha

[jQuery] Re: Problem detecting clicks on nested DIVs with IE7

2009-02-06 Thread EdMartin
I found the solution to my own problem on a MooTools forum. You just supply the empty div.hoverpad with some invisible content, namely, a 1x1 transparent GIF image (classed using my .bgimg class to fill its container), and apply the event listeners to that image rather than the containing DIV. It

[jQuery] Re: Jquery pagination plugin problem

2009-02-06 Thread nate laws
I just tried this plugin for the first time today. The think to realize is that it does not directly have anything to do with which items and how many are displayed. Instead it only controls the pagination links. You have to manually display whichever items you want to be shown in the callback

[jQuery] Re: Best action to use for selects?

2009-02-06 Thread Rick Faircloth
Thanks for the tip...I'll check out bind. For this situation, I finally decided just to use a separate button to trigger the function. Since I'm using two selects -- both a month select and year select -- having both of them fire "onclick" or even "onchange" was causing the AJAX to fire too ofte

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread Stephan Veigl
Hi James, I run into a similar problem. Replacing parts of tables does not work with IE. (see http://de.selfhtml.org/javascript/objekte/all.htm#inner_html, sorry available in German only) Now I simply replacing the whole table which is still much faster than my previous version. by(e) Stephan 2

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread James
I just noticed in IE6 that using the replaceHTML to clear the DOM with events attached definitely creates memory leak. FF seems to clean it up though. On Feb 6, 1:06 pm, James wrote: > Wow! Wow! Wow! Using that replaceHTML function to empty out the > element took practically no time at all! > Th

[jQuery] Re: how to change the iframe src

2009-02-06 Thread cindy
I tried to use Richardo' method, it is still not working. SourceCOde: http://www.w3.org/1999/xhtml";> RAP Console var refreshTime=3; var summaryTab=1; var connectTab=2; var diagTab=3; var isSummaryInit= true; var isConnectInit=false; var isDiagInit=false; var mode="p

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread James
Wow! Wow! Wow! Using that replaceHTML function to empty out the element took practically no time at all! Though I wasn't able to get it to work properly in IE (tried only IE6) as oldEl.innerHTML = html; kept bombing on me with "unknown runtime error". I've removed the IE-only part and let it run t

[jQuery] Re: Problem with .result

2009-02-06 Thread Han
A friend just alerted me to the existence of the mustMatch option in the plugin. Another option might be to stick your logic in there, and that should also trigger at the right times. Lesson learned: always read the documentation... On Feb 6, 1:08 pm, Han wrote: > I just answered my own questi

[jQuery] Re: how to change the iframe src

2009-02-06 Thread cindy
the src int he iframe needs to access parent's java script. I have to set src. On Feb 6, 2:02 pm, "Andy Matthews" wrote: > It might be easier to just use the location method. > > .location.href = 'newlink.html'; > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@

[jQuery] Re: how to change the iframe src

2009-02-06 Thread Ricardo Tomasi
$('connectframe'+'iframe') should be $('#connectframe'+' iframe') (notice the whitespace) and so on.. On Feb 6, 7:34 pm, cindy wrote: > Hi, > > what I want to do is to change iframe src, when click the tab. The > click function is called, but the iframe src is not changed at all. Do > you know

[jQuery] thickbox 3.1 and new jquery 1.3.1 - please help

2009-02-06 Thread newbie
I upgraded from jquery 1.2.2 to 1.31 but thickbox 3.1 does not work. Any help is appreciated

[jQuery] Re: live works in IE6?

2009-02-06 Thread Dhana
Ok, an update, I put in a few alerts and looks like the event.target is returning the img tag for ie7 and Firefox and IE6 is returning an a tag. Just a little curious on this different event bubbling. Could someone clarify this if you have any ideas.

[jQuery] Re: Newb question about accessing a form's inputs

2009-02-06 Thread james
Beauty. That's what I was looking for. And thanks to the point to the docs. On Feb 6, 4:09 pm, sem101 wrote: > Always give your elements id's (instead of name values) -- or at least > a class attribute, so they can be targeted. (You can target name > values, but it's a bit more work.) > > Exa

[jQuery] Re: Newb question about accessing a form's inputs

2009-02-06 Thread James
Without using IDs, you can use: var myVar = $("input[name=myHiddenInput]").val(); On Feb 6, 10:54 am, james wrote: > Hi, > > If I have a form: > > onsubmit="javascript:doStuff()"> >     >     >     > > > What is the equivalent JQuery syntax for the following? > > function doStuff() { >    

[jQuery] Re: Best action to use for selects?

2009-02-06 Thread sem101
I agree to 'onchange'. You might want to checkout 'bind'. Once you master that, you're on your way to elemental bliss... http://docs.jquery.com/Events/bind#typedatafn Or even the new 'live' event. On Feb 5, 9:10 pm, James wrote: > Try Using the onchange event. > > On Feb 5, 4:06 pm, "Rick Fair

[jQuery] Re: jQuery.uploader released: Flash based jQuery uploader

2009-02-06 Thread Barry
Hi Gilles, I would also like to thank you for your great uploader plug-in. I integrated it into my site easily after having previously spent several fruitless hours trying to achieve the same objective using the YUI uploader. I have one problem with it though. All worked well in testing upon loc

[jQuery] live works in IE6?

2009-02-06 Thread Dhana
On a project I am currently working on, I decided to test out the new live function. The function works fine in IE 7 and Firefox, but the event is not even triggered in IE6. Any ideas why this is happening?

[jQuery] Re: How do I add/subtract currency with jquery?

2009-02-06 Thread sem101
If you're JS savvy, often times it's better to write your own jQuery functions than rely on an over-bloated plugin. However, you might find some of the plugin tutorials interesting on this page... http://docs.jquery.com/Tutorials Good luck! On Feb 6, 4:10 pm, webopolis wrote: > I've done this

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread Stephan Veigl
Hi, looks like you are running into racing-conditions. Why are you creating your list elements and bind the click event handler in two different and ASYNCHRONOUS functions initial_list() and site_details() ? Add you site_details() functionality to your initial_list() function just before the scr

[jQuery] Re: Newb question about accessing a form's inputs

2009-02-06 Thread sem101
Always give your elements id's (instead of name values) -- or at least a class attribute, so they can be targeted. (You can target name values, but it's a bit more work.) Examples: var myHiddenInput = $('#myHiddenInput').val(); var myNonHiddenText = $('#myNonHiddenText').val(); $("form#myFor

[jQuery] Re: how to change the iframe src

2009-02-06 Thread Andy Matthews
It might be easier to just use the location method. .location.href = 'newlink.html'; -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of cindy Sent: Friday, February 06, 2009 3:35 PM To: jQuery (English) Subject: [jQuery] how to change th

[jQuery] please help me for the performance

2009-02-06 Thread David .Wu
url: http://chan.idv.tw:90/test/marquee/marquee.html rar: http://chan.idv.tw:90/test/marquee/marquee.rar Hi, this is a image marquee to display the product, I feel a little bit lag when mouse over the image from left to right at the same time, please help me to improve the performance.

[jQuery] Re: Creating a class using jQuery

2009-02-06 Thread Bohdan Ganicky
You might be interested in Low Pro: http://www.danwebb.net/2008/2/3/how-to-use-low-pro-for-jquery -- Bohdan On Feb 4, 7:59 pm, ShurikAg wrote: > Hi all, > > Until now I was using my own developed JS library (based on > traditional JS). In most cases I had classes for each module that I > have

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread Ricardo Tomasi
Now I might have something useful to say! :) I remember this being discussed long ago on the 'replaceHTML' subject. Apparently using .innerHTML on an element that is not in the DOM is much faster (except for IE which is already fast). See here: http://blog.stevenlevithan.com/archives/faster-than

[jQuery] Re: $().jqGrid is not a function

2009-02-06 Thread Chuk
I had been messing around with the paths but couldn't seem to get it to work. However, when you open JQuery.JQGrid.js, you see that one of the first lines is var pathtojsfiles = "js/"; // need to be adjusted When I changed "js/" to point to all of the other Javascript files associated with JQGr

[jQuery] Re: $().jqGrid is not a function

2009-02-06 Thread Chuk
I had been messing around with the paths but couldn't seem to get it to work. However, when you open JQuery.JQGrid.js, you see that one of the first lines is var pathtojsfiles = "js/"; // need to be adjusted When I changed "js/" to point to all of the other Javascript files associated with JQGr

[jQuery] Re: Jquery plugin localisation nightmare

2009-02-06 Thread Ricardo Tomasi
I think the point here is that the plugin is not his own, and it wasn't coded to support localisation. But I reckon that using that approach, if possible, would make maintenance easier. BTW, the jQuery validation plugin seems to support localization by default: http://bassistance.de/jquery-plugin

[jQuery] how to change the iframe src

2009-02-06 Thread cindy
Hi, what I want to do is to change iframe src, when click the tab. The click function is called, but the iframe src is not changed at all. Do you know what is wrong? Cindy http://www.w3.org/1999/xhtml";> RAP Console var refreshTime=3; var summaryTab=1; var connec

[jQuery] Newb question about accessing a form's inputs

2009-02-06 Thread james
Hi, If I have a form: What is the equivalent JQuery syntax for the following? function doStuff() { document.myForm.myHiddenInput.value = 'some dynamic var'; return true; } Thanks in advance, James

[jQuery] UI/Tabs docs mismatch for multiple

2009-02-06 Thread Nathaniel Whiteinge
The UI Tabs documentation for using in a panel [1] has conflicting info and I'm not sure how to proceed. I'd like the following, but links in the enclosed are overwritten as though they are tab links:: One Two ... ... The docs say

[jQuery] Re: alignment IN IE6 ... with jquery..

2009-02-06 Thread Stephan Veigl
I've taken an additional look at your HTML & CSS and it seems like you are positioning all your images absolute with left & top position, so I don't see what should be different on IE. by(e) Stephan 2009/2/6 Stephan Veigl : > Hi > > I've tested the page and it looks similar in FF3 and IE7 for me

[jQuery] Re: alignment IN IE6 ... with jquery..

2009-02-06 Thread Stephan Veigl
Hi I've tested the page and it looks similar in FF3 and IE7 for me. Here is a screenshot (http://www.bilderbeutel.de/pic_call_hires.php?tab=pic_up&id=11), I'm not sure if this is how it should look like. by(e) Stephan 2009/2/6 shyhockey...@gmail.com : > > OK, My website is : www.chillenvillen

[jQuery] Re: How do I add/subtract currency with jquery?

2009-02-06 Thread webopolis
I've done this with straight Javascript for years, I just thought with all the other cool things that have been done with jquery, there would be a plugin for this as well. Thanks for the help. Kevin On Feb 6, 3:52 pm, sem101 wrote: > You don't need jQuery for math, it's simple JavaScript. But -

[jQuery] Re: Creating a class using jQuery

2009-02-06 Thread ..:: sheshnjak ::..
I'm not sure if this is what you're looking for, but I think it should be satisfactory. Try to analize js.js file on my web site, I have some functions separated in jQuery.extend({ ... }) link: http://www.tomislavdekovic.iz.hr/dizajn/js.js ..:: sheshnjak ::.. www.tomislavdekovic.iz.hr > ... > Wh

[jQuery] Re: Change subdomain on same page...

2009-02-06 Thread James
You can use document.location.hash to get the value of the "bookmark", and based on that value auto-load the content of your link automatically. On Feb 6, 10:59 am, atomk wrote: > I know I can change the name in the location bar with the method you > describe, but because all the transitions ini

[jQuery] Re: Modify and accordian to only open and close when clicked

2009-02-06 Thread sem101
Look at the Toggle event: http://docs.jquery.com/Events/toggle#fnfn2fn3.2Cfn4.2C... --but--- You might be well suited for the jQuery UI built-in accordion... http://ui.jquery.com/demos/accordion/ On Feb 6, 8:14 am, Solaz wrote:

[jQuery] Re: Change subdomain on same page...

2009-02-06 Thread atomk
I know I can change the name in the location bar with the method you describe, but because all the transitions initiated by clicking a link are done with Javascript, I don't know how to make each location bar name bookmarkable so it will "remember" the JS state of things - no matter what you bookm

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-02-06 Thread Rick Faircloth
Malformed in IE 7... > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of Nicolas R > Sent: Friday, February 06, 2009 1:33 PM > To: jQuery (English) > Subject: [jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with > Colum

[jQuery] Re: Ajax processData

2009-02-06 Thread James
You can use this JSON Stringify code: http://json.org/json2.js This turns your actual JSON object to a string, which you can POST as data to your server. Depending on what you want to do with that, with PHP you can use the json_decode() function to turn that data into a PHP array. On Feb 6, 9:29 

[jQuery] Re: How do I add/subtract currency with jquery?

2009-02-06 Thread sem101
You don't need jQuery for math, it's simple JavaScript. But -- you can use jQuery to get elements of your forms var qty = parseInt($('input#qty').val()) || 0; var product1 = parseFloat($('input#product1').val()) || 0; var discount = parseFloat($('input#discount').val()) || 0; var grandtotal =

[jQuery] Re: upgrade to new release jquery -1.3.1

2009-02-06 Thread MorningZ
Changing your topic to "help with thickbox and 1.3.1" might get better results for getting help On Feb 6, 3:26 pm, newbie wrote: > I currently used jquery 1.2.2 to work flawlessly with with Thickbox > 3.1. > I tried to upgrade to the new jquery 1.3.1 release but with no > success. > Any help i

[jQuery] Re: Back or Continue Solution to UI Tabs and Jquery Form

2009-02-06 Thread Mario Moura
SOLVED Ok I found in this conversation: "Form with two buttons determining which was clicked" by Mark Steudel and Hector Virgen So If you want add this feature to your UI Tab do this: $('#myForm input[type=submit]').click( function(event) { var element = ( event

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread precar
Thanks James. I actually had semicolons placed properly but after I ran the code through a JavaScript code cruncher online they were all removed. I suppose I could try putting them back in, although like you said, that's probably not the problem. On Feb 6, 1:43 pm, James wrote: > This probabl

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread James
This probably won't help much, but personally I think it's a good habit to put semi-colon (;) at the end of your lines in your JS code. It will help reduce possible errors. On Feb 6, 8:33 am, precar wrote: > I've tried using Firebug for debugging but since there's nothing > technically wrong in

[jQuery] Problem detecting clicks on nested DIVs with IE7

2009-02-06 Thread EdMartin
Because we're still checking for possible issues with plugins, we're stuck on jQuery 1.2.6 for the moment. My problem arise in a context where I have a ... that contains, among other things, a number of nested clusters of the following form: The div.outer is sized and absolutely positione

[jQuery] upgrade to new release jquery -1.3.1

2009-02-06 Thread newbie
I currently used jquery 1.2.2 to work flawlessly with with Thickbox 3.1. I tried to upgrade to the new jquery 1.3.1 release but with no success. Any help is appreciated.

[jQuery] Re: Jquery pagination plugin problem

2009-02-06 Thread deviateDesigns
I am having the same issue not sure what is the issue still researching looks like the items_per_page is passing only a 1. On Jan 26, 4:53 am, Andy789 wrote: > Hi all, > > I am playing with thepaginationplugin(http://plugins.jquery.com/ > node/5912) and cannot figure out how to change number of

[jQuery] Ajax processData

2009-02-06 Thread Dani Valentin
Hello all I am trying to do an ajax call passing a json to the server. My call is like this: $.ajax({ type: "POST", url: "/myurl.php", processData: false, contentType:

[jQuery] Text to the left of the jQuery Star Rating Plugin

2009-02-06 Thread Tom
Hi, I'm using the star rating plugin at: http://www.fyneworks.com/jquery/star-rating/ and I'm trying to add a little text to the left of a set of stars (i.e. "Rating: * * * * * "). After fooling around with the CSS for a long time, I still haven't been able to get rid of the line break between t

[jQuery] Re: slideToggle(); odd and even click

2009-02-06 Thread ..:: sheshnjak ::..
You should try this, and find your way through: http://www.learningjquery.com/2007/03/accordion-madness ..:: sheshnjak ::.. www.tomislavdekovic.iz.hr

[jQuery] Re: $().jqGrid is not a function

2009-02-06 Thread James
Try making sure your path configuration is correct in jquery.jqGrid.js. I'm not sure what the path is suppose to be relative to (probably your calling page), but try out different ones. On Feb 6, 9:09 am, Chuk wrote: > Hi.  I'm making my first attempt at utilizing JQGrid with a CGIDEV2 > applica

[jQuery] Re: Optimize large DOM inserts

2009-02-06 Thread James
Big thanks for the optimization! It certainly did optimize the loop processing by several folds! However, for my case, I found that the ultimate bottleneck was the plug-in function that I was using that froze the browser the longest. The actual insert to the DOM took a bit of time also and did fr

[jQuery] How do I add/subtract currency with jquery?

2009-02-06 Thread webopolis
I have a group of form fields that will contain prices in dollar and cents (0.00) that a user enters. After the user enters the prices in all the product fields, discounts in the discount fields (indicated by something like -5.00), and a deposit in the deposit field, they click a "calculate" butto

[jQuery] Re: Back or Continue Solution to UI Tabs and Jquery Form

2009-02-06 Thread Mario Moura
Hi James Not yet, but thanks. if I find a solution I will post here. Cheers! macm 2009/2/6 James > > How about, instead of: > x = this.id; > > try: > x = $(this).attr('id'); > > On Feb 6, 1:22 am, Mario Moura wrote: > > Hi Folks > > > > I did this with ajax tab options and Jquery Form >

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
Yep... That looks like exactly what's happening. Okay...nice to know it's nothing big. It doesn't prevent the window from opening which is the important thing. Thanks for finding that. > _ > From: jquery-en@googlegroups.com > [mailto:jquery...

[jQuery] Re: Jquery plugin localisation nightmare

2009-02-06 Thread Eric Garside
The easiest way to setup for localizations is to do local aliases for basically anything important. The idea is to have definition files (like localization.fr.js, localization.en.js) and abstracted variable names. For instance, you'd do things like: jQuery.fn[loc.validationEngine] = function(set

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Josh Nathanson
Hey Andy - looks like this might be a Firebug bug - read down to the bottom of this link: http://code.google.com/p/fbug/issues/detail?id=581 -- Josh _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sen

[jQuery] Re: What is difference between ADO and RDO

2009-02-06 Thread Karl Swedberg
sorry about that, folks. The user is now banned.. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 6, 2009, at 1:36 AM, Michael Geary wrote: And let me Google that for you: http://groups.google.com/groups?q=agile.scrapping%40gmail.com -Mike From: Char

[jQuery] Re: list traversing

2009-02-06 Thread Karl Swedberg
Just for the record, if you weren't able to modify the html, you could use my Text Children plugin, which, unlike .text(). isn't recursive: http://plugins.learningjquery.com/textchildren/ --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 5, 2009, at 5:01

[jQuery] $().jqGrid is not a function

2009-02-06 Thread Chuk
Hi. I'm making my first attempt at utilizing JQGrid with a CGIDEV2 application. When loading the page, I keep getting an error that says $("#results').jqGrid is not a function. Here's my JS: $(document).ready(function() { var columnNames = ['Product Group','Description','Turnover Rate','G

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
Unfortunately it's in an administration area. I could provide some code for you though if that would help. andy > _ > From: jquery-en@googlegroups.com > [mailto:jquery...@googlegroups.com] On Behalf Of Josh Nathanson > Sent: Friday, February

[jQuery] jMaps: Unable to continue, in need of new maintainer.

2009-02-06 Thread Tane Piper
Hi folks, Unfortunately this has been on the cards for a while now. Due to an increase in my work schedule, and major move into Android application development I simply cannot afford the time to maintain this library any more. However I don't want to see the project die and I am looking for a m

[jQuery] Re: Jquery plugin localisation nightmare

2009-02-06 Thread Ricardo Tomasi
allRules appears to be a var (global?) inside the validationEngine function, not a property. Isn't it easier to just rewrite the whole validation js? On Feb 6, 12:46 pm, Karnius wrote: > Hi guys, I got a plugin I want to do the localisation in french. I > decided to go with a similar solution of

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread precar
I've tried using Firebug for debugging but since there's nothing technically wrong in the script, I can't get much out of it. Is there a way to use Firebug for debugging something that's not broken but isn't functioning like you want it to? On Feb 6, 11:27 am, precar wrote: > Could I get some

[jQuery] Re: New Plugin: jQuery Finder (Mac-style 'Treeview' with Columns)

2009-02-06 Thread Nicolas R
v0.6a is out http://www.nicolas.rudas.info/jQuery/Finder/ Following up on Nikola's idea, I've also made this: http://www.nicolas.rudas.info/jQuery/Finder/v0.6a/api.html The jQuery API, finder style. It's doesn't give any API docs tho at the moment, just a list of methods (the json data provided

[jQuery] Re: All is well except in IE - links initially not clickable

2009-02-06 Thread precar
Could I get some help on this please? Thank you, Precar. On Jan 30, 8:52 am, precar wrote: > Hi, > > Yes, I'm using the bind() method with 'click'.  Is that the correct > approach? > > Precar. > > On Jan 28, 9:47 am, amuhlou wrote: > > > > > It looks like it's not appending the "selected" cl

[jQuery] Re: JQuery effects not working in Internet Explorer 6

2009-02-06 Thread James
I'm finding that it comes from the (packed) Validation plug-in script. I think it might need a semi-colon at the end of that whole packed string. Try adding that manually and see if it makes a differences. Try the min version also if you haven't. On Feb 6, 6:30 am, Tintin81 wrote: > Hi Henry, >

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Josh Nathanson
Andy - that's my plugin - do you have a link I could look at? -- Josh _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Friday, February 06, 2009 9:50 AM To: jquery-en@googlegroups.com Subject: [jQ

[jQuery] Re: jQuery AutoComplete - how to post a variable if option is selected?

2009-02-06 Thread Han
Solved my own problem. See solution here: http://groups.google.com/group/jquery-en/msg/89adfbd3e15fde09 on discussion: http://groups.google.com/group/jquery-en/browse_thread/thread/84950b404129b00b On Feb 6, 10:29 am, Han wrote: > James, that problem that you just described is the exact proble

[jQuery] Re: Problem with .result

2009-02-06 Thread Han
I just answered my own question. Here's the scenario and what I did to the autocomplete plugin: I have an autocomplete field and a hidden field next to it. The autocomplete field is for names, and the hidden field is for the id of the name, which is used to query the database for the record. T

[jQuery] Re: Newbie question - downloading jQuery

2009-02-06 Thread brian
What did you download? There is the main jquery library (plain, minified, etc.) and there's all the UI stuff. If you want to use the UI widget/effect libraries you'll have to get them separately. However, you can get them as prepackaged bundles based on the things you want: http://ui.jquery.com/d

[jQuery] Re: Back or Continue Solution to UI Tabs and Jquery Form

2009-02-06 Thread James
How about, instead of: x = this.id; try: x = $(this).attr('id'); On Feb 6, 1:22 am, Mario Moura wrote: > Hi Folks > > I did this with ajax tab options and Jquery Form > > $(document).ready(function() { >     $("#myForm").ajaxForm( function() { >        $("#tabs").tabs("select",2); >     }); > >

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
Forgot to mention that I'm using jquery-1.2.3 for this project. andy > _ > From: jquery-en@googlegroups.com > [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews > Sent: Friday, February 06, 2009 11:50 AM > To: jquery-en@googlegr

[jQuery] Re: Is this bug in IE or ui tabs

2009-02-06 Thread Varun Khatri
any ideas ? On Thu, Feb 5, 2009 at 5:56 PM, Varun Khatri wrote: > I am using a function like : >$('.ui-tabs-nav').bind('tabsselect', function(event, ui) { > $("input[rel='currentTab']").val(ui.index); > $("#example > div.ui-tabs-panel").empty(); > > }); > > > It just removes every

[jQuery] Jquery plugin localisation nightmare

2009-02-06 Thread Karnius
Hi guys, I got a plugin I want to do the localisation in french. I decided to go with a similar solution of the UI datepicker. Adding a french js and reparse my json object in french from there. But it just do not work and i don't have a clue how. Please help Live english version : http://www.

[jQuery] Superfish with semi transparent background

2009-02-06 Thread Rui Peixeiro
Hi, I try to use Superfish with semi transparent background, making this: .sf-menu li { background: #404040; filter:alpha(opacity=90); /* Internet Explorer */ -moz-opacity:0.90; /* Mozilla 1.6 and below */ opacity: 0.90;

[jQuery] Re: [autocomplete] Problem with .result

2009-02-06 Thread Han
Has anyone figured out a solution to this? I'm trying to modify the autocomplete plugin so that it triggers a different function (something like clearField() instead of result()) when you click anywhere outside of the autocomplete search. You can then write some javascript to clear the hidden fi

[jQuery] Datepicker UI Opening at Random / Unexpected Locations

2009-02-06 Thread Dayson Pais
Hi, I have a Datepicker UI linked to a textbox using the following code: $(document).ready(function(){ txtDOB = $("input[name=txtDOB]"); txtDOB.datepicker(); }); Screenshot of the Textbox: http://arch.kimag.es/share/85588260.jpg When I click on the textbox, the calendar opens a

[jQuery] Newbie question - downloading jQuery

2009-02-06 Thread rontivo
I just stumbled across jQuery - I'm very impressed with what I've seen on the site. In my case my interest was sparked by a desire to put a floating dialog on our site. I've downloaded jQuery, and I was able to copy the code from the sample and get a dialog to show up, but I notice that the samp

[jQuery] Dropline menu which hides when not in use

2009-02-06 Thread David Cognito
I'm trying to find a dropline menu similar to http://www.cssplay.co.uk/menus/pro_dropline7.html (but without all the conditional comments used for IE6 + IE7). I need clean nested ul + li to make it work with http://www.madebyfrog.com/ http://users.tpg.com.au/j_birch/plugins/superfish/#sample4 i

[jQuery] Re: IE7: Setting ColSpan as Attribute

2009-02-06 Thread Stefan
Excellent solution! Had the same exact problem and was scratching my head for a while. Thank you very much! -Stefan On Jan 2, 9:18 am, NRutman wrote: > This had me scratching my head for a while, so I wanted to share it in > case it might help someone else: > > It seems that using JQuery's at

[jQuery] Re: jQuery AutoComplete - how to post a variable if option is selected?

2009-02-06 Thread Han
James, that problem that you just described is the exact problem that I am having. I can get the autocomplete plugin to update a hidden input with an id value perfectly fine if the user selects a value from the list and triggers the result() function, however I also need it to clear the hidden in

[jQuery] Re: the french accents and jQuery

2009-02-06 Thread Giovanni Battista Lenoci
phicarre ha scritto: Use always UTF8 for solving problems related on special chars. -- gianiaz.net - web solutions via angelo custode, 10 - 23100 sondrio (so) - italy +39 347 7196482

[jQuery] Re: Cross domain Ajax without Proxy

2009-02-06 Thread jay
I tested it and it works cross-domain with IE7 and FF3. It appears to send the data URL encoded inside the CSS like so: #cr0 { background: red url(http://cssrpc/%3Ch1%3EResult%20from%20CSS %201%3C/h1%3E); } #cr1 { background: blue url(http://cssrpc/%3Cp%3EThis%20is%20lorem%20ipsum %20in

[jQuery] the french accents and jQuery

2009-02-06 Thread phicarre
This is the sketeton of my HTMP page: http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";> http://www.w3.org/1999/xhtml"; xmlns:v="urn:schemas- microsoft-com:vml" lang="fr" xml:lang="fr"> ... ... ... $('#form1').ajaxSubmit( { type: 'POST', url: 'test.php', before

[jQuery] Re: jQuery offsetParent - using with drag/drop UI problem in IE7

2009-02-06 Thread tom gee
ah finally i managed to find out what was causing it !!! not sure if this is something jQuery can even account for really, unless I guess if jQuery has been used to update the DOM, but its due to the ossetParent bug with IE, when an element has been updated via the DOM it throws an unspec

[jQuery] Re: JQuery effects not working in Internet Explorer 6

2009-02-06 Thread Tintin81
Hi Henry, Thanks you very much for your help. I have eradicated the comma and also did some other polishing work, but nothing has changed :-( The error message I am getting in Internet Explorer 6 is still the same. What bugs me is that Internet Explorer doesn't tell me the exact name of the file

[jQuery] submit a submit value through ajax

2009-02-06 Thread Trend-King
Hello i have a form with 2 buttons in it and i want to receive these values through my ajax calls $('#cart_quantity').submit(function(){ var serialized_values = $('#cart_quantity').serialize() +'&ajax=ajax_calls&what=cart'; var checked_basename = check_ssl($(this).attr('action')); $.ajax ({url

[jQuery] Re: Ajax callback parameter endless

2009-02-06 Thread Kpitn
a call like this : confirm('message ?',function(){showAnswer ('1','2','3');}) the function showAnswer is execute 1 time. If i make another call : confirm('message ?',function(){showAnswer ('1','2','3');}) the function showAnswer is execute 2 times. I don't want (n+1) answer after call confirm.

[jQuery] [FIX] metadata fix proposed

2009-02-06 Thread maxbnet
Firefox 3.1b2 returns classname with \n. All other browsers don't. In metadata plugin the default regexp is /({.*})/ I fixed this problem with this regexp /({[\s\S]*})/ so defaults : { type: 'class', name: 'metadata',

  1   2   >