[jQuery] Re: jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1) troubles.

2008-01-09 Thread Klaus Hartl
On 9 Jan., 01:50, Josh Nathanson [EMAIL PROTECTED] wrote: Without looking at the code, my guess would be ye olde must rebind event handlers when loading content via ajax issue. -- Josh Yes, that may be the case for Ajax tabs. I didn't look at the code either, but in addition here's what I

[jQuery] Re: clone item, then remove it?

2008-01-09 Thread yabado
I decided it was best to not use clone in my situation, I used append instead. I would append the html onto a div, assigning it a unique id each time. Then I deleted the item based off that id. Seems to work great, plus a great way to add extra fields to a form. :-) On Jan 8, 8:46 pm, Karl

[jQuery] jQuery blockUI doesn't show up in IE

2008-01-09 Thread Anxiro
Hi! I'm having a little problem with the 'blockUI'-plugin; it doesn't show in Internet Explorer (or the FireFox IE-tab), but does show in FireFox. I've Googled and searched this forum, but couldn't find anything related. Has anyone got a solution? I'm using the latest stable jQuery version

[jQuery] Re: jQuery blockUI doesn't show up in IE

2008-01-09 Thread Mike Alsup
I'm having a little problem with the 'blockUI'-plugin; it doesn't show in Internet Explorer (or the FireFox IE-tab), but does show in FireFox. I've Googled and searched this forum, but couldn't find anything related. Has anyone got a solution? I'm using the latest stable jQuery version and

[jQuery] how can i access and manipulate iframe elements in ie6

2008-01-09 Thread sigbin dan
hi guys, im developing for internet explorer 6 and i am making a jquery generated iframe, now after making this iframe, i want to be able to insert 'onlick=(function())' this code on the body tag, of the page inside the iframe. is that possible? thanks, dan

[jQuery] Validation plugin docs: links not working

2008-01-09 Thread oLLi-
Last links (Demos) on page http://docs.jquery.com/Plugins/Validation are not to be found: http://dev.jquery.com/view/trunk/plugins/validate/demo-test/marketo/ http://dev.jquery.com/view/trunk/plugins/validate/demo-test/milk/ Instead I managed to locate these resources at:

[jQuery] Re: Comet

2008-01-09 Thread Karl Delandsheere
Great, I've been doing some Comet last year for a project. It's great but really geeky for some people, so developping a plugin around that sounds just great to me :). I'll check the work asap! On Jan 9, 3:01 am, Morgan Allen [EMAIL PROTECTED] wrote: I have been working on implementing the

[jQuery] Re: load method doesn't work with amp; and doesn't validate

2008-01-09 Thread [EMAIL PROTECTED]
Aaahhh, so it's my own fault for coding sloppy. :-o Thanks! On Jan 8, 4:00 pm, Bob den Otter [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: When loading an url containing querystrings with jQuery's load method I first tried amp; but since that doesn't work, I'm now using . The problem

[jQuery] Re: Cross domain POST

2008-01-09 Thread Mike Alsup
Is there anything like var script=document.createElement('script'); script.method='post' ?? No, but if your forms don't submit a ton of data you can use jsonp effectively. $('#myForm').submit(function() { var $this = $(this); var data = $this.serialize(); $.ajax({ url:

[jQuery] why not get value using $('#wrapper').attr('offsetHeight') in firefox?

2008-01-09 Thread nightelf
in firefox $('#wrapper').attr('offsetHeight') == undefined but document.getElementById('Wrapper').offsetHeight is ok

[jQuery] Cross domain POST

2008-01-09 Thread Miha
Hello, I am writing a gadget that will be hosted on one server and used on many sites. I load it using jquery.getScript. No problem with that. But I am wondering how can I submit form to hosting server and retrieve the response? Is there a way to do this with jquery or maybe just javascript?

[jQuery] Re: Validation plugin docs: links not working

2008-01-09 Thread Gonzo
Thanks for catching that. The docs for the validation plugin are currently being moved from the source code to the wiki and there has also been some re-organization for the upcoming release of v1.2, so the docs may be out of sync with the code for a few more days. We'll make sure to get these

[jQuery] Re: JQuery UI Dialog not working

2008-01-09 Thread Richard D. Worth
Beat you to it ;) This was added to the SVN version in December and will be in the next UI release: http://dev.jquery.com/view/trunk/ui/current/ui.dialog.js - Richard On Jan 8, 2008 10:31 PM, Jason Levine [EMAIL PROTECTED] wrote: Thanks. It always seems to be the simple stuff that gives me

