[jQuery] Re: listmenu

2009-10-23 Thread Jack Killpatrick
HI, Glad you like the plugin. I'm not sure what you mean about disappearing on mouseout. Can you clarify that for me? Thanks, Jack Rsolve wrote: hi, first of all, great plugin is it possible to make lm-wrapper not disappear on mouseout ? it would be just what i need. Thanks

[jQuery] Storing reference to an object using jQuery.data - any problems expected?

2009-10-23 Thread jayarjo
I want to store a reference to a particular object using jQuery.data on another object, can it potentially lead to memory leaks? And another question. Those objects at some point are dynamically removed and if that happens will the connection and associated data automatically be released, or we g

[jQuery] Re: images show before jquery and cycle plugin work their magic

2009-10-23 Thread joe
Thor I am having the exact same problem - have you found a solution?? can someone explain overflow and overflow of hidden? poundcommapo...@gmail.com your message is cryptic - can you elaborate. I am not calling the plug-in from a parent element, unless would be the parent element? Joe On Oct

[jQuery] Re: jquery disturbing the others javascript ...

2009-10-23 Thread Michael Geary
Post a link to a test page that illustrates the problem. Otherwise we can only guess as to what might be wrong. You get one guess for free, though. :-) Do you have code on your site that uses Prototype or a similar library, e.g. var foo = $('someElementId').tagName; That will fail if you includ

[jQuery] Re: jquery disturbing the others javascript ...

2009-10-23 Thread James
A jQuery plug-in should not have the jQuery in its code... if so, it's not doing it right. Is it possible to just remove the jQuery library portion of it and have it function as expected? What is this plug-in if you don't mind telling us? On Oct 23, 1:47 pm, bgolfy wrote: > Hi everybody, > > I'm

[jQuery] Superfish Menu - Joomla

2009-10-23 Thread Chintu
I use Superfish Menu with Nav-Bar option on a Joomla site. I would like to increase the width of the second level (sub-menu) width so that it fills up the entire width of the site template. The reason for doing this is quite simple, I have only 4 first level (main) menu items but 10 second level

[jQuery] listmenu

2009-10-23 Thread Rsolve
hi, first of all, great plugin is it possible to make lm-wrapper not disappear on mouseout ? it would be just what i need. Thanks

[jQuery] jquery disturbing the others javascript ...

2009-10-23 Thread bgolfy
Hi everybody, I'm new here and I'm not sure that this is where I have to come to find a help ... In case I'm inthe wrong place please forgive me and let me know wher to go. So, I use some of javascript in my site which runs perfectly until I use a plugin which have jquery.js in its code. Now, In

[jQuery] image preload question

2009-10-23 Thread michaelF
I'm updating my portfolio site and am using jQuery for the first time. The site and it's contents are far from complete, but for the sake of solving this problem I've loaded it here: www.msfaron.com/test10/ I've set this site version to load contents via jQuery's .load method. the files being lo

[jQuery] Re: Select onchange event get a value from selects table row

