[jQuery] Re: something wrong with $.each()

2008-12-16 Thread Serge
Thank you very much Michael, 'doc' is response of $.get() function to HTML file and I thought it should be DOM :) Converted this to var doc = 'test'; doc = $('').append(doc); and all works great. Thank you again :)

[jQuery] Re: something wrong with $.each()

2008-12-16 Thread Michael Geary
Your doc variable is a string, not a DOM element or a jQuery object. Do you actually want to modify a string? You'd use a regular expression for that, not jQuery. Or did you mean for doc to be a DOM fragment instead of a string? -Mike > From: Serge > > Sorry, cannot find solution, why this co

[jQuery] something wrong with $.each()

2008-12-16 Thread Serge
Sorry, cannot find solution, why this code don't modified variable 'doc' var doc = 'test'; $('span', doc).each(function() { $(this).text('new value'); }) thank you.

[jQuery] Re: relative positioning spans inside cluetip

2008-12-16 Thread Tim
oops. i need to put leftL xxxpt. forgot the pt. it always helps to post. seems that as soon as i do, i find the answer myself.

[jQuery] Re: my test passes the first time, but fails the second time

2008-12-16 Thread Dave Methvin
I think this code does what you want. Instead of trying to if/then all the cases, you can let jQuery's chaining take care of a lot of it. $(document).ready(function() { var $phrases = $("#phrases").find("li"); function rephrase(dir) { var pos = $phrases.index($phrases.filter(".c

[jQuery] relative positioning spans inside cluetip

2008-12-16 Thread Tim
i'm using inline styles to position some s inside the cluetip. using an ajax loaded cluetip. they are ignoring the positioning css. however, when i open the page directly in my browser, everything is properly positioned. fyi, i put some color to the text using css just to see if inline styles we

[jQuery] Re: Advance Cycle synchronize image thumnail pager

2008-12-16 Thread Chian
How can I use 'prevNextClick' callback to be able to set the 'pageAnchorBuilder' to enable highlight in the next batch item. I cant see the possibility to pass the 'pageAnchorBuilder' to the first item next batch. Plan A: I group this to be able to control the batch item. But I'm having a pr

[jQuery] Superfish: post the license, please

2008-12-16 Thread Brian
Joel Birch, Would you please state the license(s) for Superfish on the jQuery page (the page with the stars indicating the voters' rating of the plug- in)? This would put it in an easily accessible location and it would be present for every new release. thanks, Brian

[jQuery] Re: libraries

2008-12-16 Thread Ricardo Tomasi
Ah now I see what you mean. You can download the extensions for Dreamweaver or IntelliSense at http://xtnd.us/dreamweaver/jquery http://www.mustafaozcan.net/en/post/2008/06/15/JQuery-1-2-6-Intellisense-for-Visual-Studio-2008.aspx But I think it's more productive to rewrite it from scratch in you

[jQuery] Re: jQuery.data() identifier not working

2008-12-16 Thread Ricardo Tomasi
Yes, I understood that. That's why I said you can keep an unique ID somewhere else, because the one created by data() can't be used: //create an unique ID var generateID = function(){ var uid = 0; return function(){ return uid++ }; } //save it somewhere $('img').data('id',id) or $('img').a

[jQuery] jqModal + validate + blockui plugins

2008-12-16 Thread Bhavin
Hi, I am trying to implement validate plugin in jqModal. I tried validate () method in onshow, onload method but it is not working. Can anyone confirm whether it is supporting? I tried blockui plugin to show "Please wait..." message on jqmodal when form is submitted but its not working properly.

[jQuery] Re: serialScroll and jCarousel lite

2008-12-16 Thread IsRaz88
Does anyone have any idea? -IsRaz88 On Dec 15, 5:51 pm, IsRaz88 wrote: > Hey, I was wondering if anyone knows how I could implement > serialScroll with jCarousel lite to get a constant scrolling function > instead of scroll then pause. > > Any help is appreciated. Thanks. > > -IsRaz88

[jQuery] Re: What am I doing wrong here -- htmlTo?

2008-12-16 Thread Kean
Ken, I wanted to play by your rules BUT agreed with Brian on using CSS instead of On Dec 16, 5:18 pm, brian wrote: > On Tue, Dec 16, 2008 at 5:50 PM, ken wrote: > > I am trying to do the following: > > > 1) create an IMG > > 2) assign an SRC to the IMG > > 3) wrap the IMG in 's > > 4) insert t

