[jQuery] Calculate time since post

2008-06-02 Thread hubbs
I am wondering if jQuery has any solutions to calculate the time since a post was made. Say it was created on June 2, at 11:30pm, I would like to have the display continue to change as the days go on. So, tomorrow, it would read, posted 1 day 20 hours ago, or something like that. Has anyone had

[jQuery] Re: How to make webpage to adjust to user display settings.

2008-06-02 Thread RobG
On Jun 2, 9:18 am, Aaron <[EMAIL PROTECTED]> wrote: > ok I am currently working on a website and I need to have my website > to adjust to the clients display settings so like for an example > that if the user has a higher display settings my webpage through > javascript would resize all the el

[jQuery] Re: Selecting elements with multiple classes

2008-06-02 Thread Mike Alsup
> 1) > . > $('.child') works fine and selects all elements with class "child" > > 2) > $('.child)' does not work and selects nothing Say what? You'll have to post a demo for me to believe this. You do have a typo there though, where you have $('.child)' I assume you meant $('.child'). T

[jQuery] Re: Select option value

2008-06-02 Thread Mike Alsup
> This seems to be a better one: > >  function specify(current) > { >       alert( $j(current).children("[EMAIL PROTECTED]").val() + " " + > $j(current).children("[EMAIL PROTECTED]").text() );} Better in what way?

[jQuery] Re: Clicking on the whole div area.. not just the small icon image.

2008-06-02 Thread Wizzud
Try giving the div a background color. On Jun 2, 4:17 pm, Danjojo <[EMAIL PROTECTED]> wrote: > I am trying to get a click event on the whole div area around the > image that toggles a menu. > In FireFox I can click on the whole div and my functionality works. > > In IE7 I have to click only on th

[jQuery] Selecting elements with multiple classes