2009-10-23 Thread jchambers
Give this a try... $(document).ready(function(){ $('select').change(function(){ var key = $(this).parent().parent().find('input').val(); var v = $(this).val(); $('#MSG').html( key +'
'+ v ); }); }); chooseonetwo Good luck, Jon

[jQuery] Re: how to set array value????

2009-10-23 Thread jacob
> Can you rename the control? No I can't. Because the control's name is automatically assigned in the rails framework. If I rename the control's name, it will be caused another problem I can't properly manage the value. But I can see the value in the server side, when I make another test controll

[jQuery] clueTip display inconsistently

2009-10-23 Thread wendy.constantine
I've encountered some inconsistency in how the clue tip plugin displays. In most cases, it works perfectly using the JTip theme, yet when there are multiple links on a page, the links lowest on the page almost surely do not display a tip at all (except for the standard browser tooltip). And in som

[jQuery] Re: how to set array value????

2009-10-23 Thread DanDan
I *think* you are probably right that the name of the input control is your problem: name="branch[address]" I wonder if your server side code is seeing the brackets escaped or unescaped. Can you rename the control? On Oct 23, 9:22 am, jacob wrote: > hello? > > Today, I have met something odd

[jQuery] jQuery Plugin - validate always send the page

2009-10-23 Thread ReynierPM
Hi every: I need to validate a form[1] before sending. For that purpose I use the bassistance validator plugin[2]. I wrote a small code to validate all elements but in some point it fails because the form is always sended. The code is in file pintpal.js. Can any help to find where it fails?

[jQuery] Re: Update element when changes

2009-10-23 Thread ReynierPM
jchambers wrote: This will work. $("input[type='text']:order").keyup( function() { var v = $(this).val().replace(/\D/g,''); // removes non numbers $('#total_buyed').val( v * 2.75 ); }); Good luck, Jon Thanks a lot, works perfectly -- Salud

[jQuery] [JQuery Plugin - Validate] Form element was modified before and inside submitHandler

2009-10-23 Thread mathie
Does submitHandler add/modify the form element? I have a simple form with a button and a required checkbox. Form element outside of submitHandler: var_dump($('#formid').get(0).myButton); => a regular HTMLButtonElement as expected Form element inside of submitHandler: submitHandler: function(f) {

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread jayQuery
My code was ok, the missing semicolon was because of the copy/paste. The problem was due to a faulty logic on my side and calling a static json. After these good people gave me more insight, I understood that the way to achieve a cross domain call to a json, the json needs to be built dynamicall

[jQuery] Re: Events Calendar

2009-10-23 Thread brian
On Fri, Oct 23, 2009 at 2:10 PM, Kevin McPhail wrote: > > > Actually there is a decent little jquery plugin at > http://arshaw.com/fullcalendar/ > that may be what you are looking for. > That looks very smart. Thanks for the tip.

[jQuery] Re: how to set array value????

2009-10-23 Thread brian
On Fri, Oct 23, 2009 at 3:11 PM, James wrote: > > Which server-side programming language are you using? He mentioned Ruby. Jacob, perhaps you're using the wrong key. Have you dumped the posted vars to check? I can't remember, offhand, thesyntax for Ruby, but for CakePHP it would be debug($this-

[jQuery] Re: load(file) then bind(...) ?

2009-10-23 Thread ABB
live() is exactly what i needed! Thank you On Oct 22, 11:49 pm, Dave Methvin wrote: > > In other words, i have a main page with a menu that loads external > > files in the #content div with the load(file) function. The external > > file contains a DIV, and i want to bind a function to it $ > >

[jQuery] Select onchange event get a value from selects table row

2009-10-23 Thread Kevin McPhail
I have a table that contains a select element like so key value in hidden inputoptions I need to set $("selectclass").change(function() { //Find the value of hidden input in 1st cell of row of the select list that was changed. }); So when a user changes the option of the select i need to get

[jQuery] Re: Events Calendar

2009-10-23 Thread Kevin McPhail
Actually there is a decent little jquery plugin at http://arshaw.com/fullcalendar/ that may be what you are looking for.

[jQuery] [JQuery Plugin Validate] How to know which button is clicked

2009-10-23 Thread mathie
Hello, I have a form with two buttons: "Delete" and "View". A checkbox is required for all actions. Validation happens when a button is clicked. If it's "View", it is just a normal operation. However, if it's "Delete", if the form is valid, it then needs to show a confirmation before form submiss

[jQuery] Re: How to build this effect

2009-10-23 Thread DanDan
That is cool... I have seen this before as JQuery but not yet tried it: http://webdev.stephband.info/parallax.html On Oct 23, 9:46 am, Andrea - Aosta wrote: > At this URLhttp://www.smsbig.it/ityou see an effect build with > mootools. > THis js change the css style of the background when the mou

[jQuery] Re: return values

2009-10-23 Thread James
$.each(data.feed.entry, function(i, entry){ var postlink = []; // empty array $.each(entry.link, function(j, link){ if(link.rel == "self"){ // add to array postlink.push(link.href); } }); alert(postlink.join(', ')); }); On

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread MorningZ
"and maybe this has no bearing at all" it has zero bearing. in the code (which $.getJSON calls): get: function( url, data, callback, type ) { // shift arguments if data argument was ommited if ( jQuery.isFunction( data ) ) { callback =

[jQuery] Re: how to set array value????

2009-10-23 Thread James
Which server-side programming language are you using? On Oct 23, 6:22 am, jacob wrote: > hello? > > Today, I have met something odd experience during developing web > application based on Ruby on Rails and Jquery. > > When I set some value by next code, > jQuery('#branch_address').val(address_va

[jQuery] Re: $.Event is not a function js/jquery/ui.core.js Line 345

2009-10-23 Thread Maxime FAYE
OK i'll check this and i'll keep you posted :) 2009/10/23 Richard D. Worth > How bout an old version of jQuery UI then? If you're using jQuery v1.3.2 > make sure you're not using a jQuery UI version older than 1.7 > > - Richard > > > On Thu, Oct 22, 2009 at 11:20 AM, Maxime FAYE wrote: > >> Nope

[jQuery] Re: Events Calendar

2009-10-23 Thread brian
On Thu, Oct 22, 2009 at 7:21 PM, Andri <4r53...@gmail.com> wrote: > > Hi, I needed events calendar for my site. This calendar should : > 1. highlight date that had events > 2. If i click it, it'll go to events page or show alert about what > events that occur that date. > > > I try to use datepick

[jQuery] Plugin has slow response in IE8 ...

2009-10-23 Thread Joel Taylor
Hi everyone, I'm wondering if someone could take a quick look at this slightly modified plugin that I'm using on a site. It seems to work fine in most browsers, but in IE8 it's real jittery. It's a plugin that works pretty much the same as jqZoom. Any help would be greatly appreciated. http://j

[jQuery] url of ajax response?

2009-10-23 Thread Jack Bates
I make a request with jQuery.ajax(), to which the server responds with "302 Found" and a "Location: ..." header A second request to the new URL is then made automatically In my JavaScript, I need to know the new URL, but can't figure out how : ( I don't think I can get the value of the "Locatio

[jQuery] how to set array value????

2009-10-23 Thread jacob
hello? Today, I have met something odd experience during developing web application based on Ruby on Rails and Jquery. When I set some value by next code, jQuery('#branch_address').val(address_val); it seems to work as I expected. Because the value that I set by jQuery's 'val' function appear on

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread Chris
Hi, I was perusing the group looking to help a colleague with a similar problem. One thing I noticed here, and maybe this has no bearing at all, was the difference between the syntax in the first two posts: jayQuery wrote: $.getJSON('http://site1:/myjson.json?format=json&callback=?', {}, fu

[jQuery] How to build this effect

2009-10-23 Thread Andrea - Aosta
At this URL http://www.smsbig.it/it you see an effect build with mootools. THis js change the css style of the background when the mouse moved.With jquery it is possible? Thank you

[jQuery] Re: how to paste image into a web app

2009-10-23 Thread Margie
Interesting. That seems so "backwards"! I guess maybe the best solution for now is to have people paste it into Outlook and then mail their comment into the system. It really seems like if we (development community) are going to be writing web apps that have a look and feel of stand alone app

[jQuery] Ajax example needed

2009-10-23 Thread Jim Byrnes
I am struggling with ajax and jquery. I wonder if someone could point me to a simple yet comprehensive example of getting rows from a mysql database and displaying them in a html table. Using php on the server and jquery on the client. Thanks, Jim

[jQuery] Re: loading message shows up after page has loaded

2009-10-23 Thread sdtacoma
Dude! I think you might have gotten it working. This seems to work on my end... http://meded.ucsd.edu/testQuery.cfm On Oct 21, 4:45 pm, Karl Swedberg wrote: > yeah, I see it now. And I see the problem:   > doesn't appear in the HTML until about line 94,030. You can't block   > the UI with

[jQuery] Re: How can i set a number inside a h1 tag before the text starts?

2009-10-23 Thread bc04Inc.
Noone an idea how to solve that? Thank you On 22 Okt., 15:46, "bc04Inc." wrote: > So here is the function: > > >         (function($) { >   $.toc = function(tocList) { > >     $(tocList).addClass('jquery-toc'); >     var tocListArray = tocList.split(','); >     $.each(tocListArray, function(i,

[jQuery] Re: loading message shows up after page has loaded

2009-10-23 Thread sdtacoma
Hey JMan, CFFlush was my first attempt at doing this. It worked great, did exactly what I wanted it to do but it stopped my CFLocation tags from working (as documented). AJAX might be the way to go. I was hoping to roll this "loading..." message out system wide. Going the AJAX route would create

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread jayQuery
nice one! this was the missing thing in my logic, I thought it was just a simple call to a file, but I know now that that file has to be generated according to the query. thanks to all the replies!

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread MorningZ
I'm a .NET guy and don't know the syntax for PHP, but maybe I could put it in plain terms - variable "CallBackName" = value of "callback" (which jQuery will replace "?" with "jsonpNNN" where NN is a timestamp just to be random - variable MyResults is an object that is expressed in a JSON

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread Mike Alsup
> I thought it was that simple... > So I should generate my json via a server-language (like php) and echo > that callback as in the post you refered? > I'll try that and keep you posted. Yes. Something like:

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread jayQuery
I see what you mean... I thought it was that simple... So I should generate my json via a server-language (like php) and echo that callback as in the post you refered? I'll try that and keep you posted. On Oct 23, 3:22 pm, MorningZ wrote: > "the strange thing is that if I don't use jsonp (by us

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread MorningZ
"the strange thing is that if I don't use jsonp (by using the callback query), it works locally. But obviously won't work when in a cross domain environment. " It's not as easy as putting "callback=?" in the url.. you have to wrap the JSON you are generating in a function name so that jQuery can

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread jayQuery
didn't help... the strange thing is that if I don't use jsonp (by using the callback query), it works locally. But obviously won't work when in a cross domain environment. On Oct 23, 2:37 pm, MorningZ wrote: > See if this reply i made yesterday helps you out at all > > http://groups.google.com/

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread MorningZ
See if this reply i made yesterday helps you out at all http://groups.google.com/group/jquery-en/browse_thread/thread/1525b2d017246957?hl=en# On Oct 23, 9:23 am, jayQuery wrote: > thanks for the reply, but it gave me an invalid label with my json, > which as I've read before, can be "solved"

[jQuery] Event Bubbling

2009-10-23 Thread Jaggi
Hi, trying to organise some code on a large project i'm doing which changes alot of code around the page with submit forms. As jQuery doesn't have a live support for submit elements i thought i'd try my hand at event bubbling. It works nicely in firefox but isn't working at all in ie so i thought

[jQuery] Re: how to paste image into a web app

2009-10-23 Thread Jonathan Vanherpe (T & T NV)
Margie wrote: I have a web app (front end jquery, backend django) that allows users to type commens into a text area. My users are asking for the ability to cut and paste images into their comments. They want to use an windows app called mwsnap to basically snap images from their desktop, the

[jQuery] how to paste image into a web app

2009-10-23 Thread Margie
I have a web app (front end jquery, backend django) that allows users to type commens into a text area. My users are asking for the ability to cut and paste images into their comments. They want to use an windows app called mwsnap to basically snap images from their desktop, then ctrl-v to copy

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread jayQuery
thanks for the reply, but it gave me an invalid label with my json, which as I've read before, can be "solved" by eval'ing it with the parenthesis: var myObj = eval( "(" + someJsonString + ")" ); but after eval'ing, nothing happens (again), no alert :( In firebug I can see the json is there...

[jQuery] Re: $.Event is not a function js/jquery/ui.core.js Line 345

2009-10-23 Thread Richard D. Worth
How bout an old version of jQuery UI then? If you're using jQuery v1.3.2 make sure you're not using a jQuery UI version older than 1.7 - Richard On Thu, Oct 22, 2009 at 11:20 AM, Maxime FAYE wrote: > Nope : > > jQuery JavaScript Library v1.3.2 that's what the jQuery.js file says :) > > > 2009/1

[jQuery] Problems with Ajax and caching

2009-10-23 Thread Magnus O.
Hi! I'm creating a ajax call like this: jQuery.ajax({ url: "http://urltopage/?callback=callbackhandler";, dataType: "json", type: "GET", cache: true, callback: null, data: null }); I then have a callbackhandler function like this: function callbackhandler(data){ do something here } The respon

[jQuery] Re: cross domain getJSON nothing happens

2009-10-23 Thread Mike Alsup
> the json file named "myjson.json" (I've reduced its contents to its > minimum for testing purposes and it validates in JSONLint): > {"result": "true"} > > The javascript: > $.getJSON('http://site1:/myjson.json', {}, function(data) { alert > (data.result); }) > > I'm testing it in a local ser

[jQuery] Re: Swaping background image error only in IE7

2009-10-23 Thread Eyveneena
Excellent! Karl Swedberg-2 wrote: > > > Hi Mixen, > > Looks like the problem is that you've misplaced a semicolon. Note the > difference between this ... > $(this).css({'background-image':"url('ico/ico_shout_o.gif');"})} ); > and this... > $(this).css({'background-image':"url('ico/ico

[jQuery] Re: clockpicker plugin doesn't show

2009-10-23 Thread -null-
nvm, figured it out.

[jQuery] Re: Please help me..Its Urgent

2009-10-23 Thread sreehari ojili
why don't u include jquery.js in the project it self.. dowload from Jquery and include it in project. -Sreehari Ojili. On Fri, Oct 23, 2009 at 10:37 AM, jishnu123 wrote: > > > > > Hai friends, > >In my project i have implement jQuery using auto complete > and some other UI

[jQuery] Please help me..Its Urgent

2009-10-23 Thread jishnu123
Hai friends, In my project i have implement jQuery using auto complete and some other UI functionalists.But i am facing a big problem in our project ie, with out internet all jQuery functionalists cannot working..I had find out the exceptions Whenever accessing the jQue

[jQuery] Re: Secure login

2009-10-23 Thread David Cornish
Facing the same challenge, the best I could come up with was: * Client gets a (session-based) nonce from the web server * Password is combined with the nonce and then hashed * Using JSON-P, send the request by GET to the login script over HTTPS with username & the hash * Server checks the hash ma

[jQuery] clone and append elements across window in IE Bug

2009-10-23 Thread mike
I have a parent window. The parent window creates a child window. I then want to clone an element from the parent window, and then append the clone to the child window. I can get this to work in Firefox, but not in IE. I hear that IE has some restriction where you can't move elements across docu

[jQuery] cross domain getJSON nothing happens

2009-10-23 Thread jayQuery
hi all, I'm new to this group, and after doing a lot (and I mean a LOT) of searching, I can't find an answer for my problem: I'm basically trying to do a simple $.getJSON, and the setup is simple: Firefox 3.5 MacOSX, latest jQuery (1.3.2) the json file named "myjson.json" (I've reduced its con

[jQuery] Re: superfish xml again

2009-10-23 Thread n0yes
Tnx. I fixed the problem. It was superfish for older version of Joomla. I posted my question here 'cause there is a referral at superfish page. I quote: "Support for the Superfish plugin is available through the jQuery Mailing List. Post a message to it with the word “Superfish” somewhere in the

[jQuery] Re: jquery.com plugin directory

2009-10-23 Thread Richard D. Worth
Good news. See http://ralphwhitbeck.com/2009/09/16/jQueryConference2009Summary.aspx "So what was announced at jQuery Conference regarding the jQuery project? ... 3. Announced a revamped and simplified plugin repository. This is jQuery teams number one priority and is targeted to for release by en

[jQuery] Re: Synthax problem

2009-10-23 Thread Richard D. Worth
You can set the $.ajax option async to false. See http://docs.jquery.com/Ajax/jQuery.ajax#options but note the warning: "By default, all requests are sent asynchronous (i.e. this is set to true by default). If you need synchronous requests, set this option to false. Note that synchronous request

[jQuery] Re: toggleClass with Duration

2009-10-23 Thread Richard D. Worth
On Fri, Oct 23, 2009 at 12:02 AM, TH Lim wrote: > > Hi, > > I used toggleClass method to toggle the colors of my message when the > user clicks a button. toggleClass() worked well if I didn't specify > any duration i.e. instanteous switch from white background to red > background. The problem ari

[jQuery] Re: Update element when changes

2009-10-23 Thread jchambers
This will work. $("input[type='text']:order").keyup( function() { var v = $(this).val().replace(/\D/g,''); // removes non numbers $('#total_buyed').val( v * 2.75 ); }); Good luck, Jon

[jQuery] Re: slow performance on this site - any suggestions?

2009-10-23 Thread Satyakaran
I used the slide slow and found that a block is coming and disappearing on left-bottom side. you should try to stop them coming completely. Google's Page-speed is very easy to use tool for website performance. Give it a chance. -- http://www.satya-weblog.com On Oct 22, 7:54 pm, FranktheTank wro

[jQuery] Re: Inline Datepicker Help

2009-10-23 Thread Keith
1) Within the onSelect function, 'this' refers to the input field. So you can find the field's position using standard jQuery: $(this).offset (). Then place your popup of events accordingly. 2) You can use the beforeShowDay setting to highlight dates. This is a function that takes a date and retu

[jQuery] Re: find the row nuber clicked of the item list

2009-10-23 Thread frank
Thanks a lot! This is what I was looking for On Oct 23, 12:14 am, MorningZ wrote: > Check out ".index()": > > http://docs.jquery.com/Core/index > > the example is just like what you want, except they are 's > > On Oct 22, 4:21 pm, frank wrote: > > > Hello I'm just a starter and I'm looking fo