[jQuery] Re: What am I doing wrong here -- htmlTo?

2008-12-16 Thread brian
On Tue, Dec 16, 2008 at 5:50 PM, ken wrote: > I am trying to do the following: > > 1) create an IMG > 2) assign an SRC to the IMG > 3) wrap the IMG in 's > 4) insert the resultant HTML into #foo > > I have been hammering at this for awhile now, and am having problems; I've > tried using wrap and

[jQuery] Re: What am I doing wrong here -- htmlTo?

2008-12-16 Thread Kean
var foo = $("#foo"); foo.html('').find('img').attr("src","asdf.gif"); Tested and working. find( 'img' ) works for me. On Dec 16, 3:12 pm, ken wrote: > Scratch my "working" example -- the .find( 'img' ) evidently can't find the > image > > On Tue, Dec 16, 2008 at 4:50 PM, ken wrote: > > I

[jQuery] Re: [OT] Client side web application with jQuery

2008-12-16 Thread brian
On Tue, Dec 16, 2008 at 5:59 PM, Leandro Ardissone wrote: > > Hi, > > I'm need to implement a website (intranet) that runs everything on the > client side communicating to the server via RESTful requests. I'm > using jQuery but my big issue at the moment is how to manage the > login. > > I'm not

[jQuery] Re: Cluetip speed question

2008-12-16 Thread David Morton
On Tue, Dec 16, 2008 at 6:26 PM, Michael Geary wrote: > > alert( 'Selector: ' + (t2-t1) + ', cluetip(): ' + (t3-t2) ); > That came out to: 177, 3387 for 1708 tips, so cluetip certainly has a huge chunk of it. >

[jQuery] Re: How to create a div by click + drag

