[jQuery] Re: Enable Submit button

2009-06-15 Thread bharani kumar
hi all , am waiting for the good reply for my thread, This is one of very urgent snippet , Thanks On Sun, Jun 14, 2009 at 11:15 PM, bharani kumar bharanikumariyer...@gmail.com wrote: Hi All , This is my form ,When user click the *YES and checked the check *box then only i want to enable

[jQuery] Re: Enable Submit button

2009-06-15 Thread Steven Yang
maybe try something like this $(#yesBut, #condBut).click(function(){ if($(#yesBut).is(:checked) $(condBut).is(:checked)) { $(#SubmitCard).removeAttr(disabled); } else { $(#SubmitCard).attr(disabled, disabled); } }) i am not too sure of my syntax and stuff, but hopefully

[jQuery] What's happening to my posts?

2009-06-15 Thread Veeru
Hi there, Am just worried, i have posted a few questions on this group and they seem to be missing, i cant' find or traceback to my posts, it happened before as well. Is there a validation queue or something? Thanks Vru

[jQuery] Read values from another pages

2009-06-15 Thread ciupaz
Hi all, using this plugin: http://docs.jquery.com/Ajax/jQuery.post how can I read the values from the other page? For example, using: $.post(test.htm, { name: John, time: 2pm } ); in the page test.htm how can I read these value and setting some label? Thanks in advance. Luis

[jQuery] Re: Enable Submit button

2009-06-15 Thread bharani kumar
Assume if we give condition like this ,*$(#yesBut, #condBut).click(function(){});* Then it assumes like when ever two elements are clicked at same time know , So i this one is Error on , Even i tried but am not get anything , You tried this snippet On Mon, Jun 15, 2009 at 12:50 PM, Steven

[jQuery] Re: Is it possible to add jquery effect on jquery created dom??

2009-06-15 Thread John Bill
i think that very easy to use json that get message from service. 2009/6/15 polygontseng polygon.ts...@gmail.com We want to make a ajax post to remote usr on an jquery created dom(an appended input). but it's not work. Thanks.

[jQuery] How do I (client side) programatically set jQuery rating

2009-06-15 Thread Sekhar
I can't seem to figure out how to set the star rating value at client run time. Can you please reply with a sample? Thanks. Sekhar.

[jQuery] Re: Enable Submit button

2009-06-15 Thread veeru
$(#SubmitCard).removeAttr('disabled') this you can write to the event listener of both checkbox and the button. Check for satisfying conditions in both. HTH Veera You can write an event listener to both checkbox and the YES button On Jun 15, 11:06 am, bharani kumar

[jQuery] Managing plugin version updates/uploads

2009-06-15 Thread toddb
I have been writing a jQuery plugin generator to scaffold a plugin and have released this a gem for rubyists (gem install jqueryplugingen). I now want to be able to manage the release of the plugin via rake tasks (ie like ruby gems - eg Hoe). I have searched this list and googled looking for an

[jQuery] Re: What's happening to my posts?

2009-06-15 Thread Richard D. Worth
See http://docs.jquery.com/Discussion#Contacting_a_Mailing_List Please note that this list is moderated (due to spam). Your first messages may take a few hours to get through, but future messages will show up instantly once you are out of the new-member-is-moderated policy. - Richard On Mon,

[jQuery] Re: What's happening to my posts?

2009-06-15 Thread david
This also happened to me. If i want to post questions about the jquery.validate plugin, which mailing list i have to contact ? I read the http://docs.jquery.com/Discussion#Contacting_a_Mailing_List document. The last posting of the jQuery Plugins group is from the 22.02 so it is not frequent

[jQuery] [validate] how to get ajax error messages from server till it is implemented in remote method

2009-06-15 Thread david
Dear all, I wanted to ask how it is possible to get error messages from the server till it is implemented in the remote method. What do you think is the less work intensive alternative. I also wanted to ask if i have two fields A and B, and the values of B depends on A. How do i make it with

[jQuery] photos not displaying in Firefox

2009-06-15 Thread wildbug
Hi all, I bought a WordPress theme that uses a jQuery slider gallery. Unfortunately, only the last of four images is showing up in the gallery (see: http://mcssafehomes.com/?p=105) and the previous/next links do not work. In most cases, I don't have 4 images input, usually three or less. So the

[jQuery] Re: Autocomplete - Holding down key

2009-06-15 Thread Rune
Ok thanks. Here's how I initialize it: script type=text/javascript $(document).ready(function() { $(#search-page-input).autocomplete(autocomplete_search_data); }); For testing purpose I output the same content from autocomplete_search_data. 1) Holding key down in Firefox 3.0.11 for Mac

[jQuery] Re: RSS Manager - Dynamic variables

2009-06-15 Thread Felipe
nobody? On 14 jun, 13:52, Felipe felipe.g...@gmail.com wrote: Hey guys. I'm building up a RSS reader. In this app, the user will have the option to add and remove urls in a list. What I need is to create a new variable, everytime the user submit the form with the url. The varible must

[jQuery] Tell me , Select option value

2009-06-15 Thread bharani kumar
Hi all , Am little bit confusion in radio selection , My doubt is very simple , Having two radio button , alert which ratio option i selected for example Male and female Thanks

[jQuery] Re: Enable Submit button

2009-06-15 Thread Charlie
this does not mean click both at same time, it is standard method of applying function to more than one selector and applies to *any* selector individually look at examples http://docs.jquery.com/Selectors/multiple#selector1selector2selectorN bharani kumar wrote: Assume if we give

[jQuery] Re: Tell me , Select option value

2009-06-15 Thread david
You mean the value of the radio button. please take a look at http://snipplr.com/view/3372/radio-button-values-using-jquery/ On Jun 15, 2:17 pm, bharani kumar bharanikumariyer...@gmail.com wrote: Hi all , Am little bit confusion in radio selection , My doubt is very simple , Having two

[jQuery] Re: Tell me , Select option value

2009-06-15 Thread david
For alert : you must define on which event and then use the bind function: http://docs.jquery.com/Events/bind#examples On Jun 15, 2:33 pm, david michaelg...@gmail.com wrote: You mean the value of the radio button. please take a look

[jQuery] Event handling

2009-06-15 Thread asrij...@googlemail.com
Hi Guys, I'm using two plugins which are triggered by a submit event (jquery.validate and jquery.comboselect) and now I'm facing one issue: If any validation error occurs my error msg is printed and my form isn't submitted (correct behaviour) but the comboselect plugin triggers at submit too

[jQuery] tablesorter plugin leaks memory in IE6 and IE7

2009-06-15 Thread pob
Hi there, I have a table, 10 cols, 200 rows. Using tablesorter causes a memory leak on every page refresh of almost 2mB. A smaller table causes a proportionately smaller memory leak. Is there way to clear this memory? I've tried setting inner html of the table to '', but it makes no difference.

[jQuery] jquery.validate - differentFrom() ? Opposite of EqualTo.

2009-06-15 Thread Tor I. Pettersen
Hi, I could use a hand with jquery validate. ( http://docs.jquery.com/Plugins/Validation ) I have 3 dropdowns, containing the same selections, and I need to make sure no selections are the same as either of the other two. (Primary, secondary and tertiary contact - obviously can't be the same

[jQuery] New Plugin: Numeric formating to multiple international styles

2009-06-15 Thread obiwanknothe
Hello all! I've created a plugin that automatically formats numeric values as you type. It supports multiple International styles and has some flexibility on setting min max levels. The plugin is still in early development (ALPHA) and it needs testing modifications. You can find the plugin

[jQuery] Re: jqGrid: jQuery(#list).jqGrid is not a function

2009-06-15 Thread Tony
Hello, As I see all work ok.What actually does not work? Regards Tony On Jun 14, 9:02 am, efet efetun...@gmail.com wrote: I did not make any changes with directories or codes. I thought I must be missing an include but I have been looking into my codes for hours already but still cant find

[jQuery] Re: jQGrid Ajax search parameters- Top toolbar method

2009-06-15 Thread Tony
Hello, In this case the posted values are pairs name:value. The reason for this is that in this case we can have more than one value to be searchble. Regards Tony On May 28, 8:58 pm, Charlie charlie...@gmail.com wrote: usingjQGRidversion 3.4.4 I havejQGridworking great with several thousand

[jQuery] Re: jquery.validate - differentFrom() ? Opposite of EqualTo.

2009-06-15 Thread Jörn Zaefferer
Have you tried writing a custom method? http://docs.jquery.com/Plugins/Validation/Validator/addMethod Jörn On Mon, Jun 15, 2009 at 12:25 PM, Tor I. Pettersentor.petter...@gmail.com wrote: Hi, I could use a hand with jquery validate. ( http://docs.jquery.com/Plugins/Validation ) I have

[jQuery] Re: How do I (client side) programatically set jQuery rating

2009-06-15 Thread Sekhar
found it: $(.star).rating('select', value); On Jun 14, 10:58 pm, Sekhar chan...@sekhar.net wrote: I can't seem to figure out how to set the star rating value at client run time. Can you please reply with a sample? Thanks. Sekhar.

[jQuery] Re: Autocomplete - Holding down key

2009-06-15 Thread Jörn Zaefferer
Ok, first sorry for my previous message. I somehow go the idea that you implemented your own autocomplete plugin. So, testing on FF3 on Windows, holding the down cursor works fine, the selection continues to scroll. I don't have access to a Mac, so I can't test that currently. You could try to

[jQuery] Re: [validate] how to get ajax error messages from server till it is implemented in remote method

2009-06-15 Thread Jörn Zaefferer
Actually this will be implemented in the next release, due out very soon (hopefully today). Stay tuned for the update on bassistance.de You can also get the code now from SVN: http://jqueryjs.googlecode.com/svn/trunk/plugins/validate/ Jörn On Mon, Jun 15, 2009 at 11:49 AM,

[jQuery] Re: [validate] how to get ajax error messages from server till it is implemented in remote method

2009-06-15 Thread david
Wow, Cool Thank you very much On Jun 15, 3:32 pm, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Actually this will be implemented in the next release, due out very soon (hopefully today). Stay tuned for the update on bassistance.de You can also get the code now from

[jQuery] Re: tablesorter plugin leaks memory in IE6 and IE7

2009-06-15 Thread MorningZ
I wouldn't be so quick to point fingers @ the plugin There's lots of people on this list using it, with tables larger than your 10x200, without any talk of memory leaks of 2 megs on a page refresh... I'd start super simple (static HTML, tablesorter applied with all default options) and the

[jQuery] Re: Outline html elements on hover and click

2009-06-15 Thread Karl Swedberg
Hi Dave, This should get you started: script type=text/javascript $(function(){ $( #divCodeArea ) .mouseover(function(event) { $(event.target).addClass('outlineElement'); }) .mouseout(function(event) { $(event.target).removeClass('outlineElement');

[jQuery] Re: Issue with Cycle Plugin

2009-06-15 Thread Michael Smith
I don't entirely understand the problem but perhaps you could add display:none to the second image. This should prevent it showing up before jquery cycle tells it to. Michael On Mon, Jun 15, 2009 at 2:02 AM, vintomv...@vintom.com wrote: I am not great with jquery (yet), but I have used a few

[jQuery] Re: jquery and comet

2009-06-15 Thread Javier Martínez Fernández
Sorry for the delay on response. At last I have used a Jetty server with support with native comet. In the package there is already a js library to use with jquery. We have this configuration for about 4 months and we are very happy with it. Hope it helps. If you have some question about how to

[jQuery] javascript error[Invalid range in character set] while loading thickbox

2009-06-15 Thread husam
hello, I am getting a javascript error [Invalid range in character set] while loading a thickbox. i am using jquery version 1.3.2. please find below file names which are being used. jquery-1.3.2.js thickbox.js thickbox.css i am unable to address this error from which file and line i am

[jQuery] Re: JQuery Cycle Plugin Problems with IE7

2009-06-15 Thread Mike Alsup
slideExpr: null, Trailing commas in arrays cause JavaScript errors in IE. Please enable debugging in your browser so that you can see these errors reported on the status bar. On Jun 8, 8:00 am, buschii mailsvomha...@web.de wrote: Hi folks, I am new here and I seached vor problems with

[jQuery] Re: JQuery Cycle Plugin Problems with IE7

2009-06-15 Thread rjonker
I am having the exact same issue. On firefox and safari the cycle woks fine. In ie7 the images are displayed beneath each other. I hope someone will reply :) Cheers, Robert On 8 jun, 14:00, buschii mailsvomha...@web.de wrote: Hi folks, I am new here and I seached vor problems with IE7 and

[jQuery] Re: Is it possible to add jquery effect on jquery created dom??

2009-06-15 Thread waseem sabjee
one very important thing to note is that .live() is not friendly with IE however through about an hour of trial and error i found a solution to replicate the .live() basically what i did is i embedded my click event within the AJAX success without using live() works like a charm /* == Get

[jQuery] Re: What's happening to my posts?

2009-06-15 Thread brian
Aside from a delay due to moderation, there's also the fact that gmail seems not to display one's own messages to google groups. I've only ever seen mine once someone else has replied to it. On Mon, Jun 15, 2009 at 4:03 AM, Veeruswamyve...@gmail.com wrote: Hi there, Am just worried, i have

[jQuery] AJAX Tab with Struts2 and SiteMesh

2009-06-15 Thread SteveM
This may be a post for the struts list, but I'll start her. I'm using Jquery with Struts2 and SiteMesh. My tabs work fine with all my code on a single JSP. I tried switching to AJAX, but that breaks the OGNL reference to a list on the second TAB. I set-up a separate namespace in Struts so

[jQuery] Re: Superfish help - rebuilding a page because of LiveBooks framework

2009-06-15 Thread marioATsmithphoto.com
Many Many thanks to Charlie for not only helping me to make this work, but for making it work as efficiently as possible with coding that is streamlined and not full of useless and unnecessary code. He implemented a very clean Superfish script in a VERY short time and his services are offered at

[jQuery] Re: document.body is null or is not an object

2009-06-15 Thread Lideln
Ok... I did not succeed in fixing that issue. Nevertheless, a colleague told me about multiple_ie, which is an application that allows to install (in stand alone) all desired versions of IE. This software seems to work well, as it has solved my issue (but the standard IE still won't work).

[jQuery] Compute body width WITHOUT scrollbars

2009-06-15 Thread Lideln
Hi all, I have an application that resizes itself upon window resize. The problem is that if I resize down the window so it is smaller, two scrollbars appear during resize (nothing new for now...), but the computed body width is the width with the scrollbars. Then, when I stop resizing, my app

[jQuery] Re: Question about 'ready' event

2009-06-15 Thread Bernad
Yeah, this works perfectly! Many thanks for the idea, Pierre. Best Regards. On Jun 12, 8:20 pm, Pierre Bellan fcy...@gmail.com wrote: I see one fast solution, You put a variable isLoaded in your top frame. At first, the value is false, and when it's ready you change the value to true.

[jQuery] Re: Question about 'ready' event

2009-06-15 Thread Bernad
Yeah, this works perfectly! Many thanks for the idea, Pierre. Best Regards. On Jun 12, 8:20 pm, Pierre Bellan fcy...@gmail.com wrote: I see one fast solution, You put a variable isLoaded in your top frame. At first, the value is false, and when it's ready you change the value to true.

[jQuery] Re: Tell me , Select option value

2009-06-15 Thread bharani kumar
thanks On Mon, Jun 15, 2009 at 5:06 PM, david michaelg...@gmail.com wrote: For alert : you must define on which event and then use the bind function: http://docs.jquery.com/Events/bind#examples On Jun 15, 2:33 pm, david michaelg...@gmail.com wrote: You mean the value of the radio button.

[jQuery] Select/Unselect radio buttons

2009-06-15 Thread Erich93063
I have a very long form full of items that the user rates from 1 to 3. There may be 100 items that the user needs to rate. For each item to rate they are given three radio buttons for 1, 2 or 3 for them to choose from. Now initially all the radio buttons are unchecked, but each item to rate is

[jQuery] Re: Superfish: 3rd Level Links (Fly-outs) are not showing up in Internet Explorer

2009-06-15 Thread Buch
I have the exact opposite problem my IE is showing while all other browsers show. On May 25, 3:13 am, Susan esnelsonfam...@gmail.com wrote: I just discovered that Internet Explorer is not showing the 3rd level of the menu. http://tinyurl.com/cr2wmr(very much a work in progress) I believe

[jQuery] Periodical updater using Json in Jquery?

2009-06-15 Thread jwerd
I'm grabbing an update from a json file, but I want to have it update perodically to the screen, overwriting what it found before... sort of like Prototype's Ajax Updater. Is this possible in Jquery? I scoured the groups to but only found a digg spy thing, which is sort of what I'm looking for

[jQuery] autocomplete: current state?

2009-06-15 Thread hobbesDev
hi, i wanted to test the newest version of autocomplete. The current implementation seems to be very old and is still based on jquery 1.2.6 (autocomplete 1.0.2) (http://bassistance.de/jquery-plugins/jquery- plugin-autocomplete/). Quiet new is the debate on current features (see

[jQuery] [blockUI]Showing iframe without reloding it - Problem

2009-06-15 Thread kulasart
Hi! I have some problem with BlockUI jQuery plugin. test.html [code] html head script src=./js/jquery.min.js/script script src=./js/jquery.blockUI.js/script style type=text/css media=screen #page {display:none} /style script

[jQuery] Superfish - Bugging in Mozilla, Google Chrome, Opera but not IE?

2009-06-15 Thread Buch
Heya, I recently found the superfish jquery plugin and really liked it but when I try to implement it on my site every works pretty fine until I want Main Sub Sub menus shown only IE explorer shows theese but Mozilla Firefox and Goole Chrome all fail at showing them. I have tried multiple

[jQuery] Re: Jcarousel - Can I make a jcarousel completely reset and reload!

2009-06-15 Thread Chris
Try doing something like this; script type=text/javascript var theModelCarousel = null; function modelCarousel_initCallback(carousel) { theModelCarousel = carousel; // Callback functuions if needed }; jQuery(document).ready(function()

[jQuery] Training: jQuery Fundamentals (Carrboro, NC -- July 29-30)

2009-06-15 Thread rmurp...@gmail.com
Announcing jQuery Fundamentals, a two-day class at Carrboro Creative Coworking in Carrboro, NC (July 29-30) that will give you the knowledge you need to properly and effectively start integrating jQuery, the popular JavaScript library, into your web development projects. Over the course of two

[jQuery] Re: Compute body width WITHOUT scrollbars

2009-06-15 Thread mike.helgeson
This might be helpful: http://plugins.jquery.com/project/getscrollbarwidth On Jun 15, 11:32 am, Lideln lid...@gmail.com wrote: Hi all, I have an application that resizes itself upon window resize. The problem is that if I resize down the window so it is smaller, two scrollbars appear

[jQuery] Re: css() function returns different results on different browsers

2009-06-15 Thread upsilon
Kean and Dave, thanks for your answers. I agree it's not a huge bug (is it really one?), my question was more aimed to... improve my jQuery knwoledge. If you are trying to parse out the URL, your code needs to be able to handle either format. The browser should accept either format, although

[jQuery] Re: autocomplete: current state?

2009-06-15 Thread Jörn Zaefferer
You can get the latest code here: http://jquery-ui.googlecode.com/svn/branches/dev/autocomplete/ Required files: http://jquery-ui.googlecode.com/svn/branches/dev/autocomplete/ui/ui.autocomplete.js http://jquery-ui.googlecode.com/svn/branches/dev/autocomplete/themes/base/ui.autocomplete.css Jörn

[jQuery] Re: Compute body width WITHOUT scrollbars

2009-06-15 Thread Lideln
Hi ! Thank you for the answer ! I will test that tomorrow and I'll keep you posted. Good evening, and thanks again ! On Jun 15, 6:48 pm, mike.helgeson mike.helge...@gmail.com wrote: This might be helpful:http://plugins.jquery.com/project/getscrollbarwidth On Jun 15, 11:32 am, Lideln

[jQuery] Sorted unordered lists

2009-06-15 Thread shaw1ea
I have two sorted unordered lists. I allow users to drag and drop elements from the first list to the second list. I want to get the text of the elements that have been dnd on the second list when the user clicks the submit button. All I have been able to get is the ids of the list elements. Is

[jQuery] Sorted unordered lists

2009-06-15 Thread shaw1ea
I have two sorted unordered lists. I allow users to drag and drop elements from the first list to the second list. I want to get the text of the elements that have been dnd on the second list when the user clicks the submit button. All I have been able to get is the ids of the list elements. Is

[jQuery] jQuery [validate] - Validating the same form twice

2009-06-15 Thread SeiferTim
OKay, I'm trying to setup my site to be all on one page with a login/ logout button. When the user clicks Login, a hidden div with my form in it is displayed. Once they login successfully, Login becomes Logout. When they click Logout, it goes back to showing Login, and then they can click it to

[jQuery] IE Bug Help: breaks column CSS heights when select box changed

2009-06-15 Thread Jimbo
Hi guys, Got a nice problem with IE :-( FF and chrome etc are absolutely fine. Using IE7 atm. I have a structure of 2 columns and ive emptied the left column to nothing to narrow the bug hunt down but the right hand column is a list of results quite a substantial height. On load they are fine

[jQuery] ajaxSubmit on a form with a file field causes JSON response to be downloaded as a file

2009-06-15 Thread christian.oudard
I'm using the jQuery Form plugin, and I have a form that I am submitting using ajaxSubmit(). The server gives a JSON response to this ajax request. I have a file field on the form, but the server does not use the data from this field for this particular request. However, when the field is filled,

[jQuery] IE Bug Help: breaks column CSS heights when select box changed

2009-06-15 Thread Jimbo
Hi guys, Got a nice problem with IE :-( FF and chrome etc are absolutely fine. Using IE7 atm. I have a structure of 2 columns and ive emptied the left column to nothing to narrow the bug hunt down but the right hand column is a list of results quite a substantial height. On load they are fine

[jQuery] Re: [autocomplete]

2009-06-15 Thread LexHair
How about this? (#hidden is the id of the hidden input field you want to fill in.) $('#autocomplete').autocomplete({serviceUrl:'/your_directory/ your_file.php', onSelect: function(value, data){ $('#hidden').val(data); } }); On Jun 12, 5:22 pm, shaded

[jQuery] How to use keypress on div element with jquery

2009-06-15 Thread MadeOfRose
Hi guys, i am new on jquery. i am trying to do some practices. i' want to do an ajax autocompleter. First i have to solve some client side script issues. Below, there is a page that includes div elements. i want to work them like a dropdownlist. You can navigate between rows by pressing down

[jQuery] Re: Select/Unselect radio buttons

2009-06-15 Thread Nikola
Give the three master radio buttons unique ID's or classes. Then, upon clicking one of them you can add / remove classes and attributes... $('#masterRadioOne').click(function(){ ($('.radio1').is('.on')) ? $('.radio1').removeClass('on').attr (checked,false) :

[jQuery] GPL e MIT Jquery

2009-06-15 Thread Egipicio
Good night I think wanting to know if you have GPL on my site .. someone asked the sorce of the whole system if I only mandatory available? obs: The system does not GPL and everything was done by my in php . just plug jquery GPL and that this coupled system ...

[jQuery] Re: anonymous function and code reusing

2009-06-15 Thread Ricardo
That's why bind() supports a 'data' argument: $(document).ready(function(){ $(#earth).bind('click', { stuff: 'param1' }, myFunction); $(#moon).bind('click', { stuff: 'param2' }, myFunction); function myFunction(e){ alert( e.data.stuff ); }; }); see here:

[jQuery] Re: Outline html elements on hover and click

2009-06-15 Thread Dave
Works like a charm. Many thanks. =) On Jun 15, 3:49 pm, Karl Swedberg k...@englishrules.com wrote: Hi Dave, This should get you started:     script type=text/javascript     $(function(){        $( #divCodeArea )        .mouseover(function(event) {          

[jQuery] Re: Need help cuz I don't get 'this'

2009-06-15 Thread Logictrap
Thank you that worked!!! I think I may understand how to use children if you could also show how to get the img src attrbitute when 'this' contains: div class=logo table width=100% border=0 cellspacing=0 cellpadding=0 tr td height=170 align=center valign=middleimg src=/

[jQuery] Re: GPL e MIT Jquery

2009-06-15 Thread Egipicio
good night! If I put a plug in GPL on my system. My whole system will be GPL? I have to provide the source of it all for free? My system that I created I still have the rights over it? hugs On 15 jun, 19:26, Egipicio darkxt...@gmail.com wrote: Good night I think wanting to know if you

[jQuery] Autocomplete + jScrollPane

2009-06-15 Thread Tekki
Evening, I'm trying to link these two plug-ins together and was wondering if it were possible. The 'autocomplete' list should contain custom scroll bars. If there is another way of performing this, please let me know. Thank you.

[jQuery] Help needed - jQuery p width jumping

2009-06-15 Thread joro3d
Hi, I have been fighting a terrible problem. The situation that I have is: I have a column with text (#content p) and next to it an anchor with image. Images can be portrait or landscape and ratio is not fixed. They just have to fit in 400x400px square. My task is to make the text column which

[jQuery] dynamically add link after certain hrefs

2009-06-15 Thread keith2734
I work on a portal website that has approximately 700 pages and several thousand links. Some of these links are to various documents (.doc, .pdf, .xls). I would like to use Jquery to dynamically find these links on a page when the pages load and add another link directly after it that can invoke

[jQuery] Removing Inner Tags

2009-06-15 Thread Clare
hi all, I have something like below: div p h1 a href=#My Link/a /h1 /p /div I'd like to get rid of only the inner tags, 'p' and 'h1'. Any help would greatly be appreciated.

re[jQuery] -ordering elements

2009-06-15 Thread debussy007
Hi, I have a set of td which have id's like: td id=order1[...] td id=order3[...] td id=order2[...] td id=order4[...] I would like to re-order them to have consecutive numbers, what is the best way to achieve this ? So far I have the code below, which iterates through all td's:

[jQuery] Re: AJAX Tab with Struts2 and SiteMesh

2009-06-15 Thread SteveM
The problem was that I named the AJAX fragments with the .jspf extension. I changed them back to .jsp and Tomcat was happy. On Jun 15, 10:05 am, SteveM stevecmitch...@gmail.com wrote: This may be a post for the struts list, but I'll start her.  I'm using Jquery with Struts2 and SiteMesh.  My

[jQuery] Re: get email and send email?

2009-06-15 Thread inkexit
On Jun 14, 9:41 pm, John Bill hexudon...@gmail.com wrote: make up ! Maybelline or L'Oréal?

[jQuery] Re: Periodical updater using Json in Jquery?

2009-06-15 Thread Ricardo
setTimeout? jQuery.fn.ajaxUpdater = function(url, interval){ var self = this; function update(){ $.getJSON(url+'?'+(+new Date), function(data){ self.text( $(data).find('item') ); setTimeout(update, interval); }); }; update(); });

[jQuery] Re: Jquery Ajax Post question

2009-06-15 Thread James
By default, any code that you put after the $.post(); part will be executed immediately after $.post() is executed. That is, it will not wait for the AJAX response. You would not be able to do the do something with data here part correctly. To do so, you can using jQuery's $.ajax() function,

[jQuery] Re: Removing Inner Tags

2009-06-15 Thread Charlie
assuming you're keeping the a tag there are quite a few ways to do this, here's a few: 1) $("div h1 a").appendTo("div"); $("div p, div h1").remove(); 2) var link=$("div h1 a"); $("div").html(link);// nothing left in div except a tag with this example, would wipe out anything else in div too

[jQuery] ajaxSetup and getJSON

2009-06-15 Thread Antony Currington
Hi all, Is it possible to use ajaxSetup to define a username and password that will then be used by getJSON? I have an enviuronment where I have a web server that I'm passing a URL to for a web service call that returns me JSON. I'm doing the call via the getJSON method, and get back the data

[jQuery] iframe and autoscroll to bottom

2009-06-15 Thread arena
Hi any one have an idea on autoscrolling to the bottom of the content of an iframe on onload event ? (the iframe content is a txt file) thanks

[jQuery] jQuery, iframe and scrolldown

2009-06-15 Thread arena
Hello, I am displaying a txt file (log file) in an iframe. After a certain period of time, i refresh the content of the iframe doing : jQuery('iframe#mp').attr('src', samesrc); previously, i set the event listener : jQuery('iframe#mp').load(function() {scrolldown();}); so

[jQuery] Re: themeroller - downloading a custom theme seems to be broken

2009-06-15 Thread MorningZ
You are better off posting this in the dedicated jQuery UI group http://groups.google.com/group/jquery-ui?hl=enlnk=

[jQuery] themeroller - downloading a custom theme seems to be broken

2009-06-15 Thread ken
Hi JQuery, I noticed today when trying to update my themes via Themeroller that downloading the custom theme seems to succeed but no longer download anything. This worked fine two weeks ago. The other change I noticed is.. it is now downloading a 1.7.2 ui theme.Last time it worked, I was

[jQuery] Re: Removing Inner Tags

2009-06-15 Thread Clare
Beautiful! All of them work great. Thanks for the useful info! Clare