[jQuery] Re: JQuery UI Dialog not working

2008-01-09 Thread Jason Levine
Cool! When my site is ready for beta testing, I plan on asking folks here for comments since it'll rely on JQuery so much. (This won't be for awhile, though. I get about 2 hours to work on it per day and it's going to be pretty complex.) -- View this message in context:

[jQuery] Re: jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1) troubles.

2008-01-09 Thread Klaus Hartl
On 9 Jan., 11:48, Klaus Hartl [EMAIL PROTECTED] wrote: On 9 Jan., 01:50, Josh Nathanson [EMAIL PROTECTED] wrote: Some ideas: Initialize the slider before tabs. Or initialize the slider via the tabs show callback. Or do not use display: none for hiding tabs and the offleft technique instead

[jQuery] wow getScript full url and IE

2008-01-09 Thread Sebastián V. Würtz
WOWWOWOW I never notice that $.getScript or getCSS jQuery.getCSS = function( url, media, rel, title ) { jQuery( document.createElement('link') ).attr({ href: url, media: media || 'screen', type: 'text/css', title: title || '', rel: rel || 'stylesheet'

[jQuery] Re: why not get value using $('#wrapper').attr('offsetHeight') in firefox?

2008-01-09 Thread Jonathan Sharp
Try $('#wrapper').height() Also please note the difference in your ID's. With the jQuery code you're referencing 'wrapper' and with the DOM methods you're referencing 'Wrapper'. Cheers, -Jonathan On 1/9/08, nightelf [EMAIL PROTECTED] wrote: in firefox $('#wrapper').attr('offsetHeight') ==

[jQuery] Stopping click event action in safari 1.3 ( click(function(){return false;}); )

2008-01-09 Thread Dan Eastwell
Hi, I've got a very simple tab interface which works perfectly, except in Safari. The click event is carried out, then the link is followed even with return false in the click event function. I've simplified everything to the following code, but the tabs are still treated as in-page anchors

[jQuery] Re: why not get value using $('#wrapper').attr('offsetHeight') in firefox?

2008-01-09 Thread Sebastián V. Würtz
nightelf escribió: in firefox $('#wrapper').attr('offsetHeight') == undefined but document.getElementById('Wrapper').offsetHeight is ok the offsetHeight is an attrib? i think its a property, im not so sure use this $('#wrapper').css('height');

[jQuery] Re: jquery ui tabs (tabs 3) in conjunction with the new coda slider (1.1.1) troubles.

2008-01-09 Thread [EMAIL PROTECTED]
Using the off left technique worked! Thanks for all of your help. On Jan 9, 3:48 am, Klaus Hartl [EMAIL PROTECTED] wrote: On 9 Jan., 01:50, Josh Nathanson [EMAIL PROTECTED] wrote: Without looking at the code, my guess would be ye olde must rebind event handlers when loading content via

[jQuery] Re: how can i access and manipulate iframe elements in ie6

2008-01-09 Thread Miha
Not sure if it is possible with jquery but in JS you can access doc body inside of iframe like this: ifDocBody=window.frames['frame-name'].document.body; Note that frame-name is set by iframe name parameter, not by id; regards, Miha On Jan 9, 11:13 am, sigbin dan [EMAIL PROTECTED] wrote: hi

[jQuery] Re: jQuery blockUI doesn't show up in IE

2008-01-09 Thread Anxiro
Mike, Sorry, here it is: http://www.krikke.nl/Shop/ You can the press 'TEST ERROR' button. It's still in hudge production :) But the problem is, that the blockUI-message isn't showing up in IE. Thanks! - Frank ps: I've sent this message before, but it wasn't accepted for some reason?

[jQuery] Re: How to set up a callback on a function I've made?

2008-01-09 Thread eitanpo
Based on your initial code you can do this: function loading(foo) { $(#ajaxContent).slideToggle(normal, function() { $(#ajaxLoader).toggle(); if ($.isFunction(foo)) { foo.call();

[jQuery] Re: can only modify DOM via debugger

2008-01-09 Thread Alexey Blinov
Is it $.get() - asynchronous call? Maybe you try to fill textarea Before str1 get its data? I think you should filll textarea from Success event rather than after $.get call... On Jan 9, 2008 6:43 AM, Jeffrey Kretz [EMAIL PROTECTED] wrote: It might be worth a shot to try jQuery functions

[jQuery] invoking an element dinamically

2008-01-09 Thread [EMAIL PROTECTED]
Hi everyone, I need assistance with some how-to. I'm new to jq, so a little help would be much appreciated. I have a function that receives a value each time an a href is clicked, for every click I get a different value, I want to use this value a ID in the td of a table, such td's are already

[jQuery] Switching Divs

2008-01-09 Thread DXCJames
I want to switch the place of 2 divs. One would be located on once side of the screen somewhere and the other far away from it.. I want to be able to click on one of them and have them hover or move to switch locations with eachother.. It would be cool to have them switch at the same time, but

[jQuery] Re: Cross domain POST

2008-01-09 Thread Miha
Data in url is not enough. But thanks anyway. I found the solution. I create a hidden iframe and I set onLoad parameter (SubmitCallback Js function) , then i submit data to a that iframe using form's target parameter. After form is successfully submited my SubmitCallback JS function is called by

[jQuery] Re: Progress image swap

2008-01-09 Thread Trans
FYI, I figured out a solution. The trick was to use setTimeout() to run the loading code as a separated process. $(#meter).attr(src,img/meter_on.gif).show('fast'); setTimeout(load_stuff_with_ajax,100); Thanks for youall's attempt to help. I appreciate your efforts. T.

[jQuery] Stopping click event action in safari 1.3 ( click(function(){return false;}); )

2008-01-09 Thread Dan Eastwell
No one? I would have thought it was fairly common... On 1/9/08, Dan Eastwell [EMAIL PROTECTED] wrote: Hi, I've got a very simple tab interface which works perfectly, except in Safari. The click event is carried out, then the link is followed even with return false in the click event

[jQuery] Re: Stopping click event action in safari 1.3 ( click(function(){return false;}); )

2008-01-09 Thread Klaus Hartl
On 9 Jan., 18:13, Dan Eastwell [EMAIL PROTECTED] wrote: No one? I would have thought it was fairly common... It is common. As far as I remember Safari 1.3 and even 2.0 does not support preventDefault nor return false to stop an event's default action, if you attach events dynamically via the

[jQuery] Re: Stopping click event action in safari 1.3 ( click(function(){return false;}); )

2008-01-09 Thread Dan Eastwell
Thanks Klaus, I'll have to rewrite my functions for that. I'm sure it's no great headache. For what it's worth, I've set up a test case here: http://test.danieleastwell.co.uk/_fRefit08/_format/_templates/temp.html Thanks again for your reply. Do you know how the ui.tabs plug in covers this

[jQuery] Re: Synchronous JSONP

2008-01-09 Thread Scott Trudeau
What about using the success callback of the JSONP call to initiate the location.href? Something like: $('a').click(function() { var href = $(this).attr('href'); $.ajax({ url: 'http://example.com/jsonpmethod?callback=?', dataType: 'jsonp', success: function(data) { // do

[jQuery] Which plug-in resizes photos to max-size according to browser window?

2008-01-09 Thread Rick Faircloth
Hi, all. I know someone on another list (I might use it, too) who is trying to please a very picky photographer who wants his photos shown at maximum size regardless of the browser size. I want to introduce them to jQuery. Which photo display plug-in or combination will provide this

[jQuery] Re: jqModal to get info from database fails

2008-01-09 Thread Alexandre Plennevaux
i wonder if the problem is not due to your directory structure: your select_forms.html page resides in a directory, so it loads formularis_xml.php in the same folder. but if you load that select_form page via ajax, the root becomes the loading page, so not the xmls folder. try putting

[jQuery] Re: jqModal to get info from database fails

2008-01-09 Thread Alexandre Plennevaux
oups, sorry, i realize they are already all in the same folder. my bad...

[jQuery] Superfish: problems with second tier

2008-01-09 Thread MorningZ
I've got this simple menu: ul id=NavMenu class=nav lia href=/default.aspxHome/a/li lia href=#Reports/a/li lia href=#Testing/a/li lia href=#Links/a/li lia href=#Profile/a/li li a href=#Info/a ul lia href=#One/a/li lia href=#Two/a/li

[jQuery] Selecting Child from object

2008-01-09 Thread K-BL
If you are in the the middle of an each statement, and you want to select a child object from the main object you are in what syntax would you use? For instance, $('.selector').each(function(){ //I want to select a child of 'this' $(this) });

[jQuery] Re: [ANOUNNCE] Comet

2008-01-09 Thread Morgan Allen
Thanks. Peter, I agree with your suspicions for transport issues. That is the second major goal for me after I am sure the protocol portions are working. I will then start implementing cross domain calls. On Jan 8, 2008 9:11 PM, Peter E Higgins [EMAIL PROTECTED] wrote: On Tuesday 08 January

[jQuery] Using one namespace for multiple methods

2008-01-09 Thread Zoram
I am working on a plugin and was trying to figure out what was happening to break my code.. I have in my plugin functions similar to the following: $.fn.pluginName = function() {} $.fn.pluginName.oneThing = function () { ... } $.fn.pluginName.anotherThing = function () { ... } I try to

[jQuery] Re: Which plug-in resizes photos to max-size according to browser window?

2008-01-09 Thread Rick Faircloth
Thanks for the info, Chris! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris J. Lee Sent: Wednesday, January 09, 2008 2:28 PM To: jQuery (English) Subject: [jQuery] Re: Which plug-in resizes photos to max-size according to

[jQuery] Problems with Interface Sortables

2008-01-09 Thread benjam
I have a demo page here: http://www.iohelix.net/formbuilder/formtest.html When you go to the page, add a few items (say 5 or so), and then try to reorder them (by grabbing the blue bar), if you reorder from the bottom up, and go below the containing div, the element you are moving disappears and

[jQuery] Re: jqModal to get info from database fails

2008-01-09 Thread Alexandre Plennevaux
now actually i think i got it :) loading the form page in ajax will not execute the javascript residing in that loaded form page, you have to call it as a callback when the ajax call is finished (so when the modified document is ready). an easy solution would be to load that form page via

[jQuery] Re: Which plug-in resizes photos to max-size according to browser window?

2008-01-09 Thread Su
On Jan 9, 2008 1:06 PM, Liam Byrne [EMAIL PROTECTED] wrote: If you rely on a totally JavaScript solution, you'll run into problems with the images looking blocky. Seconded. I had to build something like this for a client, but the blockiness wasn't at issue(they kinda liked it, actually)

[jQuery] [ANNOUNCE] jQuery.Collection released

2008-01-09 Thread Ariel Flesler
Hi everyone I added the first release of this small, but useful plugin I made. As most plugins I made, is more oriented to devs, maybe can perform as utilitary for some other plugin. While doing jQuery.Rule, I realized how easy it is, to generate other kind of collections, with the same

[jQuery] [ANNOUNCE] Space gallery

2008-01-09 Thread Stefan Petre
Image gallery with perspective http://eyecon.ro/spacegallery/ Regards, Stefan

[jQuery] Re: Using one namespace for multiple methods

2008-01-09 Thread Ariel Flesler
$().something == $.fn.something Ariel Flesler On 9 ene, 16:29, Zoram [EMAIL PROTECTED] wrote: I am working on a plugin and was trying to figure out what was happening to break my code.. I have in my plugin functions similar to the following: $.fn.pluginName = function() {}

[jQuery] Re: Using one namespace for multiple methods

2008-01-09 Thread Ariel Flesler
Oops, I misread, ignore my comment, sorry :) Ariel Flesler On 9 ene, 19:04, Ariel Flesler [EMAIL PROTECTED] wrote: $().something == $.fn.something Ariel Flesler On 9 ene, 16:29, Zoram [EMAIL PROTECTED] wrote: I am working on a plugin and was trying to figure out what was happening

[jQuery] Re: [ANNOUNCE] Space gallery

2008-01-09 Thread Andy Matthews
H! That's so awesome! Now can you get it to work with the scroll wheel, or at least the up/down arrows? andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Sent: Wednesday, January 09, 2008 3:00 PM To:

[jQuery] Re: [ANNOUNCE] Space gallery

2008-01-09 Thread Alexandre Plennevaux
This is a really neat effect, bravo. Yet, i wouldn't use it for pictures personally, because the animation takes over the impact that one usually aims to have with its photos. i do believe less is more especially in graphics design. A good collection of images with plain back/next buttons will

[jQuery] Re: Switching Divs

2008-01-09 Thread Glen Lipka
I started work on a demo for this, but It's doing something wrong. http://commadot.com/jquery/animateSwap.php Anyone know why the thing keeps going down the screen? James, this would be easier if the two elements were positioned absolute to begin with. What is their original state? Glen On

[jQuery] Re: Switching Divs

2008-01-09 Thread Benjamin Sterling
Glen, I would assume it has something to do with offset(), when I remove the margin and the border they work fine. On 1/9/08, Glen Lipka [EMAIL PROTECTED] wrote: I started work on a demo for this, but It's doing something wrong. http://commadot.com/jquery/animateSwap.php Anyone know why the

[jQuery] Re: why not get value using $('#wrapper').attr('offsetHeight') in firefox?

2008-01-09 Thread Shawn
offsetHeight is a DOM property. If you really want the offsetHeight, you'd do it like this: $(#wrapper)[0].offsetHeight; But doing $(#wrapper).height() is probably the better method to use - more cross-browser I think. Also, as noted in another response getElementById(Wrapper) is NOT the

[jQuery] Pretty XML?

2008-01-09 Thread bweaverusenet
Hi. Any thoughts on how to take an XML string, transform it into a pretty HTML string, then insert it as an HTML element? Basically, I want something that looks like the IE or FF XML display to be injected into my HTML document. Any ideas? Thanks! -bill

[jQuery] Re: how can i access and manipulate iframe elements in ie6

2008-01-09 Thread rgrwkmn
Check out the $.frameReady jQuery plugin. I've been having trouble getting it to work properly with my site, but others have had great success and it works perfectly in the demo. http://ideamill.synaptrixgroup.com/?p=6 On Jan 9, 4:13 am, sigbin dan [EMAIL PROTECTED] wrote: hi guys, im

[jQuery] Pretty Horizontal Rules with jQuery

2008-01-09 Thread Hamish Campbell
Hi all, Thought I'd share a little piece of code I whipped up this morning. This turns hr elements into pretty div based dividers. In action here: http://www.deft.co.nz Turn js on and off and compare! In the HTML: hr title=some text! / In the JS: $(document).ready(function(){

[jQuery] match element based on CSS value

2008-01-09 Thread [EMAIL PROTECTED]
How can I select an element based on it's CSS style value? For example, let's say I have an element absolute positioned at top=100px. How can I do something like the following? $(top=100px) thanks Jason

[jQuery] Re: Stopping click event action in safari 1.3 ( click(function(){return false;}); )

2008-01-09 Thread Klaus Hartl
On 9 Jan., 19:14, Dan Eastwell [EMAIL PROTECTED] wrote: Thanks Klaus, I'll have to rewrite my functions for that. I'm sure it's no great headache. Before rewriting, have you tried the following? // attach event handler the usual way var $a = $('a'); $a.click(function() { ... }); // be nice

[jQuery] Re: [ANNOUNCE] Space gallery

2008-01-09 Thread Morgan Allen
Awesome, I think this is a best JS image gallery I have seen. I will likely use that on the next release of my site. On Jan 9, 2008 1:08 PM, Benjamin Sterling [EMAIL PROTECTED] wrote: That is great and it sucks at the same time; It is great because I am/was working on some thing similar;

[jQuery] Re: Switching Divs

2008-01-09 Thread Glen Lipka
I changed it up a little. Fun little page. :) http://commadot.com/jquery/animateSwap.php Hope this is helpful, Glen On Jan 9, 2008 2:00 PM, Benjamin Sterling [EMAIL PROTECTED] wrote: Glen, I would assume it has something to do with offset(), when I remove the margin and the border they work

[jQuery] Re: Cross domain POST

2008-01-09 Thread Danny
To the best of my knowledge, cross domain script loading is just as much a security risk, but it was present in browsers before the risks were realized and too many sites depend on it, so no one can remove it. It's a historical anomaly. Danny On Jan 9, 9:39 am, Miha [EMAIL PROTECTED] wrote:

[jQuery] Re: match element based on CSS value

2008-01-09 Thread Glen Lipka
Whipped up a demo. http://commadot.com/jquery/isCSSRule.php Hope this helps. There might be another way. Glen On Jan 9, 2008 2:01 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: How can I select an element based on it's CSS style value? For example, let's say I have an element absolute

[jQuery] Re: Using one namespace for multiple methods

2008-01-09 Thread Danny
The short answer is, yes, you're doing the wrong thing to try to namespace plugins. It's not officially supported. If you really want to, I wrote a small plugin that simulates namespaces by copying methods in and out of the jQuery object; it was discussed here:

[jQuery] Re: Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-09 Thread Olaf Bosch
weepy schrieb: acutally i have a fix for this - will upload tomorrow Thanks for the Update, fine, is working better. A little Problem i have with boxes are have float with display:inline; I do often this, to workaround the Double-Margin-Bug in IE7 I have change your code to: var h =div

[jQuery] Re: Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-09 Thread Olaf Bosch
Olaf Bosch schrieb: In my FooterBoxes work the Workaround with padding-bottom not in all boxes, one have the 1px border ever :( All have the same Styles, quirks IE ;) Haha, I write this and i have the idea, great. The boxes have all a UL in, I change the margin-top +1px and all is fine,