[jQuery] Re: More efficient animation for multiple elements

2008-10-26 Thread ricardobeat
Thanks Karl. That was actually stupidity of my part, that single replace() call must be slower than most of the script. Number also seems to be slower than parseInt on all modern browsers (despite being 6x faster on IE6) - I like the looks of Number(...) though :] - ricardo On 25 out, 20:54,

[jQuery] [autocomplete] Some random questions

2008-10-26 Thread Shawn
1. Is there any difference between Jorn's autocomplete from his webpage (http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/) and the one included in jQuery.ui 1.6rc2 ? I can see the copyright info is the same, but don't see a version number for the autocomplete element... 2.

[jQuery] Re: jquery ui tabs - screen jumps to top when clicked

2008-10-26 Thread Klaus Hartl
That doesn't happen for me. Do you use the latest version? Which browser does that happen in? Could you post a demo or show us some code? --Klaus On 26 Okt., 03:16, Ed [EMAIL PROTECTED] wrote: I have jquery ui tabs at the bottom of my page. When a tab is clicked, the screen jumps/scrolls to

[jQuery] Re: jquery ui tabs - screen jumps to top when clicked

2008-10-26 Thread JustGiz
i dont know anything about jquery ui, but i think i might know your problem. are you using a for each tab? are you using a href=#? are you making sure the click is returning false? On Oct 25, 7:16 pm, Ed [EMAIL PROTECTED] wrote: I have jquery ui tabs at the bottom of my page. When a tab is

[jQuery] Re: [autocomplete] do search on input focus

2008-10-26 Thread Jörn Zaefferer
Try $(this).click().click() then. Jörn On Sat, Oct 25, 2008 at 5:22 PM, blasto333 [EMAIL PROTECTED] wrote: That works for when the field is focused by clicking in it, but now when tabbing into it (even though the focus event does occur!) Any other ideas? On Oct 23, 3:57 pm, Jörn Zaefferer

[jQuery] clickable block + fancybox jquery plugin trouble

