[jQuery] jQuery breaks with LiveGridPlus

2007-04-03 Thread [EMAIL PROTECTED]
Hey everybody, I've been searching for an animation library to use along side the LiveGridPlus implementation from http://dowdybrown.com/ (based on the Rico LiveGrid). Anyway, I can get jQuery set up to do what I want it to by including it first, and then the prototype library that LGP needs

[jQuery] Overlib like funtionality with JQuery

2007-04-05 Thread [EMAIL PROTECTED]
Overlib is a JS library with lots of cool features for JS popups. http://www.bosrup.com/web/overlib/ I wonder if there is anything like this already built into JQuery or possibly in a plugin. Thanks.

[jQuery] problems with the starterkit

2007-04-05 Thread [EMAIL PROTECTED]
Hi, I was playing with the starterkit: http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery I got stuck in the following section, couldn't make it work: $(document).ready(function() { // use this to reset a single form $(#reset).click(function() { $(#form).reset(); });

[jQuery] dragging from an iframe?

2007-04-06 Thread [EMAIL PROTECTED]
Hi, How would I go about dragging a DIV from an iframe on my page to the main page itself? If anyone has any examples of how this is done, I am most grateful. Thanks, - Dave

[jQuery] help with resetting a slider (Interface plugin)

2007-04-06 Thread [EMAIL PROTECTED]
I'm working on a page that uses the Slider from interface.eyecon.ro. Works perfectly the first time Slider is initialized. However, re-initializing the slider *without a page load* is problematic. Here's what I'm currently using (it works): // get rid of any existing indicators and

[jQuery] inserting a DIV in alphabetical order

2007-04-06 Thread [EMAIL PROTECTED]
Hi, I have a DIV (id = classList) witih many smaller DIVs, each of class student. The smaller DIV only contains text. If I want to add a new student DIV to the list, but add it in alphabetical order, is there a simple, tried and true jQuery way of doing this? Thanks, - Dave

[jQuery] droppables question