2008-06-02 Thread andyGr
Hi All, A simple example: 1) . $('.child') works fine and selects all elements with class "child" 2) $('.child)' does not work and selects nothing How can I fix this and select the elements in case of multiple classes? Is there something as a wild card to select any elements containing "

[jQuery] Re: Newb – unordered list - get list item visibility

2008-06-02 Thread Adam Weis
G, I tried a quick demo of what you were trying to accomplish and I think I have something that might work. I'm still pretty new around here, but I hope this helps. $(document).ready(function(){ var cnt = $('#errList li:visible').size(); alert(cnt); }); If someone knows a bette

[jQuery] Re: Select option value

2008-06-02 Thread andyGr
This seems to be a better one: function specify(current) { alert( $j(current).children("[EMAIL PROTECTED]").val() + " " + $j(current).children("[EMAIL PROTECTED]").text() ); } -- View this message in context: http://www.nabble.com/Select-option-value-tp17592925s27240p17611145.html Sent

[jQuery] Re: jQuery.SerialScroll

2008-06-02 Thread Ariel Flesler
The scrollable pane (#slideshow) doesn't haev overflow on IE, so it can't scroll. You need to fix the styling. Cheers -- Ariel Flesler http://flesler.blogspot.com On 2 jun, 08:18, Ronnie28 <[EMAIL PROTECTED]> wrote: > Hi guys. > I've made this page with the serial scroll plugin. > The page code

[jQuery] Sortable Checkbox

2008-06-02 Thread Kandy I
Are there any plugins like on Apple's Pro site, with the sortable checkbox? http://www.apple.com/pro/profiles/ Thanks

[jQuery] Re: thoughts ? Announcing AJAX Libraries API: Speed up your Ajax apps with Google’s infrastructure

2008-06-02 Thread Seth - TA
Scottus Nifty idea. Suggestion - Look to implement plugin options as well. Keeping track of versions is a benefit and the speed improvement is nice to a degree, but the biggest struggle is I hate having to have 5 or 6

[jQuery] Re: jcarousel - circular problem going backwards on initial load

2008-06-02 Thread ericHurst
still looking for a solution here if anyone has any ideas. On May 27, 5:23 pm, ericHurst <[EMAIL PROTECTED]> wrote: > For some reason, when my page first loads the carousel, the prev arrow > is unusable until the user has clicked on the next arrow. After > clicking the next arrow, they user is ab

[jQuery] Re: superfish: javascript issue

2008-06-02 Thread warren
I don't see any errors on the demos. What is the url you are getting errors one? Do you have the bgiframe plugin installed too? GET /css/bgIframe.js these errors look like they are from an incorrect call of the js doc from your html... ET /css/css/css/css/ do you have something like this? if

[jQuery] Newb – unordered list - get list item vi sibility

2008-06-02 Thread GiJeet
Hello, I just starting out with JQuery and I’m struggling with a problem. I have an unordered list, id = “errList” with several list items. Each list item has it’s own id, e.g. id=”one”, id=”two”, etc. I’m using a CSS and in the CSS I use the id of each to initially set the visibility of each t

[jQuery] Re: JqModal

2008-06-02 Thread Scott Sauyet
highjo wrote: i'm new to this an quite new to programming.I can fel this is great.I'm from the jqModal tutorial page and i just want to try it and add it to my project. > i'm confused wich one should i use ? or should i use all of them.code snipet javascript + jqModal.js + jquery.js+ code snip

[jQuery] [ANNOUNCE] jQuery UI 1.5 release candidate, we’re getting excited

2008-06-02 Thread Rey Bango
The jQuery UI team has released the final release candidate for jQuery UI v1.5 with a final release expected on June 8th, 2008. You can read more about this RC here: http://jquery.com/blog/2008/06/02/jquery-ui-15-release-candidate-were-getting-excited/ We would love the community to help out

[jQuery] Re: Queue regular function with hide and show

2008-06-02 Thread Michael Geary
I wonder if it would help to wrap the table in a div and then do the slideUp/Down on the div instead of the table? That's probably the first thing I would try. If you can post a link to a test page, that would make it easier to take a look at the problem. -Mike > I really thought that would sol

[jQuery] Re: click(fn) question

2008-06-02 Thread Scott Sauyet
Michael Geary wrote: It's funny, my guess is the opposite of Scott's. I'm also not familiar with the flot code, but it sounds like something that may run *synchronously* and therefore locks up the browser until it is completed. Any changes you make to the DOM will not show up on the display unti

[jQuery] Re: JqModal

2008-06-02 Thread Michael Geary
Keep in mind that posts from new members are moderated to fight the terrible spam problem in Google Groups. So highjo may have posted the original message much longer ago than that. Patience is still a good thing, of course. :-) -Mike > If the datestamps on your posts are right, then you are >

[jQuery] Problem with jquery plugin inside an ajax loaded php page

2008-06-02 Thread Pescador
Hi I am a noob with jquery, and I am learning by myself and building a site with jquery php and mysql. I have this problem: Start page have a div for ajax loading and many links with image gallery names that ajax load the same php page with diferent param Id for each gallery. For example on

[jQuery] Re: Select option value

2008-06-02 Thread Michael Geary
It's easier than you think. Just use the value of the select element itself: function specify( select ){ var spName = select.value; alert( spName ); } You may want to run the same code on the keyup event as well as the change event, to make the cursor keys select immediately: And, of

[jQuery] Re: .click()/.bind() bag on IE6

2008-06-02 Thread Michael Geary
Can you post a link to a test page demonstrating the problem? It's hard to tell what is wrong from the posted code. -Mike _ "sreturn false:" is a typo... I rewrite my script like you council...all works good..thanks :) but this bag still interestingly for me... :\ if somebody know w

[jQuery] Re: JqModal

2008-06-02 Thread Pyrolupus
If the datestamps on your posts are right, then you are complaining of no response in under two hours? Is that correct? You just need to practice a bit more patience. Personally, I browse new posts to the group somewhere between zero and three times per day. I would not expect an immediate res

[jQuery] Re: click(fn) question

2008-06-02 Thread Michael Geary
It's funny, my guess is the opposite of Scott's. I'm also not familiar with the flot code, but it sounds like something that may run *synchronously* and therefore locks up the browser until it is completed. Any changes you make to the DOM will not show up on the display until this finishes. If th

[jQuery] Re: thoughts ? Announcing AJAX Libraries API: Speed up your Ajax apps with Google’s infrastructure

2008-06-02 Thread aldomatic
Not yet, but I plan on using it here in a day or so. Looks intresting so far. On Jun 2, 12:16 pm, cfdvlpr <[EMAIL PROTECTED]> wrote: > Is anyone using this for jQuery yet?  To do this, you can just use > this line of code, right? > >

[jQuery] Re: JqModal

2008-06-02 Thread Michael Geary
Highjo, it's only been 90 minutes since your first post appeared here. Be patient. :-) If you posted the message earlier than that, it was probably delayed because messages from new members go through moderation to help cut down on the terrible spam problem in Google Groups. (See the Google Maps

[jQuery] Re: JqModal

2008-06-02 Thread highjo
am i ignored or something or what i'm aking for is so obvious that nobody replies to me at least one directive? I don't think i'm in the wrong place. i 'm member of differents forums and it not like this for newbies. tell me if i miss something or not follwing this forums rules. wow i'm impressed

[jQuery] Re: thoughts ? Announcing AJAX Libraries API: Speed up your Ajax apps with Google’s infrastructure

2008-06-02 Thread cfdvlpr
Is anyone using this for jQuery yet? To do this, you can just use this line of code, right?

[jQuery] Re: Problem when trying to copy the home page design of Msn Video site

2008-06-02 Thread Karl Swedberg
Hi there, I'm just getting back to this list after being away for a few days, so forgive me if this has been answered already (though I didn't see a reply yet). I think you will find the hoverIntent plugin very helpful for this sort of thing: http://cherne.net/brian/resources/jquery.ho