2008-12-16 Thread Kean
Hi Nejo31, I am too lazy to code, so I will mainly pseudo code. var initx; var inity; var resize = function(e){ created.height(e.pageY - initY); created.width(e.pageY - initY); }; $("calendar container id").mousedown(function(e){ $("body").append(''); initx = e.pageX; inity = e.

[jQuery] Re: Slide Toggle - Bug in Firefox?

2008-12-16 Thread Kean
An example page will be helpful. You might want to see if you have set wmode="transparent" in your flash first. On Dec 16, 12:08 pm, "theoga...@googlemail.com" wrote: > Hello all, > > This is my first post here but I have been trying to solve this > problem for a while now and I hope I can do it

[jQuery] Re: New topic

2008-12-16 Thread brian
On Tue, Dec 16, 2008 at 2:33 PM, GoJakie wrote: > > Dear Friends, > > I had posted a new topic half an hour ago which is not showing up??? > any ideas? > The one about sorting PHP tables? It's there. I've noticed that gMail doesn't include one's own posts to the list in the INBOX. You won't see

[jQuery] Re: Cluetip speed question

2008-12-16 Thread Michael Geary
The $('.HelpTipAnchor') is certainly time-consuming, but after that's done, the cluetip plugin still has to loop over all those elements and set up a lot of stuff. My guess is that the latter is where most of the time is going. It's easy enough to find out which: simply split apart the selector a

[jQuery] Re: Cluetip speed question

2008-12-16 Thread Kean
You most probably guess right on the CSS selector speed. Here's a link to read on CSS selector optimization. http://www.thegrubbsian.com/2008/10/optimize-jquery-selector-performance.html On Dec 16, 2:17 pm, "David Morton" wrote: > I am trying to use Cluetip to make a help text for what can be a

[jQuery] Re: Google Analytics breaks jQuery.

2008-12-16 Thread Kean
$("a").click(function(){ do something // return false, this is jQuery's way of preventing default or bubbling return false; }); Hope this helps On Dec 16, 11:51 am, simshaun wrote: > I have a page where I am using jQuery's load function to inject HTML > into a div container. > > Right un

[jQuery] Google Analytics breaks jQuery.

2008-12-16 Thread simshaun
I have a page where I am using jQuery's load function to inject HTML into a div container. Right underneath the opening body tag, I've written a script that binds an onClick event to all tags. The event fires e.preventDefault(), reads the href attribute, and loads that href into a div container.

[jQuery] New topic

2008-12-16 Thread GoJakie
Dear Friends, I had posted a new topic half an hour ago which is not showing up??? any ideas? thanx

[jQuery] Cluetip speed question

2008-12-16 Thread David Morton
I am trying to use Cluetip to make a help text for what can be a large list - and I'm hearing reports that a list of 100 items with 4-5 columns each is causeing IE7 to slow down or appear to freeze for a while, and commenting out the cluetip invocation clears it up. I'm assuming it's jsut due to

[jQuery] Slide Toggle - Bug in Firefox?

2008-12-16 Thread theoga...@googlemail.com
Hello all, This is my first post here but I have been trying to solve this problem for a while now and I hope I can do it here.I also I posted to the right mailing list 1) JQuery Effect: Slide Toggle 2) Script URL: http://docs.jquery.com/Effects/slideToggle 3) Problem: I am trying to hide an

[jQuery] How to create a div by click + drag

2008-12-16 Thread Nejo31
Hi, i have a question on what function to use to create a funciton to create a div by clicking somewhere on the parrent div and dragging down to determine the div size. To give you a better idea of what i mean here is a link of the DHTML week planner demo. http://www.dhtmlgoodies.com/scripts/dh

[jQuery] Sorting php tables

2008-12-16 Thread GoJakie
Dear friends, I am not really sure whether this is the right place to post my topic. I have a php page which I found somewhere on the Internet which uses TableSort revisited v3.8 by frequency-decoder.com tablesort.js to sort table data. I have got hold of another php page which runs fine but it

[jQuery] Re: Access Elements Rendered in a Thickbox

2008-12-16 Thread simshaun
I can't directly answer your question, but the reason that adding the event listener to the hidden button on document ready does not work is this (or at least this is what the library I was working with did): When the Thickbox loads, it does not "directly" reference the container it's loading. I

[jQuery] Re: What am I doing wrong here -- htmlTo?

2008-12-16 Thread ken
Scratch my "working" example -- the .find( 'img' ) evidently can't find the image On Tue, Dec 16, 2008 at 4:50 PM, ken wrote: > I am trying to do the following: > > 1) create an IMG > 2) assign an SRC to the IMG > 3) wrap the IMG in 's > 4) insert the resultant HTML into #foo > > I have been

[jQuery] [OT] Client side web application with jQuery

2008-12-16 Thread Leandro Ardissone
Hi, I'm need to implement a website (intranet) that runs everything on the client side communicating to the server via RESTful requests. I'm using jQuery but my big issue at the moment is how to manage the login. I'm not sure which is the best method to login the user securely from javascript. W

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Rick Faircloth
D'oh! :o) > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of Michael Geary > Sent: Tuesday, December 16, 2008 5:39 PM > To: jquery-en@googlegroups.com > Subject: [jQuery] Re: Creating an OS Web Interface in jQuery (Part I) > > >

[jQuery] What am I doing wrong here -- htmlTo?

2008-12-16 Thread ken
I am trying to do the following: 1) create an IMG 2) assign an SRC to the IMG 3) wrap the IMG in 's 4) insert the resultant HTML into #foo I have been hammering at this for awhile now, and am having problems; I've tried using wrap and some of the other content-manipulation methods, but I still ca

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Michael Geary
Never mind, you beat me to it! > From: Michael Geary > > Excellent point, Rick. > > But I think there may be a little typo that changed the > meaning to something other than what you intended? :-) > > From: Rick Faircloth > > > > No faster way to kill someone's enthusiasm than to simply tea

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread donb
Maybe it's Obvious. Sorta. (OS). On Dec 16, 2:53 pm, "Rick Faircloth" wrote: > Just take it on face value... did you even look at it? > It's obviously an operating system interface.  And, yes, > this is Part 1 of a series, he stated.  You don't have to > know everything right away to appreciate

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Michael Geary
Excellent point, Rick. But I think there may be a little typo that changed the meaning to something other than what you intended? :-) -Mike > From: Rick Faircloth > > No faster way to kill someone's enthusiasm than to simply > tear something down without any encouragement. > > It's like I te

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Rick Faircloth
Or, rather...you *can* applaud the effort if not always the performance. > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of Rick Faircloth > Sent: Tuesday, December 16, 2008 4:58 PM > To: jquery-en@googlegroups.com > Subject: [jQue

[jQuery] Re: Licensing Question

2008-12-16 Thread Mika Tuupola
On Dec 16, 2008, at 6:44 PM, Eric Hobo Garside wrote: I've got a quick question for all the licensing gurus who happen to be on or about the list. I'm developing a plugin for jQuery for a company, and want to release it as open source with a non-competition stipulation. Is it possible to relea

[jQuery] error when using ui.mouse.js

2008-12-16 Thread Sean
Hi There, I'm getting a weird error when I try to use this script ui.mouse.js in my page. The drag and drop functionality seems to be working fine it's just generating an error. Can someone tell me what i'm missing to initialize this? !-- error from firebug $.ui[module] has no properties add("

[jQuery] Re: libraries

2008-12-16 Thread Dirceu Barquette
OK. CSV isn't required... All the IDE has {css,tagHtml}attrs or jQuery{attr,methods} auto-complete cappable . If I have these lists, auto-completing is easy... isn't it? Thanks Dirceu Barquette 2008/12/16 Ricardo Tomasi > > Hmm.. what do you mean? all of these are plain text, I guess you meant >

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Rick Faircloth
Hi, Ricardo... I haven't complained about anyone's criticism of the "tutorial" aspect of what has been presented...it's the "what-good-is-this" mentality concerning what Adrian had created that I thought was in poor taste. My mention of tutorials was to remind everyone that this was obviously th

[jQuery] Re: Smart image resizing "Idea"

2008-12-16 Thread MorningZ
Change $(this).click(function(){ window.location = $(this).attr("src"); }); To $(this).click(function(){ window.open("show", $(this).attr("src")); }); I've got code very very very similar to this http://www.team-integra.net/forum/display_topic_threads.asp?ForumID=16&TopicID=22805

[jQuery] Re: jQuery.data() identifier not working

2008-12-16 Thread ricardoe
Hi Ricardo Yeah, its a DOM element to be more specific I'm working with a lot of IMG elements. I need to identify them uniquely, (because sometimes the image is repeated, but I need to manage them as different objects), so when I read the documentation for jQuery.data() I (maybe mis-)understand t

[jQuery] Re: event fires exponentially

2008-12-16 Thread Jan Limpens
Yes I do. It's just a bunch of check boxes to filter and order a result. It is not updating the form, too. Nothing disastrous about this. Keep cool, Jan On Tue, Dec 16, 2008 at 5:42 PM, MorningZ wrote: > > This original code you posted > > > $(document).ready(function(){ >$form = $('#fi

[jQuery] Re: Smart image resizing "Idea"

2008-12-16 Thread Yousef
Dear Eric, Dear Eric, Thanks for helping me. I did not how to use the code in the link :). Any way I got a more simple code and I am happy with it "check the end of the message". Dear donb, the problem with CSS scaling is because it will scale all image "small image and large one". thanks for hel