2008-10-26 Thread [EMAIL PROTECTED]
Hello everyone! I tried to find the solution all around the web, but no luck, so I came here. I am using a jQuery plugin called FancyBox (http://fancy.klade.lv), which is a LightWindow clone, and it works great. Now, I want to have a clickable DIV that will allow me to call the FancyBox

[jQuery] clickable block + fancybox jquery plugin trouble

2008-10-26 Thread [EMAIL PROTECTED]
Hello everyone! I tried to find the solution all around the web, but no luck, so I came here. I am using a jQuery plugin called FancyBox (http://fancy.klade.lv), which is a LightWindow clone, and it works great. Now, I want to have a clickable DIV that will allow me to call the FancyBox

[jQuery] Re: jqGrid 3.3 version

2008-10-26 Thread hosoft
hi,I can't connect to http://trirand.com/blog. could you send me a copy of jqgrid to me? my email is [EMAIL PROTECTED] thank you. you do a great job.

[jQuery] Re: [autocomplete] Some random questions

2008-10-26 Thread Jörn Zaefferer
My plugin was planned for inclusion in 1.6, but won't be part of the final release, it was deferred to 1.7. The UI version is adapter to the UI API and has two or three new features. A list of changes since the 1.0 release is here: http://jquery.bassistance.de/autocomplete/changelog.txt (1.0.2

[jQuery] Re: how to submit variables as POST submit (no AJAX)

2008-10-26 Thread Mike Alsup
I have a regular javascript object (with key/values) and would like to submit it to server by POST with complete page reload through jQuery. Just as with regular HTML forms. I searched for a few hours for some solution and have not found any. There are many examples for jQuery AJAX forms but

[jQuery] how to submit variables as POST submit (no AJAX)

2008-10-26 Thread oscar1981
Hello, I have a regular javascript object (with key/values) and would like to submit it to server by POST with complete page reload through jQuery. Just as with regular HTML forms. I searched for a few hours for some solution and have not found any. There are many examples for jQuery AJAX forms

[jQuery] Re: Validate. Password Bug?

2008-10-26 Thread Jörn Zaefferer
this.optional(element) || /^([a-zA-Z0-9]{8,24}) || /^([a-zA-Z0-9]{8,24})$/.test(element.value); Jörn On Sat, Oct 25, 2008 at 7:29 PM, shapper [EMAIL PROTECTED] wrote: You mean using: $.validator.addMethod('password', function (value, element) { return this.optional(element.value) ||

[jQuery] Event.target is Parent Child in IE but in Firefox it is child Element

2008-10-26 Thread csplrj
I have used Hover Event When I try to get event.target.id, I get the inner child element in Firefox but in IE I get the parent element in IE. The example is at http://tradeera.com/sapphire/ ? Is this a bug or some mistake from my side? Thanks in advance CSJakharia

[jQuery] Re: how to submit variables as POST submit (no AJAX)

2008-10-26 Thread Ariel Flesler
I'd make those :text into :hidden, or set the form to display:none. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 26, 10:38 am, Mike Alsup [EMAIL PROTECTED] wrote: I have a regular javascript object (with key/values) and would like to submit it to server by POST with complete page

[jQuery] Re: Use JSON from .post

2008-10-26 Thread Ariel Flesler
If you are indeed returning an array from PHP, then the received JSON should be a js array. Got this online ? -- Ariel Flesler http://flesler.blogspot.com/ On Oct 25, 6:26 pm, jfrymann [EMAIL PROTECTED] wrote: Hi,   I have just started using jQuery and am trying to get data back from a mysql

[jQuery] Re: putting jquery inline

2008-10-26 Thread Ariel Flesler
And type=text/javascript with no typos. -- Ariel Flesler http://flesler.blogspot.com/ On Oct 24, 9:04 pm, tres [EMAIL PROTECTED] wrote: Not to state the obvious, but did you make sure that the path to the jquery is correct? Trey On Oct 25, 4:39 am, snacktime [EMAIL PROTECTED] wrote:

[jQuery] Re: how to submit variables as POST submit (no AJAX)

2008-10-26 Thread Mike Alsup
I'd make those :text into :hidden, or set the form to display:none. Good point!

[jQuery] Re: Use JSON from .post

2008-10-26 Thread Michael Geary
The example PHP code would actually echo a series of JSON objects all concatenated together, each one having two properties named file and byline. You wouldn't get any kind of valid JSON out of this. It would look something like this (probably without the whitespace): { file: something, byline:

[jQuery] Re: jquery ui tabs - screen jumps to top when clicked

2008-10-26 Thread Ed
Thanks Klaus, I see the issue in FireFox 3 and Internet Explorer 7 (screen jumps up when tab is clicked). Here is an example that shows the issue: http://5bosses.com/examples/tabs/sample_tabs.html I'm using the following parts of Jquery: http://dev.jquery.com/view/tags/ui/latest/ui/ui.core.js

[jQuery] Re: Validate. Not working with Radio input

2008-10-26 Thread shapper
Please, anyone? On Oct 24, 6:00 pm, shapper [EMAIL PROTECTED] wrote: Hello, I am trying to validate a form with radio inputs. I want to the form to be submitted only if an option was selected:  form action=/Poll/Vote/1 class=Poll id=Poll method=post     fieldset       label

[jQuery] Re: [OT] please check website before launch

2008-10-26 Thread Alexandre Plennevaux
hi mindstormkid, thank you for the feedback! According to your comment and christoph's comment about the loading time: it's a photographer 's portfolio site, it is bound to be image-heavy. So why then load them all up toether instead of streaming them? The barcode cannot work with only partial

[jQuery] Re: please check website before launch

2008-10-26 Thread ricardobeat
Hi Alex, Glad to see you managed to iron the bugs out. But as I said before, load time is definitely a huge downside to the website. Are the galleries dynamic? If they are not you could just cache/hardcode the bar sizes and then load on demand, or just make the bar sizes relative to the number

[jQuery] Re: please check website before launch

2008-10-26 Thread Alexandre Plennevaux
h Ricardo thanks a lot for the thorought report. Are the galleries dynamic? If they are not you could just cache/hardcode the bar sizes and then load on demand, or just make the bar sizes relative to the number of pictures, not their dimension. that's actually something that could be

[jQuery] Re: jQuery Treeview 1.4 by Joern Zaefferer

2008-10-26 Thread Cruizer
Bueller? Bueller? On Oct 24, 9:50 am, Cruizer [EMAIL PROTECTED] wrote: Has anyone come across this before?  This is the only thing from making this menu perfect in my opinion. Thanks, Brent On Oct 23, 4:29 pm, Cruizer [EMAIL PROTECTED] wrote: I am using this menu for a clients

[jQuery] SimpleModal containerCSS not working in Firefox or Chrome

2008-10-26 Thread Bill
Good Afternoon, I tried to override the settings in the default stlyesheet that comes with the simplemodal jquery plugin with containerCSS which is working fine in IE7 but not Firefox or Chrome. Not sure if this is a bug or I am doing something wrong. jQuery: $(document).ready(function() {

[jQuery] Re: History Plugin

2008-10-26 Thread Pedram
Dear Folks, consider we have page A which has 4 links we filter these Links with javascipt History Plugin which we have, as you can see in below now Our History Plugin Works and it is Bookmarkable and everything is Ok right now, now consider each of these Links Do some Ajax Calls and Load Page

[jQuery] Re: Securing JSON data type

2008-10-26 Thread Michael Geary
That's an interesting point, and certainly sounds like a good idea. I have to wonder, though, what's the actual security risk? If you're running this bit of code, then by definition you're getting the JSON data from your own domain. So presumably you have control over the data that you're

[jQuery] Re: Event.target is Parent Child in IE but in Firefox it is child Element

2008-10-26 Thread ricardobeat
On your sample site both IE and FF alert nav nav. - ricardo On Oct 26, 12:14 pm, csplrj [EMAIL PROTECTED] wrote: I have used Hover Event When I try to get event.target.id, I get the inner child element in Firefox but in IE I get the parent element in IE. The example is

[jQuery] jscrollpane hiding content

2008-10-26 Thread ekene
jscrollpane somehow sets the width and height of the jScrollPaneContainer to 0 and the scroll-pane height to 0 which hides the content but if i reload the page one or two times it functions. this happens when i am loading the page in an iframe otherwise jscrollpane functions. this is how the

[jQuery] Re: jscrollpane not functioning in iframes

2008-10-26 Thread ekene
thanks ricardo! i am another issue when using jscrollpanes in pages which are loaded in iframes. jscrollpane sets the width and height of the scrollpanecontainer to 0 and the height of the scrollpane to 0. although when i load the page outside of the iframe jscrollpane functions. this issue is

[jQuery] Re: please check website before launch

2008-10-26 Thread ricardobeat
5. the right/left arrows are too discrete and look quirky, a simple styled arrow without the vertical bar would be more beautiful and useful they were actually designed by the customer, and i personally find them quite good looking but it's all amount to taste in the end. and you know,

[jQuery] Re: please check website before launch

2008-10-26 Thread Alexandre Plennevaux
I assume all sets tagged People are also tagged as Experimental, that could be the issue. Exactly. i should have paid more attention to that when setting up the test bed. your critics are very useful! i'll debrief with the customer. but you know, she wanted this experimental interface, so i

[jQuery] Re: jscrollpane not functioning in iframes

2008-10-26 Thread ekene
thanks ricardo. im also having 2 more issues... jscrollpane somehow sets the width and height of the jScrollPaneContainer to 0 and the scroll-pane height to 0 which hides the content but if i reload the page one or two times it functions. this happens when i am loading the page in an iframe

[jQuery] Re: please check website before launch

2008-10-26 Thread Michael Geary
Does your client want *customers*? This UI is going to drive them away fast. No offense to you, Alexandre - I know you're a talented designer and developer doing the best you can to satisfy a completely misguided client - but really it's a terrible user experience. -Mike From: Alexandre

[jQuery] Re: SimpleModal containerCSS not working in Firefox or Chrome

2008-10-26 Thread Eric Martin
Bill, Try adding the units for the width, height, and margin: $(#addEditTask).modal({ onOpen: modalOpen, persist: true, containerCss: {width: 300px, height: 200px, marginLeft: -150px} }); -Eric On Oct 26, 1:01 pm, Bill [EMAIL PROTECTED] wrote: Good Afternoon, I

[jQuery] Re: [autocomplete] Some random questions

2008-10-26 Thread Shawn
Thanks Jorn. I can say that I've tested the integration of autocomplete and dialog now. :) So far so good. What I was missing was the change from .autocomplete(url/data, options) to .autocomplete({url: , data:, etc.}). Once I found that the plugin worked fine. I have not seen any errors

[jQuery] Problem with simplemodal bug?? error?

2008-10-26 Thread Enrique Garcia
i have an error when calling twice a function inside iframe with simplemodal. With IE works ok With Firefox i have the error. Prueba.shtml the parent script: !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/ TR/html4/strict.dtd html headtitleORCA: CRM Comercial/title meta

[jQuery] Re: SimpleModal containerCSS not working in Firefox or Chrome

2008-10-26 Thread Bill
Eric, Awesome. I knew it had to be something simple that I was missing. Adding the units fixed it straight away. Bill

[jQuery] Firefox is showing error console with no errors?

2008-10-26 Thread jimster
Hi there, I'm creating a one page ordering system that lets kids and parents order lunch. http://clients.blazemelbourne.com.au/cc/order.php It's designed to allow multiple kids and weeks per page, swapping the active ones around using jquery. Works splendidly in almost every browser except

[jQuery] jquery.validate.js remote validation issue

2008-10-26 Thread [EMAIL PROTECTED]
I have a registration form that I'm trying to validate using jquery.validate.js v1.2 with jQuery 1.2.6. On the username field, I am doing remote validation to verify the username does not already exist. When I blur out of the field, I *always* get an error under the field telling me the username

[jQuery] state - region - suburb drill down using image maps

2008-10-26 Thread Duncan
Hi Everyone, I wonder if I could get some help. I am trying to build a sort of search tool where a user can click a state, then region (maybe a sub region) then suburb to help define a location for where they want to search. This will be used in conjunction with the search location text box.

[jQuery] Re: state - region - suburb drill down using image maps

2008-10-26 Thread Girish Venkatachalam
On 13:26:09 Oct 27, Duncan wrote: The problem is that when I redraw the image map, the clicks dont work anymore (i.e. the jquery $(.mapOpt).click(function(){ ) and also the new imagemap insertion didnt work with $(#imgmap).html(r.IMAGEMAP); I had to use the old way var oldskool =

[jQuery] Re: Use JSON from .post

2008-10-26 Thread jfrymann
Thank you, that was exactly what I needed to know. Got it all working. Also, the tip about looking at the contents in Firebug is very useful. I have also just started using Firebug and am starting to discover all its useful features. On Oct 26, 9:37 am, Michael Geary [EMAIL PROTECTED] wrote:

[jQuery] Re: state - region - suburb drill down using image maps

2008-10-26 Thread Duncan
You should not be doing this if you are using jQuery. ;) heh - I KNOW! but I couldnt get the image map tags to be replaced properly the jquery ways. Thanks for the livequery hint - I will check that out now. On Oct 27, 2:08 pm, Girish Venkatachalam [EMAIL PROTECTED] wrote: On 13:26:09 Oct

[jQuery] Re: jscrollpane not functioning in iframes

2008-10-26 Thread Sam Sherlock
The first issue sounds like something I experienced when using jscrollpane and ui-tabs I resolved this by calling jscrollpane before tabs. So perhaps you have somethings conflicting with each other (or causing the issue with jscrollpane) 2008/10/26 ekene [EMAIL PROTECTED] thanks ricardo.