[jQuery] selectable not working after loading content through .load the second time
Hey folks, I've got a problem where I'm trying to use the selectable plugin (very cool, btw) and it isn't working the second time content is loaded onto the page.. here's what's happening. I have a page that has a list of tags on it. When the user clicks on a tag, it loads a series of images from a database and displays them in a div. By default when you go to the page the script loads the latest images. At the end of the php script that loads images, I have some code that tells everything in that
[jQuery] A little bug fixed in the beta 4 preview of PassPack
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-15" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#333300"> Hi all, about beta4preview of PassPack, during last test I commented a line so that after registration user cannot see anything. I'm sorry. Now it works well. -------------- During the development of the first releases of PassPack, I adopted Easy DOM Creation by Michael Geary to quickly manage the DOM
[jQuery] Can multiple functions be attached to the same event?
Or does using .click() twice on the same element overwrite the first binding? -- View this message in context: http://www.nabble.com/Can-multiple-functions-be-attached-to-the-same-event--tf3336878.html#a9280393 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jQuick 1.2 released and beta 4 preview of PassPack
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-15" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#333300"> During the development of the first releases of PassPack, I adopted Easy DOM Creation by Michael Geary to quickly manage the DOM elements. But, with the beta4 version of PassPack I needed to overcome Michael's library's limits (due to the compatibility with Prototype). So I developed jQuick. The new version
[jQuery] appendTo() crashes Konqueror
Hi all, I have the following HTML code: <div id="the_list"> <div class="row"> <input type="checkbox" name="a_name" value="a_value" id="an_id" /> </div> <div class="row"></div> </div> <div id="other_list"> <div class="row"></div> </div> When the checkbox gets clicked, the div which contains the checkbox should be removed from "the_list" and added to "other_list". For this purpose I wrote the following script: $(function() { $('#the_list input[@type=checkbox]').click(function() { $(this).parents('.row').fadeOut('slow',
[jQuery] how to find an item when you only know part of the class name
> -------Original Message------- > From: Jake McGraw <jmcgraw1@gmail.com> > Subject: Re: [jQuery] how to find an item when you only know part of the class name > Sent: Mar 02 '07 23:19 > > Not sure if the source is like this too, but you haven't closed this > element (insert a </a>): > > <a href='#' class="toggleStrike">Remove</a> </td> > > Maybe, that'll help? > > - jake > > > On 3/2/07, [LINK: MAILTO:DALVARADO@REMANRESOURCE.COM] > DALVARADO@REMANRESOURCE.COM <[LINK: mailto:dalvarado@remanresource.com]
[jQuery] Why are my graphics "jumping"?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <META NAME="Generator" CONTENT="MS Exchange Server version 08.00.0681.000"> <TITLE>Why are my graphics "jumping"?</TITLE> </HEAD> <BODY> <!-- Converted from text/rtf format --> <P DIR=LTR><SPAN LANG="en-us"><FONT FACE="Calibri">Hi, all</FONT></SPAN><SPAN LANG="en-us"><FONT FACE="Calibri">…</FONT></SPAN><SPAN LANG="en-us"></SPAN></P> <P DIR=LTR><SPAN LANG="en-us"><FONT
[jQuery] get element inside a div simple question
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><div style="font-family: times new roman,new york,times,serif; font-size: 12pt;">But still isnt what i need i making a auto gen table of content list i have this var main_content = $("#main_content"); var toBeTOCced = $("h2,h3,h4,h5", main_content); toBeTOCced.each(function(i) { ......... ......... }); *
[jQuery] get element inside a div simple question
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><div>I want to get all the Heading element up to 5 (ex <code>h2,h3,h4,h5</code> ) inside a div like #main_content something like this, but inside the #main_content <pre><code>var toBeTOCced = getElementsByTagNames('h2,h3,h4,h5');</code></pre> How i can do that with jquery? thanks Sebastián </div></div> <hr size=1> <b>Preguntá. Respondé.
[jQuery] Paging small recordset
<HTML> <HEAD> <TITLE>Re: [jQuery] Paging small recordset</TITLE> </HEAD> <BODY> <FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>Looks great – many thanks.<BR> <BR> Best Wishes,<BR> Peter<BR> <BR> <BR> On 3/2/07 11:00 AM, "Benjamin Sterling" <benjamin.sterling@kenzomedia.com> wrote:<BR> <BR> </SPAN></FONT><BLOCKQUOTE><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'><BR> Take a look at the plugin below and see if that helps.<BR> <a href="http://rikrikrik.com/jquery/pager/">http://rikrikrik.com/jquery/pager/</a><BR>
[jQuery] how to find an item when you only know part of the class name
> -------Original Message------- > From: Jake McGraw <jmcgraw1@gmail.com> > Subject: Re: [jQuery] how to find an item when you only know part of the class name > Sent: Mar 02 '07 22:46 > > You can reference any attribute using the following notation: > > [@attribute^=value] Starts with > [@attribute$=value] Ends with > [@attribute=value] equals > [@attribute*=value] contains > > So for your problem... > > $("td[@class^=title]") > > Hope this helps, > > - jake > > > On 3/2/07, [LINK: MAILTO:DALVARADO@REMANRESOURCE.COM]
[jQuery] how to find an item when you only know part of the class name
Hi, I have a DIV whose ID I know. Within that DIV is a table with a table cell which either has a class beginning with the word "title" and followed by an integer. I would like to reference the text within that table cell. What is the easiest way to get a reference to this cell? Thanks, - Dave _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] metadata by means of metaobjects
I was wondering if anyone is using my http://www.mondotondo.com/aercolino/noteslog/?page_id=105 Metaobjects plugin as a replacement for the metadata plugin. It's now at version 1.2 and I'm really proud of this simple tool. The best features of Metaobjects are: -- valid XHTML mark-up -- auto clean up by default -- attach data to properties of dom elements directly -- add any writable property or a brand new one -- each value is evaluated and then the result is assigned -- data can be any javascript
[jQuery] slideUp not collapsing tbody?
I'm trying to build a form that needs to show or hide a portion depending on the user's previous input. I'm trying to use slideUp/slideDown to make the transition but it's not working - are there any gotchas in trying to interact with tbody vs div? Is it not possible to use these effects with tbody? -- View this message in context: http://www.nabble.com/slideUp-not-collapsing-tbody--tf3335465.html#a9275952 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________
[jQuery] JQuery Xpath working?
Hi, I'm having trouble getting xpath selectors to work well, particularly on XML responses from ajax requests, using FF. Hoping somebody can help. Here are the steps I'm taking: 1. Perform an ajax request using Prototype's Ajax.request, with an onComplete callback to my function. Here's a sample response: <?xml version="1.0"?> <XMLResponse> <Errors/> <Warnings/> <Messages/> <Response> <ProductType> <Id>40</Id> <Name>Chain</Name> <ProductGroup>BMX</ProductGroup> <Margin/> <Properties> <PropertyTemplate>
[jQuery] Auto completion example
There's one or more autocomplete plugins listed on the plugins page of jQuery.com: http://docs.jquery.com/Plugins -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Ricardo Parada Sent: Friday, March 02, 2007 1:08 PM To: discuss@jquery.com Subject: [jQuery] Auto completion example Hi there, Is there an auto-complete example using jquery somewhere. For example, a user types in a few words into a text field and then I get some ajax content.
[jQuery] :first selector perofmance question
I am searching for the fastest way to fetch the first visible input of a page, and currently using: $(':input:visible')[0] I thought this could be improved with the :first selector, and indeed it seems so (as it avoids memory assignments for all matched visible inputs), so I narrowed it down to: $(':input:visible:first')[0] I wanted to investigate the behavior further, so ran a few small tests against http://docs.jquery.com/DOM/Traversing/Selectors The page was reset/refreshed for each test, and
[jQuery] Auto completion example
Hi there, Is there an auto-complete example using jquery somewhere. For example, a user types in a few words into a text field and then I get some ajax content. I know already how to get the content using jquery's ajax functions. My question really is how to code the part where the text field loads the contents as the user types. Any ideas welcome. Thanks Ricardo Parada _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Enhancements to Imagebox
Hi Tobbe I don't know, I tried the following setting inthe thickbox.css file but it didn't work: #ImageBoxLoader { background-color: transparent; } I don't know if the problem is with jQuery or Interface. The loading.gif does have a transparent background so it should display as such. The interface demo is on a white background so it is hard to tell if it is using transparency. Janet Weber -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf
[jQuery] Animate() : background color
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8"> <META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=078402117-02032007><FONT face=Arial size=2>hello!</FONT></SPAN></DIV> <DIV><SPAN class=078402117-02032007><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=078402117-02032007><FONT face=Arial size=2>i'm trying to have jquery fade between 2 colors, but can't
[jQuery] Newbie Q: Slow steady loop in one direction only?
Hello there Can jCarousel be configured to slowly scroll the list in one direction only, in an endless loop? Thanks much, SWW -- View this message in context: http://www.nabble.com/Newbie-Q%3A-Slow-steady-loop-in-one-direction-only--tf3334750.html#a9273486 Sent from the jCarousel mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] multiple elements, one function
Apologies if this has been answered elsewhere, but I couldn't find an answer by searching. I suppose this is a newbie question. Is it possible to assign the same function to multiple elements with different id's with one call? For example, with the code below, could I assign the onchange handler to another element with a different id? $(document).ready(function() { // apply onchange handler to 'time' field $("select#time").change(function(){ // send request with amount & date as variables $.post("guestCheck.php",
[jQuery] Tree plugin with AJAX calls?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=208152115-02032007><FONT face=Arial size=2>A friend of mine was asking me if I knew of a tree plugin that loaded in it's branches/leaves with AJAX. I saw Jorn's plugin (which looks awesome), but is there a jQuery plugin that does with AJAX?</FONT></SPAN></DIV> <DIV> </DIV>
[jQuery] Paging small recordset
<HTML> <HEAD> <TITLE>Paging small recordset</TITLE> </HEAD> <BODY> <FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>Hello All,<BR> <BR> I’m looking to get started with jQuery (finally – been lurking for a while!).<BR> <BR> I need to be able to page through a small recordset but because of its small size, I don’t need to go back to the server for the data – just to display/hide records for the 3-4 pages of data to display. However, rather than a 1 record per row table display
[jQuery] JS Source code Formatter - Anyone know of any good ones
Just wondering... does anyone know of any good source-code formatters for JavaScript. I see plenty that use the dirt-simple eval().tostring trick.... but that doesn't work good/right. It'd be best if the formatter was a console app, so I could script it to clean up the code in the tree. Another important thing would be for it to handle JQuery-isms like: $("#button").click(function() { code; more code; }); <or> $("#item").hide().show().toggle() .moreCode().filter(...) .insideFilter() .end() If it
[jQuery] ajaxSubmit not defined
Hi, I am trying to use ajaxSubmit form plugin..however, when i click on submit button, the form is submitted without ajax...the problem is that the javascript is not able to determine ajaxSubmit method. I also tried using ajaxForm. but again, javascript is not able to find the method. I made sure that the form.js is attached to my web page and firebug is showing form.js in the list of javascripts. Does anyone has a idea on how to go from here!!! Regards, Ritesh -- View this message in context: http://www.nabble.com/ajaxSubmit-not-defined-tf3283071.html#a9132138
[jQuery] Google Toolbar and jQuery validation
Hi all, I'm using the validation plugin to - well - validate a form, and I fire a validation event when the element in question is changed to ensure it contains a valid value. When it does, I change it's class to indicate this. If someone uses the Google Toolbar's autofill function to fill this form in, the controls aren't validated and my classes aren't applied - I'm guessing because onChange isn't firing? Is there any other way I can look for this happening and act accordingly? Regards, Michael
[jQuery] [FYI] fine Tool used JQuery
Hi all, have a look: http://www.riddle.pl/emcalc/ tool for fontsize in em to view in px -- Viele Grüße, Olaf ------------------------------- olaf.bosch@t-online.de http://olaf-bosch.de www.akitafreund.de ------------------------------- _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
jQuery 1.1.2
Hi Everyone - The release of jQuery 1.1.2 is upon us! This is a another bug fix release. We've fixed a number of outstanding issues. The fixes have been tested well, so there shouldn't be any regressions (knock on wood). The most noticeable issue that was resolved was related to animation flickers when doing a slideDown. It is highly recommended that you upgrade. As always, if you have any questions or concerns with new release, please feel free to discuss it on the jQuery Mailing List. If you think
[jQuery] How to block a function while another finishes?
I'm having a hard time getting functions to happen in the order I want them to. Specifically, I need the html of a div to be rewritten BEFORE it slides back down. I'm seeing the html change while the div is sliding up, which isn't what I'm looking for. Is there any way to force functions to finish before moving on? Synchronous-style... -a div on the page is assigned to divTarget, and I'm positive it's finding the correct one) -stuff holds the results of an ajax query: some basic HTML. $(divTarget).slideUp("slow");
[jQuery] Announce: Unobtrusive JavaScript with jQuery andsymfony
Yes, that is exactly that. All calls to "UJS" helpers feed a buffer and the code doesn't appear directly in the page. But the page includes a JavaScript file, in which the buffered code is written. Therefore, all code included in a "UJS" call is separated from the content, even if, for the developer, it appears inside the template code. Francois -----Message d'origine----- De : discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] De la part de John Resig Envoyé : vendredi 2 mars 2007 09:17
[jQuery] Enhancements to Imagebox
Hi, I've done some enhancements to Imagebox that may be of general interest. Added: + a stop() function that undo what init() does. + a closeHook option that is called when Imagebox is closed. + a nextImage2 and prevImage2 element that are placed to the left of closeHTML I'm not sure what the process is when contributing code but the code can be found here (for a while): http://noneg.tornkvist.org:8080/js/imagebox.js It is based on what I checked out from svn some hours ago. For an example of the
[jQuery] Announce: Unobtrusive JavaScript with jQuery andsymfony
I'm not sure I get you... All the helpers described in the blog post are bundled with the plugin. Or do you mean something else? -----Message d'origine----- De : discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] De la part de David Duymelinck Envoyé : jeudi 1 mars 2007 13:06 À : jQuery Discussion. Objet : Re: [jQuery] Announce: Unobtrusive JavaScript with jQuery andsymfony François Zaninotto schreef:
[jQuery] Enhancements to Imagebox
Hi Tobbe I was wandering if you noticed that the loading.gif graphic dosen't have a transparent background? Janet -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of Torbjorn Tornkvist Sent: Thursday, March 01, 2007 8:14 PM To: discuss@jquery.com Subject: [jQuery] Enhancements to Imagebox Hi, I've done some enhancements to Imagebox that may be of general interest. Added: + a stop() function that undo what init() does. + a closeHook option that
[jQuery] Path problem with Imagebox
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=732553201-02032007><FONT face=Arial color=#0000ff size=2>Hi Benjamin</FONT></SPAN></DIV> <DIV><SPAN class=732553201-02032007><FONT face=Arial color=#0000ff size=2></FONT></SPAN> </DIV> <DIV><SPAN class=732553201-02032007><FONT face=Arial color=#0000ff size=2>You where
[jQuery] IE Inconsistency - $.clone != clone
I've set up a simple test page demonstrating an Internet Explorer inconsistency with $.clone() -- I believe this is already known about, although have tried the latest in SVN && it does not appear fixed. In short, under Internet Explorer, the scope of clones is the cloned element (donor), not the clone. Further, events attached to a "clone" are instantly fired, and events attached to the donor remain attached to the clone. See; http://dev.iceburg.net/jquery/cloneTest.html ~ Brice _______________________________________________
[jQuery] FF flicker with toggle
I'm getting a flicker in FF2 mac... almost like Firefox is performing toggle twice on this page: http://www.monkeypuzzle.net/testfiles/jquery/slidepanel/index3_alt.html click on the vertical gray bar to toggle the left panel open and closed It's seems to be smooth in Safari & IE... I thought the FFflickers were fixed in the latest release? I could swear it wasn't there this morning, so it might have been something I ate... thanks! -- View this message in context: http://www.nabble.com/FF-flicker-with-toggle-tf3330791.html#a9261509
[jQuery] Path problem with Imagebox
Hi Andrea The code causes a "Parse error: syntax error, unexpected '<' in /home/janet/public_html/mambots/content/mosthickbox.php on line 32" no matter where I out it in the file, Janet -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of Andrea Ercolino Sent: Thursday, March 01, 2007 12:32 PM To: discuss@jquery.com Subject: Re: [jQuery] Path problem with Imagebox I don't know... are you sure you replaced the square brackets? Janet Weber wrote:
[jQuery] Load method help
Hey all, I'm trying to bind a load method to a form element, so that it will assess the value of the element on page load (document ready), and do something accordingly. What I have is below, but it's not working...in fact I can't seem to get the load method to work in any context. Can someone on this list straighten me out please. I must be misinterpreting how the load method works. $(document).ready(function() { $("input:radio[@name=caltype][@checked]").load(function() { if ($(this).val() == "private")
[jQuery] jQuery - Timed Tabs
I'm incorporating the jquery tabs for a client on his site, and he's asking if the tabs could be timed to change. Like at 7pm tab2 shows, 2am tab3 shows, etc?? I know any tab can be set to show by default, so it seems timer is possible? if someone can point me in the right sirection much appreciated. Bruce Prochnau BKDesign Solutions _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Next Page