[jQuery] Re: History Plug-In

2008-12-16 Thread russellneufeld
Hi Olivier, Thanks for the response. So it looks like I include the jquery.history_remote.js file, call this in my $(document).ready() function: $.ajaxHistory.initialize(); but then what do I do next? I get a callback every time I update the table in my page with new content, so I tried add

[jQuery] Re: Access Elements Rendered in a Thickbox

2008-12-16 Thread Rob Wilkerson
On Dec 16, 3:33 pm, Ricardo Tomasi wrote: > Your thickbox script most certainly provides a callback function where > you could add those handlers, which one are you using? Hey Ricardo - I'm using http://jquery.com/demo/thickbox/. I'll dig a little deeper. I was hoping someone already knew th

[jQuery] Re: Access Elements Rendered in a Thickbox

2008-12-16 Thread Ricardo Tomasi
Your thickbox script most certainly provides a callback function where you could add those handlers, which one are you using? On Dec 16, 5:25 pm, Rob Wilkerson wrote: > Hey all - > > I'm looking for/wondering whether there is a way to access an element > loaded in a thickbox.  I have a page that

[jQuery] Re: libraries

2008-12-16 Thread Ricardo Tomasi
Hmm.. what do you mean? all of these are plain text, I guess you meant something other than 'file format' (and csv has nothing to do with CSS by the way, more than the rest is unrelated!) :] On Dec 16, 5:22 pm, "Dirceu Barquette" wrote: > Hi, > > I'd like to know, please: > There is  {HTML,CSS,j

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Ricardo Tomasi
I have to agree with Alexandre. It's a nice demonstration of skill, but pasting hundreds of lines of code in boxes is not exactly 'teaching'. I bet most beginners would get lost pretty quickly with the code and end up just copy/pasting it. And for intermediate/ advanced JS programmers this isn't v

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Alexandre Plennevaux
Rick, I read the tutorial in its entirety before commenting. This document lacks structure and not only that, I could have pointed the many english mistakes, because obviously this was written quite fast, and i'm sure with a little more care and some more mindset framing, it should be perfect. I d