2007-04-09 Thread [EMAIL PROTECTED]
Hi, How do I get the draggable element's text being deposited in my droppable? I have tried text() and html() and I get JS errors, text/html is not a function. Here is the code I'm working with ... $('#currentclasslist').Droppable( {

[jQuery] A return false function for all of jQuery when script not included?

2007-04-09 Thread [EMAIL PROTECTED]
I have implemented jQuery as my DHTML effects engine (and it rocks) in the latest version of my site (preview two of version 2.8 of JAB Creations which is not yet public). I have DHTML disabled by default unless the user chooses broadband and or manually enables DHTML on my site. I have not

[jQuery] Re: Autocomplte plugin status

2007-04-12 Thread [EMAIL PROTECTED]
On Apr 12, 12:32 am, Klaus Hartl [EMAIL PROTECTED] wrote: Jörn Zaefferer schrieb: Hi folks, I've achieved some progress on the autocomplte plugin. The features added by Dan Switzer to Dylan's initial plugin are now merged with modifications for completing multiple values, like

[jQuery] What is the right find expression?

2007-04-12 Thread [EMAIL PROTECTED]
Hi, After dragging an object into a Droppable, using this code: $('#classlistcell').Droppable( { accept: 'student', tolerance: 'intersect', activeclass:

[jQuery] addEventListener for jQuery Events?

2007-04-13 Thread [EMAIL PROTECTED]
I want to use jQuery as one of potentially many DHTML engines for my site. Therefor I want to move the events from my XHTML code to a JavaScript includes. I've not yet had anyone help me get any of the functions working though someone suggested using addEventListener. I'm not really good with

[jQuery] Re: addEventListener for jQuery Events?

2007-04-13 Thread [EMAIL PROTECTED]
Awesome-sauce! Your code at first didn't do anything. Then I added an onload event...THIS works... function init() { $(#header1).click(function(){ $(#div01).BlindToggleVertically(1000,null, 'bounceout'); return false;}) } window.onload = init; Now I can add any other DHTML library and give my

[jQuery] Re: New to jQuery and struggling

2007-04-16 Thread [EMAIL PROTECTED]
Thanks for the help. Moving into the head does work, but keeping it inline doesn't. Can jQuery be used inline? Fam Joel Birch wrote: On 16/04/2007, at 7:36 PM, fambizzari wrote: However, I am trying to add an additional $(document).ready(function() {}); in the middle of the document

[jQuery] Woooooooooooooooooow The Best Music Search Engine

2007-04-16 Thread [EMAIL PROTECTED]
http://www.freemp3sky.com

[jQuery] Re: Updated plugin: jqTOC -- table of contents

2007-04-16 Thread [EMAIL PROTECTED]
the content window when a heading is selected. It wasn't immediately obvious to me how to close the window after I had made my selection -- or why the window was still around to begin with. -khoker On Apr 15, 10:19 pm, DaveG [EMAIL PROTECTED] wrote: I've updated the existing plugin to work

[jQuery] Re: $().append() problem

2007-04-16 Thread [EMAIL PROTECTED]
I just noticed that I can append OK in IE6 to a div/div block, but not to a form element. In other words, appending to: input name=name id=some_id type=text size=35 - does not work Appending to: div id=some_id/div - works On Apr 16, 8:13 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I am

[jQuery] Re: Reducing this code.

2007-04-16 Thread [EMAIL PROTECTED]
select, fieldset textarea) .focus( function() { $(this.parentNode).addClass(on); }) .blur( function() { $(this.parentNode).removeClass(on); }); }); On 4/17/07, fambizzari [EMAIL PROTECTED] wrote: I am just beginning my journey with jQuery

[jQuery] Re: Autocomplete plugin

2007-04-17 Thread [EMAIL PROTECTED]
I found the JQuery and Dan's plugin for auto complete mod today and was just what I was looking for, I have a form where I ask the user to enter there town or postcode ( ZIP code) and then it will auto complete the form. My problem that I found using a cold fusion page is that held a massive

[jQuery] id is not a function?

2007-04-18 Thread [EMAIL PROTECTED]
Hi, I have this expression var parentElt = $(#newTabText).parents(td.topTab:first); alert(parentElt.id()); and I'm getting a JS error on the second line, id is not a function. I have verified, through another alert statement, that parentElt is non-empty, contains a value, and has an id

[jQuery] Re: Ajax .load confusion

2007-04-18 Thread [EMAIL PROTECTED]
Doug, I didn't try it, but I would expect the key/value pair to look like this: { key : 'value' } In your example ... $('#table').load(camp_table2.php, { Title : 'Campname' } ); -khoker On Apr 18, 3:05 pm, duggoff [EMAIL PROTECTED] wrote: I've gone through the tutorial for Quick

[jQuery] Re: id is not a function?

2007-04-18 Thread [EMAIL PROTECTED]
Thanks for everyone's respnses. attr(id) did the trick. - Dave On Apr 18, 3:18 pm, Brad Perkins [EMAIL PROTECTED] wrote: Dave, I asked a similar question awhile ago and was told that id() and name() were removed in a prior version to clean up the jQuery API. I'd written some code based

[jQuery] am I in the last table row?

2007-04-18 Thread [EMAIL PROTECTED]
Hi, I have this HTML code table trtd id=1 class=tab.../td/tr trtd id=2 class=tab.../td/tr trtd id=3 class=tab.../td/tr trtd id=4 class=tab.../td/tr /table and have defined this function $('td.tab').click( function() {

[jQuery] Re: Ajax .load confusion

2007-04-18 Thread [EMAIL PROTECTED]
$_GET is just an array. I generally add a dbug function in PHP like so: function dbug($var) { print pre . print_r($var) . /pre; } Then just call dbug($_GET); anywhere you want to see the name/value pairings. -khoker On Apr 18, 4:01 pm, duggoff [EMAIL PROTECTED] wrote: I added some

[jQuery] .change doesn't match cloned elements?

2007-04-18 Thread [EMAIL PROTECTED]
Hi, I'm trying to get flexible (array) select boxes in a form working, but i'm having some troubles with the cloned ones. The end-use idea is to auto-populate the second selectbox, after the first one has been changed. To do this, I need to match only the first selectbox ofcourse. And this

[jQuery] setting attbitues

2007-04-19 Thread [EMAIL PROTECTED]
I discovered that if I want to set the class for an object, this is not the code $('#' + id).setAttribute(class, myClass); What is the correct syntax? Thanks, - Dave

[jQuery] Re: setting attbitues

2007-04-19 Thread [EMAIL PROTECTED]
Thanks. That did it. - On Apr 19, 10:03 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] schrieb: I discovered that if I want to set the class for an object, this is not the code $('#' + id).setAttribute(class, myClass); What is the correct syntax? Thanks, - Dave Try

[jQuery] Deleting siblings

2007-04-19 Thread [EMAIL PROTECTED]
Hi, I have this HTML tabletr ... tdimg src=images/spacer.gif alt= width=5/td td class=topTab tabSelected style=padding-left: 5px; padding- right: 5px; tabletbodytr td class=tabText id=tab12nooo/td

[jQuery] Re: .change doesn't match cloned elements?

2007-04-19 Thread [EMAIL PROTECTED]
Did I find a bug, or is there just nobody that knows how to fix it? On Apr 19, 1:43 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I'm trying to get flexible (array) select boxes in a form working, but i'm having some troubles with the cloned ones. The end-use idea is to auto-populate

[jQuery] Re: .change doesn't match cloned elements?

2007-04-20 Thread [EMAIL PROTECTED]
Thanks for the replies. With that plugin I was able to solve it. :D So now it is working great: http://members.home.nl/mavdude/jquery/fixed.html On Apr 20, 5:38 am, Karl Swedberg [EMAIL PROTECTED] wrote: If you want to clone events along with new DOM nodes, you can try Brandon Aaron's Copy

[jQuery] attr('defaultValue') does not exist.

2007-04-21 Thread [EMAIL PROTECTED]
While i can acces a default value of an input field by: field.defaultValue i can't access it by $(field).attr('defaultValue') All other attributes i can acces via the .attr() method but not this one. Can it be added?

[jQuery] Re: attr('defaultValue') does not exist.

2007-04-21 Thread [EMAIL PROTECTED]
: Sets or returns the default value of a text field. So i want it to be added and not some kind of workaround, because i know one myself. On 21 apr, 20:13, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I think you want attr(value) for the value in the dom, vs ,val() for the current contents. defaultValue

[jQuery] IE not executing JS loaded on the fly

2007-04-23 Thread [EMAIL PROTECTED]
Hi, I have this code // loads modules for the selected tab. function loadAllModules() { $.get('draw_modules.php', {}, function(data){ $(#container).empty().append(data);

[jQuery] Why is getScript not working?

2007-04-23 Thread [EMAIL PROTECTED]
Hi, For some reason, my call to getScript isn't working. I'm calling $.getScript(draw_modules_script.php, function(){ alert(Script loaded and executed.); }); The alert statement is never called. I have verified the file name is correct

[jQuery] Why is IE messing with my mind?

2007-04-24 Thread [EMAIL PROTECTED]
Hi, On PC IE (v. 7.0) only, I'm getting a JS error on line 9, saying Error: Expected identifier string, or number. Here's the code function slideIn(id) { hideAllSubNavs(); if (IsHidden(id)) toggleDiv(id); $('#' + id).animate( {

[jQuery] Re: IE cachine .ajax calls?

2007-04-24 Thread [EMAIL PROTECTED]
Send the JavaScript millisecond time as a GET value. It will make the request unique each time. -khoker On Apr 24, 2:11 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, On IE 7.0, I'm noticing the same data is repeatedly returned to me from this call var data

[jQuery] Sortables: making a DIV sortable that didn't start out that way

2007-04-25 Thread [EMAIL PROTECTED]
Hi, I want to emulate the functionality of http://www.netvibes.com/, specifically the part where you drag a Featured Feed from the left column, into the Sortable section (the main viewing area of the screen). I have no idea where to start here. The feeds on the left are not Sortable starting

[jQuery] Obsolete xml data islands

2007-04-25 Thread [EMAIL PROTECTED]
I am starting an asp.net project, and I would like to use javascript and client-side xml processing to make for a more responsive interface. Initial prototypes look good, but actually getting the xml using asp.net seems a bit tricky. A xml data island worked well, but this element is dropped from

[jQuery] Re: Show and Hide DIV

2007-04-26 Thread [EMAIL PROTECTED]
No need to store anything in a variable. That gets murky. Just hide them all via a selection on class and then show the one you want after that. Then you need not remember anything about state. -khoker On Apr 26, 10:49 am, Sean Catchpole [EMAIL PROTECTED] wrote: You're on the right track

[jQuery] Draggables: detecting if I'm in a region after stopping

2007-04-26 Thread [EMAIL PROTECTED]
Hi, What is the best way to do this? I want to check, for a ghosted draggable object, that when the user let's go of the draggable (onStop event fires), how can I tell if any part of my dragged object intersects with another DIV on screen? Thanks, - Dave

[jQuery] Re: jQuery Server Side Grid

2007-04-29 Thread [EMAIL PROTECTED]
It doesn't work in ff2.0

[jQuery] Re: ANNOUNCE: Thickbox Reloaded alpha

2007-05-01 Thread [EMAIL PROTECTED]
I do know that Cody Lindley is also working on ThickBox3, so I'm not sure if these two projects are the same or conflicting... It will be interesting to see. http://codylindley.com/thickboxforum/comments.php?DiscussionID=561 On May 1, 2:37 pm, tlphipps [EMAIL PROTECTED] wrote: Was just

[jQuery] problematic ajax request

2007-05-02 Thread [EMAIL PROTECTED]
Hi, I'm trying to make an asynchronous ajax request in which I parse data returned after the call. However, the error handler is repeatedly getting called, and the msg is always empty. However, I have verified by manually typing in the URL and params into a browser the page works. Here's my

[jQuery] Re: problematic ajax request

2007-05-02 Thread [EMAIL PROTECTED]
Thanks, - Dave On May 2, 4:44 pm, Christopher Jordan [EMAIL PROTECTED] wrote: Dave, This could just be me, but I've never returned more than one value from the server via an ajax request. When I want multiple values, I use an array or a structure... or if I'm returning a fully formatted HTML page

[jQuery] newbie question: how to set location to a target in a way that is supported by i.e. and safari?

2007-05-03 Thread [EMAIL PROTECTED]
Hi can jquery help with the followng problem? If, in conventional javascript, I have a function goToAnchor(){ href.location=#blah } and call it by body onLoad=goToAnchor() then it works fine in i.e. and firefox but causes safari to endlessly load the page - see

[jQuery] Elements opacity doesnt work after fade in effect on IE

2007-05-03 Thread [EMAIL PROTECTED]
Hi, Im using the following script to display a hidden div block once a button is clicked. $(document).ready( function() { $(.channellink).click(function() { var channelId = $(this).attr('id').replace('channellink',''); //Hide div

[jQuery] ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread [EMAIL PROTECTED]
I am starting up with two technologies...asp.net and jQuery. jQuery works great with old asp, but seems to be 'unwelcome' in asp.net. Anyone have direct experience marrying the two? --- Dave

[jQuery] ajax tabs: How do you refer to area content is loaded into?

2007-05-04 Thread [EMAIL PROTECTED]
Hi, With regards to the tabs plugin (http://stilbuero.de/jquery/tabs/ #fragment-13), I want to use the AJAX functionality to load content based on what tab is clicked. I understand content is loaded automatically from the specified URL, but once it is loaded, how do I get a reference to the

[jQuery] ajax tabs: No tabs displaying

2007-05-07 Thread [EMAIL PROTECTED]
from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/jquery-en?hl=en -~--~~~~--~~--~--~---

[jQuery] Re: ajax tabs: No tabs displaying

2007-05-07 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: script type=text/javascript $(document).ready(function(){ // create AJAX tabs $('#container').tabs({ remote: true, onShow: function(clicked, shown, hidden) { alert( $('li', shown).size() ); } }); }); Try now

[jQuery] ajax tabs: Where is remote-tab-1 coming from?

2007-05-07 Thread [EMAIL PROTECTED]
Hi, I'm trying to create some AJAX tabs that load a PHP page subject to a parameter. However, whenever I roll over my tabs, or click on one of them, they attempt to load something called remote-tab-n where n is the sequence of where the tab occurred. However, I haven't put this string anywhere

[jQuery] Re: create new element in DOM

2007-05-07 Thread [EMAIL PROTECTED]
What data is being sent to the html function? On May 7, 5:13 pm, joomlafreak [EMAIL PROTECTED] wrote: I thought it is simple but why am I not able to achieve it, I don't understand, this is what I am doing var isidThere = $(#tabcnt+fileid_id); if (isidThere.size() != 1

[jQuery] Re: Where can I download JQuery Ajax Form plugin

2007-05-07 Thread [EMAIL PROTECTED]
Thanks. On May 7, 9:58 pm, John Resig [EMAIL PROTECTED] wrote: The dev site is down currently, it'll hopefully be back up sometime today. Sorry for the hassle. --John On 5/8/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I went to this sitehttp://www.malsup.com/jquery/form

[jQuery] Unable to listen to elements appended by jQuery.

2007-05-08 Thread [EMAIL PROTECTED]
events on this with $([EMAIL PROTECTED]).click( function() { alert('asdasd'); }); All this is done inside a $(document).ready(function() {}); - But it wont work? Do I need to tell jQuery that something has been appended? Thanks in advance. Regards, Jakob Dam Jensen

[jQuery] Prevent spammers from catch e-mail addresses

2007-05-08 Thread [EMAIL PROTECTED]
Hi, Is there any method to prevent spammers from catching e-mail addresses on webpage links, other than the method described here: http://15daysofjquery.com/safer-mailto-links/8/ I was looking for an option to hide e-mail text links, but also the e- mail included in recipient form declarations.

[jQuery] Trouble adding HTML, passing validation

2007-05-08 Thread [EMAIL PROTECTED]
Hi, I have this block of JQuery $(document).ready( function () { doTDListBehavior(); $('#addNewTDItem').click( function() { $('#todoList').append(lt;div class=quot;sidebarToDoquot;gt;lt;table cellpadding=quot;0quot;

[jQuery] ajax tabs: Making the tab contain more than just text

2007-05-08 Thread [EMAIL PROTECTED]
Hi, I want my tab to consist of both text, and a graphic (which will serve as a Delete Tab function). However, I discovered that trying to add in the graphic button does more harm than good (in other words tabs do not display or function properly). Here's what I did: div id=container ul li

[jQuery] jquery tabs: How to make the tab contain both text and a small image

2007-05-09 Thread [EMAIL PROTECTED]
Hi, With regards to the plugin (http://stilbuero.de/jquery/tabs/), I want the text of one of my tabs to contain both text and a small, clickable x image on the same line. Is this possible? It seems if I put anything more advanced than div id=container-10 div

[jQuery] Error: $(document).ready is not a function

2007-05-09 Thread [EMAIL PROTECTED]
I'm mentally retarded, or something. I'm getting this error: Error: $(document).ready is not a function I am also using rico and prototype, maybe some sort of conflict? I'm new to jQuery, like, I just started 30 minutes ago, and I can't get past this silly hurdle, any suggestions?

[jQuery] Re: Error: $(document).ready is not a function

2007-05-09 Thread [EMAIL PROTECTED]
That sounds very much like the problem, thanks. ilu. On May 9, 11:16 pm, John Resig [EMAIL PROTECTED] wrote: It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so

[jQuery] jquery tabs: custom html structure?

2007-05-10 Thread [EMAIL PROTECTED]
Hi, I wanted to get clarification around the Custom HTML structure of the JQuery tabs plug-in. Specifically, it is mentioned in the docs If some HTML structure is required that differs from the default one Does this mean for the tabs themselves or the container holding the content after you

[jQuery] Storing extra information about objects

2007-05-10 Thread [EMAIL PROTECTED]
Hi All, I'm looking for a way to store information about a class, like the current page it's on (for ajax paging) and such. Essentially I would like to do the following: $(#object).page = 2; $(#object).page; //returns 2 However, this doesn't quite seem to work. I considered using attr(), but

[jQuery] Re: jquery tabs: How to make the tab contain both text and a small image

2007-05-11 Thread [EMAIL PROTECTED]
yes, there was an extra a element. I have removed it and added a click handler to the image I wanted. No tables. Thanks, - Dave On May 11, 12:56 am, Klaus Hartl [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hi, With regards to the plugin (http://stilbuero.de/jquery/tabs/), I want

[jQuery] jquery tabs: setting tab width on IE

2007-05-11 Thread [EMAIL PROTECTED]
Hi, Regarding the JQuery tabs plug-in, I want to have variable width tabs, depending on how long the tab text is. So, using the default style sheet from the example (http://www.stilbuero.de/jquery/tabs/ jquery.tabs.css), I removed the width: 64px; line of the following CSS block .tabs-nav a {

[jQuery] Getting null when trying to retrieve textarea value

2007-05-11 Thread [EMAIL PROTECTED]
I am trying to get the value of a textarea with the following code, however it is returning null all the time. var curText= $([EMAIL PROTECTED]).val(); alert(curText); textarea name=myText rows=5 cols=20 id=myText style=width: 250px;/textarea Is there something else I need to do?

[jQuery] Re: Getting null when trying to retrieve textarea value

2007-05-11 Thread [EMAIL PROTECTED]
The reason I am using the other is because of asp.net. When it renders it changes the id of the tag, so all I know is that snippet. On May 11, 12:51 pm, Sam Collett [EMAIL PROTECTED] wrote: On May 11, 5:46 pm, Bil Corry [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote on 5/11/2007 9:34 AM

[jQuery] Re: Getting null when trying to retrieve textarea value

2007-05-11 Thread [EMAIL PROTECTED]
the exact id/name of the tag. On May 11, 3:10 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The reason I am using the other is because of asp.net. When it renders it changes the id of the tag, so all I know is that snippet. On May 11, 12:51 pm, Sam Collett [EMAIL PROTECTED] wrote: On May 11

[jQuery] Re: Getting null when trying to retrieve textarea value

2007-05-11 Thread [EMAIL PROTECTED]
A minor correction to what was up above it should be a *= not just an = On May 11, 3:15 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Sorry I didn't provide an accurate description above. Basically the scenario is that I have a asp:textbox control set with multiline, and when the page

[jQuery] Show the World Your Talent and Win

2007-05-11 Thread [EMAIL PROTECTED]
, and the ability to help their favorites through a high- stakes competition, tracking results all the way. If you have any questions, or need help submitting your work, please feel free to contact me. Adrianne Abel Animation/Short Film Promotion FAMECAST - Show the World Your Talent and Win [EMAIL PROTECTED]

[jQuery] help: add click event to TD element

2007-05-11 Thread [EMAIL PROTECTED]
).trigger('click'); $([EMAIL PROTECTED]).select().focus(); }); Any suggestion? Thanks a lot.

[jQuery] Re: help: add click event to TD element

2007-05-11 Thread [EMAIL PROTECTED]
= $(this).html(); h = h.replace(pattern, 'span class=highlight$1/span'); $(this).html(h); }); $(td.backtop).click(function(){ $(a.nav).trigger('click'); $([EMAIL PROTECTED]).select().focus(); }); var hist = 'h3History/h3'; $('entry', xml).each

[jQuery] validate plugin + form plugin + thickbox

2007-05-12 Thread [EMAIL PROTECTED]
Hi Everyone, I had an earlier problem that I asked about a couple days ago, turns out it was just formatting bugs, but now I have a couple more. Here's the problem: I'm trying to use the form plugin, the validate plugin, and thickbox together. The thickbox window has the form in it, which is

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-12 Thread [EMAIL PROTECTED]
Alright, after realizing that everything works perfectly well outside of the thickbox, it seems that that is the problem. I guess the question becomes, how do I load the form validation plugin and the forms plugin for an ajax submitting form within a thickbox. Thanks again, Chaim

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-12 Thread [EMAIL PROTECTED]
Gahh...I just fixed it. Apparently, when the validator script tries to focus on a field in a form that is hidden with display: none, ie throws some script error, and stops scripting. I can't believe how long it took to find that out. It was easy enough to position the form that was

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread [EMAIL PROTECTED]
John Resig wrote: $(span.email).each(function(){ $(this).html( $(this).html().replace(at,@) ); }); $(p.jhide).hide(); Not too bad! --John On 5/13/07, fambizzari [EMAIL PROTECTED] wrote: I started using jquery a month or two ago and i've spent the time since then working on non js content

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread [EMAIL PROTECTED]
PROTECTED] mailto:[EMAIL PROTECTED] wrote: $(span.email).each(function(){ $(this).html( $(this).html().replace(at,@) ); }); $(p.jhide).hide(); Not too bad! --John On 5/13/07, fambizzari [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: I started using

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread [EMAIL PROTECTED]
should do the job with .html or .text On 5/12/07, [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: The actual html reads span class=emailsomeonelt;atgt;somehwerecom/span Fahed Ⓙⓐⓚⓔ wrote: divjake at home /div renders

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread [EMAIL PROTECTED]
Can you point me to the plugin please? Ⓙⓐⓚⓔ wrote: console.log( $(p.jhide)) would show the p that just got hid, if it really found a p class=jhide there are lots of commands in firebug, and even a plugin on the jquery site to make it easier. On 5/12/07, [EMAIL PROTECTED] mailto:[EMAIL

[jQuery] Re: The problem with jquery!!!

2007-05-12 Thread [EMAIL PROTECTED]
thanks Ⓙⓐⓚⓔ wrote: http://jquery.glyphix.com/ the debug plugin! off http://docs.jquery.com/Plugins the main plugins page. On 5/12/07, [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Can you point me to the plugin please? Ⓙⓐⓚⓔ wrote

[jQuery] Threshold for saving textarea content with AJAX

2007-05-13 Thread [EMAIL PROTECTED]
Confusing title, but what I'm looking for can't really be summed up in a sentence [ bonus points if you can ]. Basically I have a onkeyup binded to a textarea, and the function the onkeyup calls sends the data to the server to be saved. I'm wondering if a method to only send the data when you

[jQuery] Re: Threshold for saving textarea content with AJAX

2007-05-13 Thread [EMAIL PROTECTED]
Excellent, works great without the hassle of the way i mentioned before If anyone's interested, be my guest -- HTML -- textarea cols=89 rows=6 id=notepad onkeyup=notepadSave() onkeydown=notepadClear()/textarea

[jQuery] Detecting the next url when onunload called?

2007-05-14 Thread [EMAIL PROTECTED]
Is it possible to get the browsers next url from an onunload call? I'm trying to determine if a user is leaving my site, and if they are, send an ajax request.

[jQuery] Re: Detecting the next url when onunload called?

2007-05-14 Thread [EMAIL PROTECTED]
the ajax-call, or even wait for it to finish. I guess that you would have to send it asynch if you want to be sure that it will finish. Good luck and tell us how you solved it. On May 14, 11:39 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is it possible to get the browsers next url from

[jQuery] Re: Detecting the next url when onunload called?

2007-05-14 Thread [EMAIL PROTECTED]
is that I don't want to hit the server on every single unload event, so I need to check the domain is changing before sending the release request. If it's not possible then it's not possible, just wondering if anyone had done something similar in the past. On 14 May, 11:57, [EMAIL PROTECTED

[jQuery] archives for development list no longer available ?

2007-05-14 Thread [EMAIL PROTECTED]
The jquery dev list archives available here http://docs.jquery.com/Discussion#Archives doesn't seem to be available any longer. Has it been moved to another location ?

[jQuery] jquery tabs: adding a tab on the fly

2007-05-14 Thread [EMAIL PROTECTED]
Hi, Regarding JQuery Tabs (http://stilbuero.de/2006/05/13/accessible- unobtrusive-javascript-tabs-with-jquery/), is there an elegant way to add a new tab after the page has loaded and the tabs have already been constructed? That is, I have already made this call

[jQuery] Tabs

2007-05-14 Thread [EMAIL PROTECTED]
Hello. I am new to this group. I would like to implement tab plugin into my site. I have read the articles on http://stilbuero.de/2006/05/13/accessible-unobtrusive-javascript-tabs-with-jquery/ but i am still have problems figuring out howto make this run. Here is my code. script src=jquery.js

[jQuery] Re: jquery tabs: adding a tab on the fly

2007-05-14 Thread [EMAIL PROTECTED]
').newTabs(order_id); - Dave On May 14, 12:19 pm, Klaus Hartl [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hi, Regarding JQuery Tabs (http://stilbuero.de/2006/05/13/accessible- unobtrusive-javascript-tabs-with-jquery/), is there an elegant way to add a new tab after the page has

[jQuery] onRelease (drop) event for Interface Elements Slider

2007-05-15 Thread [EMAIL PROTECTED]
I'm trying to figure out if there is a way to monitor the release event for the Interface Elements Slider widget. Essentially, I am trying to update the position of the slider using SetValues on a constant basis, but want to suspend that updating process when the user begins dragging the slider

[jQuery] jquery tabs: changing color of unselected tabs

2007-05-15 Thread [EMAIL PROTECTED]
Hi, This should be simple, I know, but I'm having problems. Using the default stylesheet that accompanies the Jquery Tabs example, how do I change the color of unselected links? I tried adding a color: directive to the .tabs-nav a class, but to no avail. The links still appear as the standard

[jQuery] Re: jquery tabs: changing color of unselected tabs

2007-05-15 Thread [EMAIL PROTECTED]
15, 3:02 pm, Klaus Hartl [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hi, This should be simple, I know, but I'm having problems. Using the default stylesheet that accompanies theJqueryTabs example, how do I change the color of unselected links? I tried adding a color: directive

[jQuery] Sortable Box example

2007-05-17 Thread [EMAIL PROTECTED]
Greetings, New to the group and to JQuery. I am fascinated with the sortable box demo. I am using the one with the green itemHeaders. It flickers in IE 7 when minimizing the groupItem and in Firefox, an iframe inside a groupItem does not stay within the div but spills outside. That might be a

[jQuery] help troubleshooting a text field focus problem

2007-05-17 Thread [EMAIL PROTECTED]
Hi, I wanted to get some advice on how I can troubleshoot this problem. When I click on an particular block of text, I'd like to have that text replaced by a editable INPUT text field with the value of the text, with the cursor automatically in the text field. Unfortunately, the following block

[jQuery] Re: using jquery to see if an ID occurs twice

2007-05-18 Thread [EMAIL PROTECTED]
Just wanted to get consensus, will this work if ($('[EMAIL PROTECTED]').length == 2) { // do something ? } ? Thanks, - Dave On May 18, 9:07 am, Karl Swedberg [EMAIL PROTECTED] wrote: You could try this: if ($('[EMAIL PROTECTED]').length == 2) { // do something

[jQuery] Re: IE Caching AJAX calls

2007-05-18 Thread [EMAIL PROTECTED]
Corry [EMAIL PROTECTED] wrote: Charles Capps wrote on 5/17/2007 11:51 AM: When in doubt, whack'em all. Pragma: no-cache Cache-control: no-cache, must-revalidate Expires: (some date in the past in the proper format) I'm not sure which one IE follows, but here's mine: Expires: -1

[jQuery] CSS background image not changing using toggleClass

2007-05-18 Thread [EMAIL PROTECTED]
I have an FAQ page that shows and hides information when a question is clicked. I'm trying to replace the background image of the toggled question. What happens is that I can see that the class that has the changed background specified is getting added to the html, however, the background image

[jQuery] using jquery problem about ajax

2007-05-18 Thread [EMAIL PROTECTED]
do you notice that is big question when you post with jquery. A : is a split for every par like following that data:id=+id+par=par+name=+name, but if you type(input) , the program will make a mistake, so we have to filter B : if you click swifly ajax event and the front javascript is not

[jQuery] select does not hide() when within table with col

2007-05-19 Thread [EMAIL PROTECTED]
Hi, I'm using jquery to show/hide part of the form (i.e. section of the table) when checkbox is toggled. I had a problem with section containing select controls - section would hide, but selects would continue to float - only in IE (version 6.0), in FF everything's fine. After some

[jQuery] Re: jcarousel safari

2007-05-19 Thread [EMAIL PROTECTED]
Hey, yes i did try to fix the issue , its due to the reflection effect code, if the reflection code is comments out, it work little good in safari. yet still may not be perfect. On May 18, 8:38 pm, Tom Shafer [EMAIL PROTECTED] wrote: Anybody find a way to fix this? On May 17, 10:13 pm

[jQuery] Unable to have a selected option in list when appended, but why?

2007-05-20 Thread [EMAIL PROTECTED]
Hi there. I hava a function which looks like this: var insertMontNamesIntoSelect = function(selectedList, selectThis) { $(selectedList).empty(); var str = ''; for(var i=1; i13; i++){ str += 'option value='+i+''; if(i == selectThis)

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-20 Thread [EMAIL PROTECTED]
ohh me goodies, will try. thanks for the heads up cheers -Nilesh On May 20, 9:29 pm, John Resig [EMAIL PROTECTED] wrote: Hi Everyone - A test build of the upcoming 1.1.3 release is ready for everyone to try. We need to be super-sure that there haven't been any regressions in this release

  1   2   3   4   5   6   7   8   9   10   >