[jQuery] Re: Problem with reloading AJAX content (Flowplayer) in jqModal window

2008-12-28 Thread Agile Consulting
check1

[jQuery] Re: Problem with reloading AJAX content (Flowplayer) in jqModal window

2008-12-28 Thread Agile Consulting
check1

[jQuery] Re: How do I cache

2008-12-28 Thread bob
Temporary Internet Files and Proxies(Public caching)

[jQuery] Hiding a div with content loaded via .load function

2008-12-28 Thread amnesia440
Hello. I am trying to load a login form into the #login_pop_box div via the .load function: $('#login_pop_box').hide(); $('a#login_pop_box_on').click(function() { $('#login_pop_box').load('ajax/login_global'); $('#login_pop_box').fadeIn('400');

[jQuery] Why isn't the name attr in this code incrementing?

2008-12-28 Thread Rick Faircloth
Hi, all... I'm cloning a section of code to create additional image inputs in a form, along with a yes/no select field. When the cloning occurs, I also need to increment the field names of the select statement (main-photo-1, main-photo-2, etc.), and the file input field (image-upload-1, image-up

[jQuery] Re: applying css style to past dates

2008-12-28 Thread Dave Methvin
>    if(parse(this.value) < Date.getTime()) { I think you probably meant (new Date).getTime(). Also, do you have a parse() function elsewhere, or did you mean Date.parse()? In most cases you will want to do more validation than Date.parse provides.

[jQuery] Re: Using jQuery to access jSON object

2008-12-28 Thread yerfdoggy
Thank you for a very clear reply. I'm stuck doing other work today, but I will modify my code as you suggest asap. Yerfdoggy Michael Geary-3 wrote: > > > You're trying to use the return value from $.getJSON, but that is not > where > your data is returned. $.getJSON is asynchronous. That is,

[jQuery] bind add hash to url to an existing function

2008-12-28 Thread John Przepadlo
Hey, I am a designer who is redesigning my portfolio and incorporating some jQuery on the new site. I have a function that acts to filter some items on a page. I would like to also be able to link into the page and have it already filter the results. Here is the page: http://www.jlanedesign.com/d

[jQuery] Re: How do I cache

2008-12-28 Thread ajtricha...@googlemail.com
Are you looking in Temporary Internet Files? On Dec 28, 5:18 am, bob wrote: > I would like to have a registration form cached for 1 year public and > private. > How do i go about it. > Thats what I tried and register.html was not cached. > > jq.ajax({ >                 type: "POST", >         ur

[jQuery] Re: applying css style to past dates

2008-12-28 Thread Karl Rudd
I suggest adding a class rather than specifically changing the style. It keeps the presentation (CSS/styling) nicely separate from the JavaScript and makes both much easier to deal with. So the JavaScript would be something like (note I changed round the selector to ":text.date", more efficient t

[jQuery] applying css style to past dates

2008-12-28 Thread Matt
Hi, I'm trying to make text red when a date in an input field occurs in the past. However, it isn't working when I try it out.. I'm new to JQuery, so i'm not sure what i'm doing wrong.. $(document).ready(function(){ $(".date:text").each(function (i) {

[jQuery] Re: Disabling behaviour definded in html

2008-12-28 Thread Ricardo Tomasi
That doesn't work. You need to empty the html attribute: $('#text').attr('onkeyup','') If you need to recover that behavior later, save it with the data() function: (verbose example) $.fn.disableBehavior = function(event){ return this.each(function(){ var t = $(this); if (!t.data(ev

[jQuery] Re: Find all parent LI without UL > LI elements inside this by using JQuery

2008-12-28 Thread Ricardo Tomasi
You mean filter the LI elements which do not contain another UL? Showing us your HTML would help. $('#leftTabs > li') maybe? On Dec 27, 9:09 am, Peterkr wrote: > I trying to filter parent LI elements expect their child UL LI element. > > How can I do this? > > I am using : this code : $("#lef

[jQuery] Re: window.opener

2008-12-28 Thread Ricardo Tomasi
$('#krajina', window.opener.document).val(krajina1); That really can't get any simpler. On Dec 27, 5:01 pm, MiniSoft wrote: > hi > pls can you add to jquery script 'window.opener'?? or write pls true > tag for it :-) > > I´ve got these script > > window.opener.id("krajina").value = krajina1 >

[jQuery] Re: Please help with navigation script

2008-12-28 Thread Alexandre Plennevaux
hi pranshu, it's hard to tell exactly, you could optimize a bit more your code, and use variable caching for example. In this regard, I find this post to be really helpful: http://www.tvidesign.co.uk/blog/improve-your-jquery-25-excellent-tips.aspx anyway, does the problem occur if you comment ou

[jQuery] Re: Undocumented move/copy behavior of append() et al.

2008-12-28 Thread Dave Methvin
Here's what I came up with, does it make sense? -- Content Most jQuery methods that accept "content" will accept one or more arguments of any of the following: * A DOM node element; * An array of DOM node elements; * A jQuery object; * A string representing HTML. Example: $("#

[jQuery] Re: Please help with navigation script

2008-12-28 Thread precar
Still stuck on this...would really appreciate someone's help. Thanks, Pranshu. On Dec 27, 11:56 am, precar wrote: > Hi, > > I cleaned up the code a bit and wanted to repost it.  The site is > athttp://pranshuarya.com/test/pthesis/.  Once again, the specific > problem is this: > When you clic

[jQuery] Re: Using jQuery to access jSON object

2008-12-28 Thread Michael Geary
You're trying to use the return value from $.getJSON, but that is not where your data is returned. $.getJSON is asynchronous. That is, it returns immediately as soon as the request is sent to the server (or even before that). The return value from $.getJSON (for a same-site request, not a cross-do

[jQuery] Re: Refactoring problem with jquery-selectors

2008-12-28 Thread j0llyr0g3r
Hui, fast reply.:-) I did as you proposed and it works fine now. Special thanks for the explanation! On 28 Dez., 22:26, "Michael Geary" wrote: > The problem is the first line in your clickOnTableRowResultSet() function: > >         var row = jQuery(this); > > When you were using that func

[jQuery] UI Colorpicker plugin doesn't work with IE

2008-12-28 Thread Samuel Santos
I've been trying to get the UI Colorpicker plugin working, but it has been tricky because the documentation and CSS styles are either missing or pretty buggy. I've got a working example http://samaxes.appspot.com/zip/ colorpicker.zip">here. My example works correctly with almost all the browsers

[jQuery] Re: Problems with show() and submit button

2008-12-28 Thread Stephen
Figured this out myself, though I'm open to suggestions for a better workaround. It's actually not the show() that's causing the problem; it's the hide() that's called on the blur event. Details. 1. User clicks on input field. 2. livequery captures the focus event for that field and reveals the h

[jQuery] Re: variable scope bug in Firefox only?

2008-12-28 Thread Michael Geary
There must be something else going on with your code other than the snippet you've posted here. It's hard to believe that a local variable would not work properly in Firefox. If you could post a link to a complete test page, I'll bet someone could tell you what is going wrong. -Mike > From: Lia

[jQuery] Re: Refactoring problem with jquery-selectors

2008-12-28 Thread Michael Geary
The problem is the first line in your clickOnTableRowResultSet() function: var row = jQuery(this); When you were using that function directly as a click handler, 'this' was set to the element being clicked. But now you are calling the function through an ordinary function call, so 'this'

[jQuery] Refactoring problem with jquery-selectors

2008-12-28 Thread j0llyr0g3r
Hey guys, i am having problems with some refactoring: I have some html-tables to which i add an onclick-handler like this: CODE: addClickHandler('myTableID',myFunction); 'addClickHandler' looks like this: CODE: function addClickHandler(tableId, functionName) { jQuery('#' + tableId + '

[jQuery] animate() syntax question

2008-12-28 Thread pixeline
hi friends, i've had this question lying for so long in the bottom of my mind, i thought i should finally clear it up: I'm using a lot the animate() function, using a callback, and no easing parameter. Such as: $('div').animate({width: 400},'fast', function(){ $(this).addClass('visib

[jQuery] Re: Disabling behaviour definded in html

2008-12-28 Thread sad1sm0
I would imagine you should just be able to unbind the onkeyup event with .unbind() example $("#text").unbind('onkeyup'); from there you can attach your own event handlers

[jQuery] Re: Malsup Media Plugin: hoping to click ul/li and have NEW video start and old stop - PLUS FLV-player.net tests

2008-12-28 Thread yvonney
There is a nice long list of parameters: http://flv-player.net/players/maxi/documentation/ I am going to try some new ideas for getting video to play. I think it is because one of the parameters must call the actual video and when in the script part of media plugin code causes problem. I will try

[jQuery] variable scope bug in Firefox only?

2008-12-28 Thread Liam Morley
I'm experiencing an issue in Firefox 3 where, if a variable is declared locally, it doesn't return expected results. I've tried the same thing in IE7 and Chrome, I don't experience the bug in those browsers. My particular example is as follows: var children = $("ul.cat_container > li.column:not(

[jQuery] Transition Effects without click event using jquery.

2008-12-28 Thread Zam
Hi Jquery, Jquery is very great job.i refered this page http://malsup.com/jquery/cycle/ really its very amazing... I used the jquery for fade effect in DotNetNuke. i need to use different effects(for example: dissolve, blur, circle, rectangle effects,etc.,) in my DotNetNuke modules. How to

[jQuery] window.opener

2008-12-28 Thread MiniSoft
hi pls can you add to jquery script 'window.opener'?? or write pls true tag for it :-) I´ve got these script window.opener.id("krajina").value = krajina1 & i want to have easier script for ex. $("opener.#krajina").val = krajina1 :-)

[jQuery] [autocomplete] Pressing Enter submits the form. Please Help

2008-12-28 Thread Olaf
Hi, thanks for the great plugin! I'm having some problems here on Firefox 3 and Safari: When adding autocomplete to a field everything works fine, except that the form gets submitted when I select a entry from the list and press Enter. If I put a onsubmit = "return false;" in my form, nothing hap

[jQuery] Re: jeditable & autocomplete - time to revisit?

2008-12-28 Thread Diogo Merovingio
I still with problems. When the "onblur" submit the form, the autocomplete didn't finish yet. The consequence is that when I select something from autocomplete and press tab the string submitted was only part of what I wrote (ex.: I write "fran", the autocomplete suggest "France", if I select or p

[jQuery] I customized jQuery for OpenSocial Gadgets. It was named, "opensocial-jquery".

2008-12-28 Thread developmentor
Hello, I customized jQuery for OpenSocial Gadgets. It was named, "opensocial-jquery". opensocial-jquery is jQuery based concise JavaScript Library for rapid OpenSocial Gadgets development. When you use opensocial-jquery, you can develop OpenSocial Gadgets by the method of developing the website

[jQuery] Re: Problem with reloading AJAX content (Flowplayer) in jqModal window

2008-12-28 Thread Agile Consulting
hello Im Rajnikant On Dec 20, 11:28 am, jefffederman wrote: > Hi, > > I'm a relative newcomer to jQuery (and Javascript in general), and I'm > having a problem with content loaded viaAJAXthat I gather is related > to event delegation/rebinding. > > I'm using jqModal to populate a modal window wi

[jQuery] Re: Problem with reloading AJAX content (Flowplayer) in jqModal window

2008-12-28 Thread Agile Consulting
check1

[jQuery] jcarousel

2008-12-28 Thread xxMatiasxx
Hi, how could i make it to have a .remove() on the visible items ? Because .remove() won't work with visible items, i tried doing it anyway and then the carousel gets mad because it creates a placeholder It is very important for me please

[jQuery] livequery matchedFn scope?

2008-12-28 Thread Stephen
Sorry to bother folks with what is probably a silly question, but I can't quite figure out the scope for livequery matched functions. For example, if I have the following: $("#id:not(.inactive)").livequery(function() {alert(this);}) Then the alert shows to be the matched selector, which is what

[jQuery] browser issue

2008-12-28 Thread Zam
hi, i am using asp.net with c# codebehind in dotnetnuke. i created my own module with image effects using jquery. Explanation: i just get the value of width and height from enduser for uploaded images. It works fine. but one issue will occured. how to solve this issue? when i refresh the p

[jQuery] Problems with show() and submit button

2008-12-28 Thread Stephen
I've been stumped on this one long enough that it's time for someone to show me the obvious. I have a form where each element is a table row. Interspersed between the rows with actual elements are rows with help information for the element above them. When the focus is on an element, I want to sho

[jQuery] jCarousel

2008-12-28 Thread maddy
Hi thanks Torstein for your reply on my personal Mail ID regarding using Hi-slide along side jCarousel , what i would like to know is a) jCarousel displays only three images in the scroll can i increase it to to say five b) when i use Hi-slide as my default gallery viewer will all the functions o

[jQuery] Re: Problem with reloading AJAX content (Flowplayer) in jqModal window

2008-12-28 Thread Agile Consulting
hi On Dec 20, 11:28 am, jefffederman wrote: > Hi, > > I'm a relative newcomer to jQuery (and Javascript in general), and I'm > having a problem with content loaded viaAJAXthat I gather is related > to event delegation/rebinding. > > I'm using jqModal to populate a modal window with html content

[jQuery] Using jQuery to access jSON object

2008-12-28 Thread yerfdoggy
I'm a jQuery/jSON newby. I'm using jQuery getJSON() to do an AJAX request on a separate PHP script, then I want to use the returned jSON object data to update some form fields. I'm sure this is very basic and common, but I've been reading doco. for days and can't get it to work. Here's the local

[jQuery] Disabling behaviour definded in html

2008-12-28 Thread Piotr Jakubowski
Hi, I do not have a huge experience with jquery and therefore my question may seem a little bit childlish for you :). Nevertheless I have spend so much time trying to find the solution that you are my last hope. The problem is that I have the html element - let's say textfied with specified onke

[jQuery] add jquery.validade function ShowToolTips

2008-12-28 Thread Paulo Eugênio
demo http://www.aemundo.com.br/jquery/validade/demo.html Brazil, Manaus, Amazonas.

[jQuery] Problems with show() and submit button

2008-12-28 Thread Stephen
I've been stumped on this one long enough that it's time for someone to show me the obvious. I have a form where each element is a table row. Interspersed between the rows with actual elements are rows with help information for the element above them. When the focus is on an element, I want to sho

[jQuery] Find all parent LI without UL > LI elements inside this by using JQuery

2008-12-28 Thread Peterkr
I trying to filter parent LI elements expect their child UL LI element. How can I do this? I am using : this code : $("#leftTabs li").not('ul li') please help! thanks Peter -- View this message in context: http://www.nabble.com/Find-all-parent-LI-without-UL-%3E-LI-elements-inside-this-by-us

[jQuery] history plugin and iexplorer

2008-12-28 Thread Filipe Avila
hello jquery folks! does anybody use the following plugin: http://www.mikage.to/jquery/jquery_history.html ? well, i'm having a problem using this plugin, but only on internet explorer. for example, if there are links within the content loaded through ajax, they won't work on iexplorer. they work

[jQuery] add jquery.validade function ShowToolTips

2008-12-28 Thread Paulo Eugênio
demo http://www.aemundo.com.br/jquery/validade/demo.html

[jQuery] Form Plugin with file upload

2008-12-28 Thread BogusRed
I am working on an ajax app that uses jquery's form plugin and it works just fine until I add a file upload input into my form: If I take these input fields out, my form works fine and submits and saves no problem. But once I added these parts to my form html, the jquery form plugin hiccups. I

[jQuery] [tooltip] - Hover over tooltip so you can add a link

2008-12-28 Thread kenitech
This is an easy way to hack Jorn's tooltip so you may hover over the tooltip and click on a link: http://www.artworknotavailable.com/2008/12/27/jorn-zaefferers-tooltip-hacks/ hack of: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/

[jQuery] Re: Code not working in IE but is working in FF

2008-12-28 Thread Alexandre Plennevaux
can u show your updated code ? On Sun, Dec 28, 2008 at 4:02 PM, Althalos wrote: > > Srry for my first reply to this message. It DOES work if one remove > the anonymity. One has also to remove ( function ) () in favor of an > initiating functionname() instead =) > > On 28 Dec, 10:32, "Alexandre P

[jQuery] Re: Code not working in IE but is working in FF

2008-12-28 Thread Althalos
Srry for my first reply to this message. It DOES work if one remove the anonymity. One has also to remove ( function ) () in favor of an initiating functionname() instead =) On 28 Dec, 10:32, "Alexandre Plennevaux" wrote: >  Maybe try a named function instead of an anonymous one ? so avoiding >

[jQuery] Re: I wrote a YUI Multi FIle Compression Utility

2008-12-28 Thread K-BL
Fixed & updated on website. Thanks for the input. On Dec 24, 9:49 am, MorningZ wrote: > There is one dumb little bug i discovered > > When one uses the "Browse" buttons to find the Compile and Output > paths, your code doesn't put the trailing "\" > > So while my "Output Path" sits in the progr

[jQuery] Re: Code not working in IE but is working in FF

2008-12-28 Thread Althalos
Nope. I tried that but I still got the same result, works in FF but not in IE =( On 28 Dec, 10:32, "Alexandre Plennevaux" wrote: >  Maybe try a named function instead of an anonymous one ? so avoiding > arguments.callee by using your function name instead? > > On Sun, Dec 28, 2008 at 2:03 AM, Al

[jQuery] Re: Superfish menu stays under floating element

2008-12-28 Thread Raghu
Hi, I also have this issue. Could you figured out solution for this problem? Thanks Raghu On Mon, Nov 17, 2008 at 10:44 PM, Uwe C. Schroeder wrote: > > > Hi, > > I've been googling and trying things, but I don't seem to find anything > tangible. > I'm using the latest version of superfish with

[jQuery] Treeview expand on link clobbered by page load

2008-12-28 Thread walkinthere
I want to expand for a click on a link (>a), not just the little + icon. I tried modifying this this.filter(":has(>ul)").find(">a,>span").unbind("click.treeview").bind ("click.treeview", function(event) { to this.filter(":has(>ul):not(:has(>a))").find(">span").unbind ("click.treeview").bind("cli

[jQuery] Re: .ajaxSend fires six times

2008-12-28 Thread Lay András
Hello! On Sun, Dec 28, 2008 at 5:42 AM, Daniel wrote: > should be $(document).ajaxSend(function(){...}) It's works, the callback fires only once. Thank you! Lay

[jQuery] Re: writting plugin

2008-12-28 Thread Saledan
up, please! bye max On 26 Dic, 12:19, Saledan wrote: > Hi, > i'm trying to write a jQuery plugin, i have read some posts, documents > and other plugin code, but i don't understand the right standard to > write a plugin. > I found some patterns... > > == example 1== > (function($) { >   $.fn.myP

[jQuery] Re: HttpHandler not returning JSON data

2008-12-28 Thread MorningZ
Want to make life MUCH easier than all those IE-specific hacks? Check out Json.NET http://james.newtonking.com/pages/json-net.aspx On Dec 28, 1:15 am, JQueryProgrammer wrote: > I got the solution to this. Actually this code was working in Firefox > and not in IE. When I tried to run in IE,

[jQuery] Malsup Media Plugin: hoping to click ul/li and have NEW video start and old stop - PLUS FLV-player.net tests

2008-12-28 Thread yvonney
FULL SUBJECT from above: Malsup Media Plugin: hoping to click ul/li and have NEW video start and old stop - PLUS FLV-player.net tests Hi... should be asleep though this is the last thing I need to figure out.. and it's really been a JQuery december... 100's and 100's of hours... hehehe, you k

[jQuery] Re: Code not working in IE but is working in FF

2008-12-28 Thread Alexandre Plennevaux
Maybe try a named function instead of an anonymous one ? so avoiding arguments.callee by using your function name instead? On Sun, Dec 28, 2008 at 2:03 AM, Althalos wrote: > > Nope, I'm sorry but that doesn't seem to work. Note that setting > opacity to zero works in both browsers. > > On 28