[jQuery] Re: reseting values of input fields that have been cloned

2008-06-02 Thread Jason Huck
I haven't tested this, but I think you'd just select the inputs within the clone, and reset them before inserting, like so: var clonedRow = $("tbody.gltb tr#guest_new").clone(); $('input', clonedRow).val(''); - jason On Jun 2, 11:42 am, jarp <[EMAIL PROTECTED]> wrote: > new to jquery. here

[jQuery] Re: click(fn) question

2008-06-02 Thread Leanan
I hadn't thought about that... I'll look into it.

[jQuery] Re: blockUI 2.02 error ?

2008-06-02 Thread krlucas
FWIW, I encountered this same error and found this thread. It reminded me that I had changed FF's useragent when testing something and had never reset it. Once I fixed that everything was great. On Apr 8, 9:58 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > nope, using the same browser

[jQuery] superfish: javascript issue

2008-06-02 Thread [EMAIL PROTECTED]
Hello... It was suggested that I post here because the author of superfish watches this list closely... I have an issue on IE browsers. They intermittedly show a javascrip error, both on the site that I've done using superfish and the demo site. I'm not a javascript guy so I don't have the first

[jQuery] [Tutoria] How to make accordion menu using jQuery

2008-06-02 Thread Rey Bango
Tutorial: How to make accordion menu using jQuery by Roshan Bhattarai http://roshanbh.com.np/2008/06/accordion-menu-using-jquery.html

[jQuery] reseting values of input fields that have been cloned