[jQuery] Re: ClueTip Custom Close Button

2008-12-16 Thread braveknave
Perfect! Thanks a million.

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Rick Faircloth
Just take it on face value... did you even look at it? It's obviously an operating system interface. And, yes, this is Part 1 of a series, he stated. You don't have to know everything right away to appreciate what's already been done! Rick > -Original Message- > From: jquery-en@googleg

[jQuery] Re: Why won't this work?

2008-12-16 Thread Rick Faircloth
Ok, Charlie. I think everything's worked out, even the validation onblur. You can check out the working demo here: http://wsm-dev.com/wsm-dev/ajax_login_3/index.cfm Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Charlie Griefer Sent

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Alexandre Plennevaux
i meant AdrianMG, not Liam ! On Tue, Dec 16, 2008 at 8:43 PM, Alexandre Plennevaux wrote: > yup i must say i am also doubtful on the actual "tutorial". I'm trying > to be constructive so please don't take offense of my personal remark: > > This is more of a demo, it's not really explaining how t

[jQuery] Re: Is this syntax correct?

2008-12-16 Thread Rick Faircloth
Thanks, guys! That took care of it! Rick > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of MorningZ > Sent: Tuesday, December 16, 2008 2:31 PM > To: jQuery (English) > Subject: [jQuery] Re: Is this syntax correct? > > > And to

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Alexandre Plennevaux
yup i must say i am also doubtful on the actual "tutorial". I'm trying to be constructive so please don't take offense of my personal remark: This is more of a demo, it's not really explaining how to do it. For instance, a tutorial should explain the rationale of a web OS interface. AFAIK that's

[jQuery] Re: event fires exponentially