2008-06-02 Thread jarp
new to jquery. here is what I am trying to do. -- I am using the clone function to clone a table row. -- the table row contains 3 input fields -- they are inheriting the values already in them -- i need to reset them to "" (blank") $(document).ready(function() { // Initialise the table

[jQuery] Re: How to make webpage to adjust to user display settings.

2008-06-02 Thread Aaron
Also can jquery be used in commercial webpage?? like any commercial type website can use this for free? On Jun 1, 7:18 pm, Aaron <[EMAIL PROTECTED]> wrote: > ok I am currently working on a website and I need to have my website > to adjust to the clients display settings   so  like for an example

[jQuery] Re: jqModal and dynamic Ajax

2008-06-02 Thread Chag
No one can help ? Chag -- View this message in context: http://www.nabble.com/jqModal-and-dynamic-Ajax-tp17514602s27240p17604358.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: How to make webpage to adjust to user display settings.

2008-06-02 Thread Aaron
can jquery do this?? On Jun 1, 7:18 pm, Aaron <[EMAIL PROTECTED]> wrote: > ok I am currently working on a website and I need to have my website > to adjust to the clients display settings   so  like for an example > that  if the user has a higher display settings my webpage through > javascript w

[jQuery] JqModal

2008-06-02 Thread highjo
Hi! i'm new to this an quite new to programming.I can fel this is great.I'm from the jqModal tutorial page and i just want to try it and add it to my project.First i did a copy and paste but it not working.Ok i thought it's because i don't understand the library and i went to try another tuto lik

[jQuery] Re: innerFade and delay? or Cycle and drupal 5.x ?

2008-06-02 Thread Karl Swedberg
It could be that the jQuery Update module is only updating to 1.1.x . I noticed this on the module page: A 2.x branch is now available. This includes the latest jQuery 1.2.3 with both compat-1.0 and compat-1.1. Do note that the install process has slightly changed so a complete reinstall

[jQuery] Re: submit a form when an image is clicked rather than using input type=submit

2008-06-02 Thread Karl Swedberg
Hi Pyrolupus, Sorry for the inconvenience. Since Google Groups doesn't have very good spam filtering, we have moderation turned on for new users. I'm not sure how many times you have to post before you're out of the moderation queue, but I think it's around 5. We have a few moderators wh

[jQuery] Re: Livequery event firing multiple times

2008-06-02 Thread Gordon
You're right, I guess after getting used to the standard way of doing it without livequery I just totally missed that. I'm still having a problem though, I changed the code so the livequery event only ever fires once, but no matter which groups I click the "Ass question" button for the result is

[jQuery] Clicking on the whole div area.. not just the small icon image.

2008-06-02 Thread Danjojo
I am trying to get a click event on the whole div area around the image that toggles a menu. In FireFox I can click on the whole div and my functionality works. In IE7 I have to click only on the tiny arrow icon. How do I allow the whole div to control the event? $(document).ready(function() {

[jQuery] Re: click(fn) question

2008-06-02 Thread Scott Sauyet
Leanan wrote: Does anyone know how I can get the following to work and actually display the results of the .text() calls inside the click() instead of after the .click() has processed? Thanks in advance I don't know anything about flot, but my guess is that it's processing asynchronously, so

[jQuery] Re: How to work with checkboxes

2008-06-02 Thread ryy705
Thank you works perfectly. -- View this message in context: http://www.nabble.com/How-to-work-with-checkboxes-tp17582264s27240p17603046.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Cluetips Protips Jtips

2008-06-02 Thread Danjojo
I really like the quality of the tooltip pop-ups found here http://www.nickstakenburg.com/projects/prototip2/ What is the closest thing we have to this level of quality in jQuery? Thanks, D

[jQuery] Adding times

2008-06-02 Thread owen
Does anyone know of a good plugin/function/library for adding up times? My primary requirement is to be able to take strings like "9:00 AM" and "5:00 PM" and calculate the hours between. I don't want to reinvent the wheel, especially considering mine will end up being square... Thanks, Owen

[jQuery] Question about .click

2008-06-02 Thread Leanan
Hello there ladies and gents, hopefully someone can point me in the right direction. I'm using a combination of flot and ui tabs, and I want the following behavior: When the user clicks on the tab, the text and background get changed to display a loading message while the flot graph is drawn and

[jQuery] Re: .click()/.bind() bag on IE6

2008-06-02 Thread Евгений Шаповал
"sreturn false:" is a typo... I rewrite my script like you council...all works good..thanks :) but this bag still interestingly for me... :\ if somebody know why IE execute event, please tell me 2008/6/2 Michael Geary <[EMAIL PROTECTED]>: > It's pretty hard to tell what might be wrong without s

[jQuery] Tooltip onlink inside falls below the table

2008-06-02 Thread asle
Hi, I am using Jörns tooltip plugin. The tooltip shows but below the whole table and not under the link. I am using this css: #tooltip { position: absolute; z-index: 3000; border: 1px solid #111; background-color: #eee; padding: 5px; opacity: 0.85; }

[jQuery] click(fn) question

2008-06-02 Thread Leanan
I apologize if this gets posted twice, but it looks like my last attempt to post got swallowed by the ether. I'll make it short: I have flot and ui tabs. Because I'm processing a rather large set of data, and excanvas, switching the datasets graphed takes a few seconds. I want to add feedback,

[jQuery] Re: jQuery LOGO

2008-06-02 Thread Andy Matthews
Anyone know who came up with the logo in use for the jQuery Linkedin group? I'm quite partial to that one actually. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Sunday, June 01, 2008 11:06 AM To: jquery-en@googlegroups.com Sub

[jQuery] jQuery.SerialScroll

2008-06-02 Thread Ronnie28
Hi guys. I've made this page with the serial scroll plugin. The page code is right here: http://pastebin.com/m347ffc6 But it doesn't work with Internet Explorer, Can somebody help me? Thanks.

[jQuery] jQuery.SerialScroll

2008-06-02 Thread Ronnie28
Hi guys i've done this page withe the plugin jQuery.SerialScroll but it doesn't work with Internet Explorer 6. The code of the page is right here: http://pastebin.com/m347ffc6 Please help me !!! Thanks.

[jQuery] Re: get class or id

2008-06-02 Thread Hamish Campbell
Two elements should never have the same ID - make sure the links and the paragraphs do NOT have the same ID. Some people use the 'rel' tag for this sort of thing. Use the class attribute to denote objects that should be grouped (ie, the paragraphs you want to hide) Eg: 001 002 003

[jQuery] Re: Cant add focus and blur event handlers to input of type file

2008-06-02 Thread mark.forster
OK, this is me being really stupid. The reason i cant trap the event is because the file fields are added dynamically are there fore are not assigned event handlers in the intial loading of the script. Sorted this now ;-) On Jun 2, 11:31 am, "mark.forster" <[EMAIL PROTECTED]> wrote: > I'm havin

[jQuery] Cant add focus and blur event handlers to input of type file

2008-06-02 Thread mark.forster
I'm having a real problem hooking onto the events in input field of type file. here's the scenaro. I've made use of the hotkeys plugin for jquery and tweaked it a little so that hotleys and added a kind of proxy that checks for field focus and only delegates the event (callback) if no fields hav

[jQuery] functions and jquery

2008-06-02 Thread MarcDK
I have a problem with functions in jquery. Here is my code: $(function() { function klappmenu(id_name) { id_status=id_name+"_status"; head=id_name+"_head"; var id_status = $.cookie("+id_status+"); if (id_status == null){ $("h3#"+head).addClass('zu'); $("#"+id_name).css("display

[jQuery] how can I add some icons to bitmap

2008-06-02 Thread ivan.stefko
Hello, I need advice about jQuery animation. I would like to make following: I have some picture (for example some map) and I need to locate (add) some icons to this picture (map). Could you give me advice how to do it? I need some plugin or JQuery Core has some useful function for it? thanks

[jQuery] get class or id

2008-06-02 Thread jgarcia
i've a dinamic menu 001 001 001 this menu is dynamic, ie, is automatically generated from a database, therefore I will not know many elements i'll have in the future or what identifiers they have. Moreover, i have some , one for each in the If somebody do click inall must be hide

[jQuery] jQuery Sorting not working after appending new element

2008-06-02 Thread adaa
I'm working with jQuery ui sortable. It's working fine until I append new element to the sortable container. I tried with sortable("refresh"). It gets the new element when i call sortable("serialize") but the new element is not draggable, though the old ones(existing from the beginning) are still

[jQuery] Select option value

2008-06-02 Thread andyGr
Hi All, Here is a simple code: . . .. . How can I get the value of the selected option? I tried function specify(current){ var spName = $j(current+" option:selected").val(); alert(spName); } But it returns undefined value. What is wrong here?

[jQuery] Should metadata plugin merge into the core?

2008-06-02 Thread howa
Hi, I am more and more relying metadata in my codes, I think the idea in using it to store data is simply amazing, what do you guy think? Of coz livequery is also a good choice. What I think is in order to promote these plugins, we might consider provide an additional offical plugin packages fo