2008-12-16 Thread MorningZ
This original code you posted $(document).ready(function(){ $form = $('#filter-form'); $form.ajaxForm({ //dataType: 'json', success: function(){ alert("peng"); }, target: "#layout-child-output

[jQuery] Re: Smart image resizing "Idea"

2008-12-16 Thread Eric "Hobo" Garside
I believe the latter. On Dec 16, 2:06 pm, donb wrote: > Are you aware of the CSS height:auto (and width:auto) properties?  Set > the width to whatever value you want and the height will maintain the > relation between the width and height automatically (maintains aspect > ratio).  Or are you tal

[jQuery] Re: event fires exponentially

2008-12-16 Thread Cam Spiers
I think that ajaxForm already adds a submit handler to the form you are adding it to... So i think this is doubling up. $('input', $form).change(function(){ $form.submit(); }); On Wed, Dec 17, 2008 at 6:33 AM, Jan Limpens wrote: > > And this does work: > > $(documen

[jQuery] Re: Is this syntax correct?

2008-12-16 Thread MorningZ
And to build on Mike's reply understand that "this" is a DOM element in that context, *not* a jQuery object so this.val is not valid but $(this).val()is valid On Dec 16, 1:53 pm, Mike Alsup wrote: > > When I write it like this $('input#emailaddress') > > I get a "this.val undef

[jQuery] Re: Trying to assign onClick to a link

2008-12-16 Thread Cam Spiers
$('a#link').click(function(event) { event.preventDefault(); $('div#bugDiv').slideToggle('slow'); }); You can do this as well. On Wed, Dec 17, 2008 at 3:26 AM, Matt wrote: > > Worked perfectly. Thanks Michael and Mike!! > > On Dec 16, 6:43 am, Michael Price wrote: > > Matt wr

[jQuery] Access Elements Rendered in a Thickbox

2008-12-16 Thread Rob Wilkerson
Hey all - I'm looking for/wondering whether there is a way to access an element loaded in a thickbox. I have a page that launches thickbox to load a form. I need to be able to set a click() event listener on the submit button of that form so that I can submit the form via ajax. Unfortunately, I

[jQuery] Re: Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread donb
I may seem a bit dense, but what's the objective here? And is 'OS' Operating System, Open Source, something else? Maybe Part 2 clears all this up, but some intro/background would help a lot. On Dec 16, 7:57 am, AdrianMG wrote: > Finally here you have the First Part of this series of tutorials

[jQuery] libraries

2008-12-16 Thread Dirceu Barquette
Hi, I'd like to know, please: There is {HTML,CSS,jQuery}library in [xml,csv,json]file format? The goal is an IDE... Thanks. Dirceu Barquette

[jQuery] Re: Smart image resizing "Idea"

2008-12-16 Thread donb
Are you aware of the CSS height:auto (and width:auto) properties? Set the width to whatever value you want and the height will maintain the relation between the width and height automatically (maintains aspect ratio). Or are you talking about dynamically stretching the image, not knowing the des

[jQuery] Re: Using the not() filter

2008-12-16 Thread Ricardo Tomasi
Right, so that explains all. Nobody paid any attention to the "nested in certain DIVs" part, including me: $('input').filter(function(){ return !$(this).parent().is('#addNewAdress,#addNewContactDetail'); }).click(function(){ console.log(this.id); }); read on about the filter function at

[jQuery] Re: Is this syntax correct?

2008-12-16 Thread Mike Alsup
> When I write it like this $('input#emailaddress') > I get a "this.val undefined" error... That's because 'val' is not a property on a that element. You want 'value'.

[jQuery] Re: $(document).ready on an ajax return?

2008-12-16 Thread davidgregan
okay, I've figured this out. the problem I was having was a combination of 1) ie's $(element).change() event doesn't fire until after the element looses focus (i use click() instead) and 2) refreshing ie doesn't always refresh the page, there's some funky caching going on so the changes I had made

[jQuery] Re: Is this syntax correct?

2008-12-16 Thread Rick Faircloth
Thanks for the reply, MorningZ... When I write it like this $('input#emailaddress') I get a "this.val undefined" error... How should it be? > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of MorningZ > Sent: Tuesday, December 16,

[jQuery] Re: Suckerfish z-index issues in IE

2008-12-16 Thread Karl Swedberg
Hi there, give #valuechain position: relative and z-index: 2 if that doesn't solve the problem, give #col-2 z-index: 1 --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Dec 16, 2008, at 2:31 AM, Timid wrote: Hi, i'm struggling with IE6 and IE7 z-index iss

[jQuery] Re: [TUTORIAL] Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Rick Faircloth
> what does this offer? You are so encouraging, Liam! Two things you should make note of in Adrian's remarks: 1) "First Part" of this "series" of tutorials 2) OS Web "Interface" i.e., it's the "first steps" in a potentially useful "interface" and as an "OS Web Interface" it's purpose is to p

[jQuery] Re: Is this syntax correct?

2008-12-16 Thread MorningZ
It looks like there is a space between "input" and "#emailaddress" and that makes no sense as that will say: "give me the control with id "#emailaddress" that is a descendant of "input"" and controls do not have descendants On Dec 16, 1:27 pm, "Rick Faircloth" wrote: > I get no errors, b

[jQuery] Re: Why won't this work?

2008-12-16 Thread Rick Faircloth
I got the #emailError message to hide, but now I'm trying to figure out how to get it to display "onblur" of the input. I sent another message to the list for that concern. Thanks, Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Charlie Grie

[jQuery] Is this syntax correct?

2008-12-16 Thread Rick Faircloth
I get no errors, but no response, either. I tried just using $('#emailaddress').blur... without the "input", but then I got a val undefined error. $(document).ready(function() { $('input #emailaddress').blur(function() {

[jQuery] Re: More About jQuery's Web Browser Compatibility

2008-12-16 Thread Eric Martin
I know that Safari for Windows is supported. I believe IE for MAC falls under the 5.x line, which is not supported. Unsure about Camino. On Dec 16, 9:59 am, tallvanilla wrote: > Hey All, > > The jQuery website states clearly that jQuery is compatible with the > following web browsers: > > IE 6.0

[jQuery] Re: Using the not() filter

2008-12-16 Thread WhoButSB
Thanks Ricardo after lunch I will give that a try. No the Id is not the input itself it a actually the parent div and there are a collection of inputs in the div. I would post my HTML but there is so much php looping and conditions that it would just Mqke this thread more confusing. On Dec 16, 1:

[jQuery] Re: One click spreadsheet from table

2008-12-16 Thread tlphipps
You'll definitely have to use something server-side to accomplish this. But if I follow what you're after, you don't actually have to write the data into a file. You could pass the data to the PHP script via a GET or POST request, then have PHP send the correct headers for a file download (inclu

[jQuery] Re: Using the not() filter

2008-12-16 Thread Ricardo Tomasi
by the way: Is #addNewAdress the input itself? Maybe what you're looking for is #addNewAdress :input. Again, seeing the relevant HTML would help. On Dec 16, 1:26 pm, WhoButSB wrote: > I gave this a try: > $("input:not(#addNewAddress:input, #addNewContactDetail:input)").focus > (); > > And the fu

[jQuery] Re: Smart image resizing "Idea"

2008-12-16 Thread Eric "Hobo" Garside
The scaling plugin is located here: http://snipplr.com/view/10532/jquery-scaling-plugin/ It allows you to call the "scale" method on any object, providing it a target to scale to. More is explained in the snipplr comments, but feel free to ask. On Dec 16, 12:40 pm, "Eric \"Hobo\" Garside" wrote

[jQuery] Re: Using the not() filter

2008-12-16 Thread Ricardo Tomasi
Try this: var unwanted = $('#addNewAdress,#addNewContactDetail'); $('input').not(unwanted).click(function(){ console.log(this.id); }); This is exactly the same as your first posted code, I just tested and it works. What does your HTML look like? On Dec 16, 1:26 pm, WhoButSB wrote: > I gave

[jQuery] More About jQuery's Web Browser Compatibility

2008-12-16 Thread tallvanilla
Hey All, The jQuery website states clearly that jQuery is compatible with the following web browsers: IE 6.0+, FF 2+, Safari 2.0+, Opera 9.0+ Unfortunately, that's the only info I could find in the docs about browser compatibility. I know jQuery is compatible with Camino as well (which is bas

[jQuery] One click spreadsheet from table

2008-12-16 Thread GasGiant
Thinking out loud I want to create a one-click solution that turns any table into a CSV file and opens the CSV file with whatever app is the default for .csv files. I know that I can turn any result set into a CSV file with PHP, but that involves writing a file to disk and then prompting the u

[jQuery] Re: using cycle for website navigation, choppy in firefox

2008-12-16 Thread Mike Alsup
> I am creating a website for my company.  I am using the cycle plugin to > navigate horizontally between pages.  The plugin is awesome.  However the > site is starting to get pretty full and I've just added something that has > made the cycle navigation choppy, just in firefox.  The site is not p

[jQuery] Re: SimpleModal v1.2 released

2008-12-16 Thread Eric Martin
I just released 1.2.2 which fixed all of the IE6 related positioning bugs. Thanks to Deepak Mehta, Bill Beckelman, James Taylor and others for your help finding these issues. On Dec 4, 11:34 am, Eric Martin wrote: > A new version ofSimpleModalhas been released. It contains a few > improvement

[jQuery] Re: Smart image resizing "Idea"

2008-12-16 Thread Eric "Hobo" Garside
Yousef, I've actually been working on a plugin that has this kind of functionality. I'll throw up a modified version of the scaling library on snipplr with some documentation for it. On Dec 16, 8:43 am, Yousef wrote: > Smart image resizing "Idea" > > Dears, > I am new to JQuery.I have an idea I

[jQuery] Re: Licensing Question

2008-12-16 Thread Eric "Hobo" Garside
Much thanks. My concerns over licensing have always been pretty moot. I usually just throw a GPL on there and call it a day. This commercially supported open source is new to me. :) On Dec 16, 12:34 pm, "Michael Geary" wrote: > You can license your plugin in any way you want. You don't have to u

[jQuery] using cycle for website navigation, choppy in firefox

2008-12-16 Thread Mike Dodge
I am creating a website for my company. I am using the cycle plugin to navigate horizontally between pages. The plugin is awesome. However the site is starting to get pretty full and I've just added something that has made the cycle navigation choppy, just in firefox. The site is not public so

[jQuery] Is there a way to call scroll from outside jQuery.?

2008-12-16 Thread Jigga
Thank for this great plugin. I have one problem. I have created two carousels fetching images with Ajax, on the same page. First carousel displays and scrolls only one image each scroll. The second carousel displays and scrolls 4 images each scroll. This carousel is supposed to be a thumbnail li

[jQuery] superfish - font colors

2008-12-16 Thread rick
Is there a way to have one color font for the main nav. link and a different color font for the links in the drop downs? (This is my first time working with Superfish.) A demo/draft page with my progress is at... http://www.gofullsail.com/1-base-l2b.html I would prefer that the drop down text

[jQuery] Smart image resizing "Idea"

2008-12-16 Thread Yousef
Smart image resizing "Idea" Dears, I am new to JQuery.I have an idea I want to share with you and i hope one of the programmer write the code for it. the idea is to resize an image to a custom width and keeping the relation between the width and height ,for example: * if the width less than 600

[jQuery] Re: Licensing Question

2008-12-16 Thread Michael Geary
You can license your plugin in any way you want. You don't have to use the same licenses as jQuery itself. For jQuery, just ignore the GPL license and use the MIT license instead. Read the license - it really doesn't restrict you at all. It essentially just says "Keep the copyright and license no

[jQuery] Re: event fires exponentially

2008-12-16 Thread Jan Limpens
And this does work: $(document).ready(function(){ $form = $('#filter-form'); $('input', $form).change(function(){ $form.ajaxSubmit({ dataType: 'json', success: function(){}, target: "#layout-ch

[jQuery] Re: [TUTORIAL] Creating an OS Web Interface in jQuery (Part I)

2008-12-16 Thread Liam Potter
good for a beginner to start learning from, but what does this offer?, really it is some pretty graphics and a click and drag script and some mouse clicks ? Rick Faircloth wrote: Great idea, Adrian! Good work! Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jq

[jQuery] Re: mod'ing pseudo-classes...possible?

2008-12-16 Thread D A
Thanks, Dave. I'll give it a shot! Worse case, I used the same image, but two different spans and swap them out. -Darrel On Sat, Dec 13, 2008 at 1:42 PM, Dave Methvin wrote: > >> $(".detailsPaneToggle").children("a").css('background-position','0px -35px'); >> $(".detailsPaneToggle").children("

[jQuery] Re: event fires exponentially

2008-12-16 Thread Jan Limpens
Must be some bug in ajaxForm, I guess. if I change $('input', $form).change(function(){ $form.submit(); }); to $('input', $form).change(function(){ alert('peng'); }); it fires once only, otherwise I get the exponential behavior. My guess

[jQuery] Star Ratings - update value from callback

2008-12-16 Thread robgallen
Using the most excellent Star Ratings from fyneworks.com (v2.5) - I'd like to be able to set the current value of a ratings object from an external function. We use a callback to post the rating value to an ajax handler, which then returns the new average rating for that item. E.g. 4 users have r

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

2008-12-16 Thread rernens
> Hmm, i'll have to investigate that, but i am rather busy atm. > I can live without the post of additional parms, I changed my backend code to handle query string instead of form-data. Anyway if there is something I can do to help, let me know. > What flash version are you using? Did you try t

[jQuery] Re: $(document).ready on an ajax return?

2008-12-16 Thread davidgregan
I'd like to add that I can't even access the new DOM elements in IE in the $.get() callback function, but I can in firefox. it's like IE doesn't insert the new HTML into the dom until after the callback is executed. that sucks! ;P On Dec 16, 9:42 am, davidgregan wrote: > sorry, I may have overs

  1   2   >