[jQuery] Re: return value of nested functions is always undefined

2009-06-23 Thread anawak82
Hi Rob, thank you for your quick reply! Add a return statement to getPrice, maybe something like: function getPrice(id) { return $.get('db.xml', function(d){ ... }); I am sorry to say that this only return a XMLHttpRequest but not the value of the variable price. Kind

[jQuery] Is there any possibility to get Light window option Using Jquery functions , Autocomplete hints from database

2009-06-23 Thread anjith
Hai, I am New to Jquery When i click a hyperlink(anchor tag) I need to display a php page in light window. Autocomplete or Auto-suggest similar to googlesuggest In google.comI heard we can do this using Jquery Thanks and Regards, Anjith

[jQuery] Re: PDF + Jquery + thickbox is not suppoting to Mozilla

2009-06-23 Thread bharathbhooshan ambati
any solution for this issue?? On Mon, Jun 22, 2009 at 5:30 PM, bharathbhooshan ambati bharathbhooshan.amb...@gmail.com wrote: Yeah you are right... when i used iframes in IE it worked fine(when i clicked a link the pdf will be popup)... where as in mozilla,i am facing the problem of

[jQuery] Handling metadata in current version

2009-06-23 Thread Steve Hueners
I'm looking at: http://docs.jquery.com/Plugins/Metadata and see that the plugin has not had any activity since late 07. Just getting started with jQ and am interested in understanding compatibility-related issues before diving into the tasks this plugin provides. or alternatives.thx

[jQuery] Re: crazy if... !not working.

2009-06-23 Thread Liam Potter
wouldn't it make more sense to do this $(function(){ $(a.thumb).fancybox(); }); umcosta wrote: Ok, here is what I want to do (extracted from: http://docs.jquery.com/Traversing/hasClass): script src=http://code.jquery.com/jquery-latest.js;/script script $(document).ready(function(){

[jQuery] Re: crazy if... !not working.

2009-06-23 Thread Liam Potter
nevermind, seen you already got this Liam Potter wrote: wouldn't it make more sense to do this $(function(){ $(a.thumb).fancybox(); }); umcosta wrote: Ok, here is what I want to do (extracted from: http://docs.jquery.com/Traversing/hasClass): script

[jQuery] Re: Is there any possibility to get Light window option Using Jquery functions , Autocomplete hints from database

2009-06-23 Thread Liam Potter
Check out the fancybox plugin and an autocomplete plugin Fancybox - http://fancy.klade.lv/ Autocomplete - http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ anjith wrote: Hai, I am New to Jquery When i click a hyperlink(anchor tag) I need to display a php page in light

[jQuery] calling ajax function from php file

2009-06-23 Thread naz
i m using jquery 1.3.2 .and i want to call a function define in ajax file.form php file please tell me how can i do that . thnx in anticipation i need reply as soon as possible

[jQuery] Re: calling ajax function from php file

2009-06-23 Thread Liam Potter
You don't call php functions on the client side. You just need to pass data on to it, and have the php manipulate in the way you want. naz wrote: i m using jquery 1.3.2 .and i want to call a function define in ajax file.form php file please tell me how can i do that . thnx in anticipation i

[jQuery] creating a visual frame using jquery

2009-06-23 Thread Peter Marino
Hi jQuery, i'm trying to create a visual frame. My attempt can be seen here: http://www.medlemmer.net/test/test_panel_basics.php I use jQuery to resize the left and right div to the correct height, I can see the result is correct. my question is why do I get gaps at the bottom... it seems to

[jQuery] Re: jQuery in an eBay auction template? Is it possible?

2009-06-23 Thread Ricardo
The error message says it all: for security reasons, your listing *cannot* contain javascript. On Jun 22, 1:01 pm, eepeterson eepeter...@gmail.com wrote: Ok, let me start by saying I'm not a great programmer. I can do well with HTML CSS but don't know a ton about js jQuery. Anyway, I'd

[jQuery] Re: Array to JSON?

2009-06-23 Thread Ricardo
I know, I meant it won't handle actual arrays like [1,2,3]. Wasn't needed at the time, probably not too difficult to implement. On Jun 22, 9:24 pm, Josh Powell seas...@gmail.com wrote: That's okay, javascript doesn't have associative arrays, only arrays with object properties. On Jun 22,

[jQuery] Redirect to another page on selected option value

2009-06-23 Thread ciupaz
Hi all, having a select option: select id=NewUser name=NewUser option value=0---Insert New User---/option option value=1Mark/option option value=2Ted/option /select on the click of the input=Submit, if is selected Insert New User, how can I redirect the user to another page (.aspx,

[jQuery] Drop Shadows!!!

2009-06-23 Thread Erik R. Peterson
Hi everyone.. Is the jquery drop shadow worth using? Can anyone direct me ofr the quickest solution. many thanks Erik

[jQuery] Re: Best web app automation testing tool?

2009-06-23 Thread swathi
Hi sara, http://www.sdtcorp.com/ Go through This site Where u can Find KeywordDriven Automation Tool Called UTP(UnifiedtestPro). This Tool will be Answer All Ur Above mentioned Requirements. Feel free to ask If u need any assistance or mail me to swathi...@gmail.com regards swathimnn On Jun

[jQuery] Re: Array to JSON?

2009-06-23 Thread cs
Why not make each field that has a nested key-value pair an object instead? In short, any array with a key but without a value is an object since your value is just an array of elements. What language is in charge of your back-end? And how is it handling the inputs your pass it? This is what

[jQuery] Looking for jQuery experts for Open-Source Social Annotation platform

2009-06-23 Thread David Nolen
Hello all, I work on an open source social meta-web and annotation tool called ShiftSpace (http://www.shiftspace.org, http://github.com/ShiftSpace/shiftspace/tree/master). The ShiftSpace platform is primarily written in MooTools, however with the release of MooTools 1.2.3, it is now possible

[jQuery] peculiar behaviour of clone

2009-06-23 Thread brown.33
Hi, I am new to jquery. I used clone for both prepend and prependTo. For prependTo, it is working fine. But if we apply prepend for $j(#begin_947).clone().prepend($j ('#end_947')), it is deleting the entire end_947 element. Can somebody explain me, why it is happening like this. Thanks in

[jQuery] jquery cookie plugin

2009-06-23 Thread juxprose
Hello This function works with the jquery cookie plugin (http://plugins.jquery.com/project/cookie) and code from here (http://www.komodomedia.com/blog/2008/07/using-jquery-to-save-form-details/) script type=text/javascript $(document).ready(function(){ remember('[name=field_name]'); });

[jQuery] Re: Redirect to another page on selected option value

2009-06-23 Thread Liam Potter
$(select#NewUser).change(function(){ if ($(this).val() == 0) { window.location.href = http://www.url-to-form.com } }); ciupaz wrote: Hi all, having a select option: select id=NewUser name=NewUser option value=0---Insert New User---/option option value=1Mark/option

[jQuery] jQuery in an eBay auction template? Is it possible?

2009-06-23 Thread eepeterson
Ok, let me start by saying I'm not a great programmer. I can do well with HTML CSS but don't know a ton about js jQuery. Anyway, I'd like to include some jQuery in the form of a gallery of images in my eBay auction. However the problem I run into is that when I paste the completed code into

[jQuery] Re: jQuery in an eBay auction template? Is it possible?

2009-06-23 Thread eepeterson
That's not the message I saw. Also you can definitely use some forms of javascript on eBay. See this: http://pages.ebay.com/help/policies/listing-javascript.html So I guess what I'm really asking is if it is possible to modify or use part of the jQuery script to meet eBay's terms on javascript.

[jQuery] Re: creating a visual frame using jquery

2009-06-23 Thread Peter Marino
Hi, I would really like to do as you mention... I have my forms using rounded corners from jquery and it's super cool but these panels I create have shadows on them too... haven't see any plugin to do that yet with rounded corners and captions. I have searched the net for solutions and tried

[jQuery] Re: creating a visual frame using jquery

2009-06-23 Thread Charlie
you can accompish this 4 corner box with far less markup, standard css with no script there's lots of css tutorials on this topic. I'm all for using jquery to add creative solutions but sometimes using a bulldozer when all that is needed is a shovel is overkill for example, wrap your

[jQuery] Thanks to all jQuery developers

2009-06-23 Thread fredriley
I don't know if this is said often enough as I'm a relative newbie to jQuery, but I'd just like to say a big THANK YOU!! to all those involved in the jQuery project - developers, documentation writers, contributors to this group, and anyone else I've forgotten. Whilst, for me at least, jQuery was

[jQuery] Re: Jquery Sound

2009-06-23 Thread Paul Hutson
On Apr 29, 4:47 pm, Evan e...@nthdegree-designs.com wrote: On Mar 13, 3:06 pm, Paul Hutson hutsonphu...@googlemail.com wrote: Hello, I've been trying to get the following working : http://dev.jquery.com/view/trunk/plugins/sound/ However, it only plays about a second to three

[jQuery] slide a div open and closed

2009-06-23 Thread webguy262
I need to create and effect just like what happens when you mouse over the Check Availability link on this site: http://www.claridges.co.uk/ I have downloaded this simple show/hide example: http://docs.jquery.com/UI/Effects/Slide#overview I need help, tho, with how to configure things so the

[jQuery] JSP Calling Crystal Report Having Stored Procedure

2009-06-23 Thread RUQUIA TABASSUM
Hi i am calling a crystal report from jsp where the crystal report is designed using stored procedure but the report does not get displayed and shows errors my jsp file is Code: %@ page import=com.crystaldecisions.report.web.viewer.* % %@ page import=com.crystaldecisions.sdk.occa.report.data.* %

[jQuery] load

2009-06-23 Thread Levi
Hi, I'm using this function $(document).ready(function() { $('#menu a').click(function() { $('#conteudo').load( $(this).attr('rel') ); return false; }); }); div id=menu lia href=# rel=user.phpClientes/a/li /div div id=conteudo/div for load in

[jQuery] How to make jQuery work in IE 5.5

2009-06-23 Thread pHoEniX
Hi. Recently I had to make a project in IE 5.5 too. IE 5.5 throw almost instantly error. I have downloaded the developer version and try to figure out what could cause the errors. By commenting out line 2167: div.appendChild( document.createComment() ); and removing select/select from line 3122

[jQuery] Re: Using embedding youtube videos

2009-06-23 Thread Jonathan Vanherpe (T T NV)
onearmfrog wrote: Hello. I've been trying to add embedded youtube videos to the carousel but so far without success. The videos are all over the screen, even when I wrap them in div. Has anyone ever done this and could help me? (or maybe it can't be done? Thanks! Do you have a link, or a

[jQuery] Using embedding youtube videos

2009-06-23 Thread onearmfrog
Hello. I've been trying to add embedded youtube videos to the carousel but so far without success. The videos are all over the screen, even when I wrap them in div. Has anyone ever done this and could help me? (or maybe it can't be done? Thanks!

[jQuery] Re: Determine if autocomplete returns an empty list and number of records returned

2009-06-23 Thread JohnT
Hi. Sorry, but I am not getting this flicker effect. Actually, I don't think this method is such a good idea anymore because you'd be forking the original source code. Now, I am simply returning a JSON record that indicates that there are 0 records and this works better for me. John On Jun 22,

[jQuery] Re: load

2009-06-23 Thread Paul Hutson
Ensure you've included the Jquery package at the top of the page.

[jQuery] Re: creating a visual frame using jquery

2009-06-23 Thread Liam Potter
3 images 1) the top bar, 2) the full width of the panel (including shadow) 3) bottom corners 3 divs div id=top/div div id=content content here /div div id=bottom/div each div would have the same width and height as the image you made for it and apply as background The content will need

[jQuery] Re: return value of nested functions is always undefined

2009-06-23 Thread RobG
On Jun 23, 4:31 pm, anawak82 anawa...@googlemail.com wrote: Hi Rob, thank you for your quick reply! Add a return statement to getPrice, maybe something like:   function getPrice(id) {     return $.get('db.xml', function(d){       ...     }); I am sorry to say that this only

[jQuery] Re: slide a div open and closed

2009-06-23 Thread Mauricio (Maujor) Samy Silva
I've hosted a live example for the effect at: http://jsbin.com/irera/ Edit it at: http://jsbin.com/irera/edit Maurício -Mensagem Original- De: webguy262 Para: jquery-en@googlegroups.com Enviada em: terça-feira, 23 de junho de 2009 09:37 Assunto: [jQuery] slide a div open

[jQuery] Re: jQuery Tooltip Plug-in 1.3 Update

2009-06-23 Thread funomat
You need to use a newer dimensions version. http://plugins.jquery.com/project/dimensions Tiago On 24 Mai, 05:49, kiusau kiu...@mac.com wrote: I have recently noticed that version 1.3 of the jQueryTooltipPlug-in does not work with jQuery's version 1.3.2.  Is there a patch available?  Is

[jQuery] Ajax tooltips using jQuery?

2009-06-23 Thread Nick Drew
Hi guys, I'm after an ajax tooltip to use with jQuery. For some reason, every one I find is either mootools or Prototype which without hacking around, don't seem to work alongside jQuery. Any recommendations, or maybe a script I could use that I haven't already found? Thanks

[jQuery] Carousel with external controls problem

2009-06-23 Thread Jason Pang
Well, I managed to put 2 Carousel with external controls together on a page. Now, I'm facing another problem, that's the external controls. The controls, I can't change the numbers to something else (name of the picture). You can check out what I mean here: http://jasonpang.com/test/test4.html

[jQuery] Re: load

2009-06-23 Thread khaled abbad
ensure what is the jQuery version that you use.

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-23 Thread Etienne Robillard
I retried and it's still grokking loudly: http://gthc.org/tm_api-2.0/demo.html the most irritating part is: [e] message = [string] s.xhr is not a function Exception ``TypeError: s.xhr is not a function'' thrown from function anonymous(event=Object:{38}) in

[jQuery] select all values of a multiple select list

2009-06-23 Thread shaded
is there a way to select all values of a multiple select list by default?

[jQuery] Re: creating a visual frame using jquery

2009-06-23 Thread Peter Marino
Hi Liam, your method isn't flexible enough, thanks for trying peter On Tue, Jun 23, 2009 at 4:04 PM, Liam Potter radioactiv...@gmail.comwrote: 3 images 1) the top bar, 2) the full width of the panel (including shadow) 3) bottom corners 3 divs div id=top/div div id=content content

[jQuery] Re: what is wrong with this simple load data codes

2009-06-23 Thread Steven Yang
i am not sure whether getir.asp?Process=UPSWEIGHT=1PostalCode=90012Country=us equals to getir.asp?Process=UPSWEIGHT=1POSTALCODE=90012COUNTRY=us maybe check that

[jQuery] Re: trigger validation by input:button

2009-06-23 Thread Pascal
I am new to Jquery and Validate and have similar issue, as anyone got a solution? On Jun 12, 7:58 am, Matt sean...@gmail.com wrote: Hi, I have been working on a big form and using jquery plug-in (wizard form) to divide tit into small subforms. Now, I am trying to integrate the Validation

[jQuery] Re: Trigger jquery event on ajax loaded content

2009-06-23 Thread Scott Sauyet
Steve the Canuck wrote: How do I get this code to run once I've made the Ajax call? All the Ajax calls have callbacks in them. Just check the documentation for the one you are using. -- Scott

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-23 Thread tarave
As I mentioned in my earlier post I have the same problem with autocomplete. The fix/workaround that I added to my page was to add a validation that is executed just prior to the page submit. The validation takes the typed in value and queries my data source to verify the typed in value exists.

[jQuery] XML manipulation

2009-06-23 Thread bigb
I'm having some real difficulty figuring out how to manipulate xml data with jquery. Here is my situation. I have a hidden TextArea that contains xml data, something like this: items item value='1' text='x'/item item value='2' text='y'/item /items So, let's say I want to remove the item

[jQuery] Re: XML manipulation

2009-06-23 Thread Liam Potter
take it out of the textarea, right now it's not XML data but random text. bigb wrote: I'm having some real difficulty figuring out how to manipulate xml data with jquery. Here is my situation. I have a hidden TextArea that contains xml data, something like this: items item value='1'

[jQuery] Re: XML manipulation

2009-06-23 Thread Michael Lawson
I can't speak for javascript as I'm not the expert here, but in a lot of other languages you have to explicitly tell objects and functions that the String you are using is xml, else its just a string, which sounds like your problem here. cheers Michael Lawson Development Lead, Global Solutions,

[jQuery] Re: XML manipulation

2009-06-23 Thread bigb
I don't have an option to remove it from the textarea at the moment. Is there a better way to storing and generating xml data on the fly? On Jun 23, 8:41 am, Liam Potter radioactiv...@gmail.com wrote: take it out of the textarea, right now it's not XML data but random text. bigb wrote: I'm

[jQuery] Re: select all values of a multiple select list

2009-06-23 Thread Charlie
$("#yourSelect option").attr("selected","selected"); shaded wrote: is there a way to select all values of a multiple select list by default?

[jQuery] Re: Using embedding youtube videos

2009-06-23 Thread onearmfrog
Never mind, I solved it.. :) Yes, I needed the video to show itself in a youtube box, embedded. In order for it to work, I inserted this code: param name=wmode value=transparent / Hope it would help someone else who's having this problem. On Jun 23, 3:17 pm, Jonathan Vanherpe (T T NV)

[jQuery] Re: XML manipulation

2009-06-23 Thread Liam Potter
I haven't really worked with XML before, but I can't see storing it in a textarea actually working. As I understand your code you have this textarea items item value='1' text='x'/item item value='2' text='y'/item /items /textarea You then put

[jQuery] Re: trigger validation by input:button

2009-06-23 Thread Liam Potter
As long as the buttons do not have any submit events binded you should be fine. I'm not used either plugin though. Pascal wrote: I am new to Jquery and Validate and have similar issue, as anyone got a solution? On Jun 12, 7:58 am, Matt sean...@gmail.com wrote: Hi, I have been working

[jQuery] Re: Array to JSON?

2009-06-23 Thread Nic Hubbard
Well, right now I am sending JSON to my php script which then uses json_decode() to make them into vars. But, I am wondering, is sending JSON the best way? Or should I just send the data as a normal query string, rather than JSON? Which is best? On Jun 22, 5:13 pm, cs

[jQuery] Re: Ajax tooltips using jQuery?

2009-06-23 Thread Charlie Griefer
There are a brazillian tooltip plugins for jQuery. have you googled -jquery tooltip- ? At the moment, I lean towards liking qTip the best. http://craigsworks.com/projects/qtip/ On Tue, Jun 23, 2009 at 6:18 AM, Nick Drew nickxd...@gmail.com wrote: Hi guys, I'm after an ajax tooltip to use

[jQuery] Flash movie not playing in IE6, but working fine in firefox google chrome

2009-06-23 Thread krishna1...@gmail.com
Hi All, I have used the swfobject.js file its methods to play a flash movie in my webpage. It works fine when I open the page in firefox chrome but does not work in IE-6. Below is the code i used: script type=text/javascript src=%= request.getContextPath() %/js/ swfobject.js/script

[jQuery] Re: XML manipulation

2009-06-23 Thread bigb
Well, thank you everyone for your help. Through it I was able to come up with a solution. First, I had to convert the data from the textarea into an XmlDocument (see jQuery.createXMLDocument). Then, my manipulation worked perfectly. Finally I had to convert the xmlDoc back to a string. On Jun

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-23 Thread Dushyant Patel
It returns an empty, but still layer is there, it should be hided. On Jun 22, 11:10 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: What happens when your service doesn't return a result? As long as it returns an empty result (not an error), it should work fine. Jörn On Mon, Jun

[jQuery] Re: jQuery Autocomplete - After service call if result is NULL then layer should be invisible

2009-06-23 Thread Dushyant Patel
Hey i did not get you. Could please tell me more in details, if possible with some code/examples. Thanks in advance. On Jun 23, 11:28 am, tarave arav...@yahoo.com wrote: As I mentioned in my earlier post I have the same problem with autocomplete. The fix/workaround that I added to my page

[jQuery] Positioning Thickbox

2009-06-23 Thread sso
Is there a parameter or method for positioning thickbox? The center of the page is usually ideal, but not always. I assumed something like this would work, but it doesn't seem to have any affect. ?KeepThis=trueTB_iframe=trueheight=600width=1000left=200 Suggestions?

[jQuery] Re: Determine if autocomplete returns an empty list and number of records returned

2009-06-23 Thread Dushyant Patel
Could you please share code snippet with me. Thanks in advanced. On Jun 23, 9:29 am, JohnT jtra...@gmail.com wrote: Hi. Sorry, but I am not getting this flicker effect. Actually, I don't think this method is such a good idea anymore because you'd be forking the original source code. Now, I

[jQuery] Re: Ajax tooltips using jQuery?

2009-06-23 Thread Rick Faircloth
So, the Brazillians are making a move in the jQuery programming market, huh? On Tue, Jun 23, 2009 at 12:26 PM, Charlie Griefer charlie.grie...@gmail.com wrote: There are a brazillian tooltip plugins for jQuery. have you googled -jquery tooltip- ? At the moment, I lean towards liking qTip

[jQuery] Re: Ajax tooltips using jQuery?

2009-06-23 Thread Charlie
cluetip well supported on this board http://plugins.learningjquery.com/cluetip/demo/ Charlie Griefer wrote: There are a brazillian tooltip plugins for jQuery. have you googled -jquery tooltip- ? At the moment, I lean towards liking qTip the best.

[jQuery] Re: Flash movie not playing in IE6, but working fine in firefox google chrome

2009-06-23 Thread Sam Sherlock
Have you tried the google group for swfobject? - S 2009/6/23 krishna1...@gmail.com krishna1...@gmail.com Hi All, I have used the swfobject.js file its methods to play a flash movie in my webpage. It works fine when I open the page in firefox chrome but does not work in IE-6. Below is

[jQuery] Re: peculiar behaviour of clone

2009-06-23 Thread Scott Sauyet
brown.33 wrote: But if we apply prepend for $j(#begin_947).clone().prepend($j ('#end_947')), it is deleting the entire end_947 element. Can somebody explain me, why it is happening like this. Do you really mean the following?: $j(#begin_947).prepend($j('#end_947').clone()); This says,

[jQuery] Rond Corners Question....

2009-06-23 Thread Erik R. Peterson
Hi Guys! Is the Round Corners script with Jquery worth using? Does it really work with all browsers? Does is need tweeking from the original install? Any opinions out there? Erik

[jQuery] Re: jquery-ui dialog and ajax issues updating from 1.2.6 to 1.3.2

2009-06-23 Thread James
It's most likely the other code in your script that's causing it. Try removing all of your scripts on you page except for the jQuery library and the jQuery UI library. There should be no errors. (If there is, then something is wrong with the libraries you have.) Then one by one add the other

[jQuery] Re: Internet Explorer and the html method??

2009-06-23 Thread James
In here: div class=thumb+nu+ you're trying to set the variable nu, yet, nu is also a part of the variable you're trying to set. You should add ending semi-colons ( ; ) to properly end your code, which will reduce errors. I think you want: var nu = $(this).find('nu').text(); var html =

[jQuery] Re: calling ajax function from php file

2009-06-23 Thread James
Maybe they want to use this library :p http://phpjs.org Of course, it still doesn't call actual server-side PHP functions. On Jun 22, 10:57 pm, Liam Potter radioactiv...@gmail.com wrote: You don't call php functions on the client side. You just need to pass data on to it, and have the php

[jQuery] Re: return value of nested functions is always undefined

2009-06-23 Thread Scott Sauyet
anawak82 wrote: function getPrice(id) { $.get('db.xml', function(d){ $(d).find('data').each(function(){ var $data = $(this); if ($data.find(id).text() == id) { var

[jQuery] Problem with loading SELECT on change of other select

2009-06-23 Thread Paul
Hi there, This is what I'm trying to do: When a user selects a group in the first SELECT box, another SELECT box should be loaded from an external PHP-file (using MySQL), based on the group-id of the first SELECT box. I use this code: $('#kiesgroep').change(function(){

[jQuery] Re: what is wrong with this simple load data codes

2009-06-23 Thread efet
It does, but I tried it with uppercase, lowercase none worked. Page is giving me this error when first opened though Error: [Exception... Component is not available nsresult: 0x80040111 (NS_ERROR_NOT_AVAILABLE) location: JS frame ::

[jQuery] Re: Problem with loading SELECT on change of other select

2009-06-23 Thread Charlie
this sure doesn't look right $('#kiesgroep').change(function(){$.post}).change(); remove 2nd change(). it's likely causing change to trigger Paul wrote: Hi there, This is what I'm trying to do: When a user selects a group in the first SELECT box, another SELECT box should be

[jQuery] Re: what is wrong with this simple load data codes

2009-06-23 Thread efet
Ok that fixed! They index.asp and getir.asp were in a folder so I had to add the folder name in the url section. Something like this: $.post(newfolder/getir.asp?Process=UPS On Jun 23, 2:55 pm, efet efetun...@gmail.com wrote: It does, but I tried it with uppercase, lowercase none worked. Page

[jQuery] [ANN] jQuery Metadata 2.1

2009-06-23 Thread Yehuda Katz
I just released jQuery Metadata 2.1, which adds support for HTML5 data-*. Usage: p id=one class=some_class data-item_id=1 data-item_label=LabelThis is a p/p; $.metadata.setType(html5) $(#one).metadata().item_id == 1; $(#one).metadata().item_label == Label; Get it at

[jQuery] Re: Problem with loading SELECT on change of other select

2009-06-23 Thread Matthew
Question about the code, in the change() event, why are you calling two functions for the callback? I though change() could only get one function as a parameter. On Jun 23, 11:44 am, Paul paulverh...@gmail.com wrote: Hi there, This is what I'm trying to do: When a user selects a group in

[jQuery] shadow box+ajax and i have few queries .plz advice me

2009-06-23 Thread vetriB2W
Hi, - How to show the shadow box with the help of jquery. -how to call ajax.(when i tried $.post ,it requested twice .One with the url i provided and another the current page url).How to resolve this - How to load the result from ajax ie response text? -How to show some images while calling ajax

[jQuery] superfish horizontal navbar with a third level

2009-06-23 Thread Roberto da Costa
Hi, I'm in trouble implementing superfish in a website project. My problem is: I have a category based menu item that has two sub-levels set to display horizontally. I hover the first menu item and the first sub- level shows. Then I click the first sub-level and both it and its parent-item get

[jQuery] Using slideDown in a slideUp callback

2009-06-23 Thread Matthew
Hi all, I am trying to slideUp a container Div and using the slideUp's callback parameter call slideDown on a different element that is not inside the slideUp container Div: $(#pageWrap).slideUp(1000, function(){ $(#externalform).slideDown(500);

[jQuery] Re: PDF + Jquery + thickbox is not suppoting to Mozilla

2009-06-23 Thread Chippo
Hi this will do what your after I think http://www.adobe.com/products/flashpaper/ costs though. On Jun 23, 8:21 am, bharathbhooshan ambati bharathbhooshan.amb...@gmail.com wrote: any solution for this issue?? On Mon, Jun 22, 2009 at 5:30 PM, bharathbhooshan ambati

[jQuery] Re: nyroModal manual opening a page

2009-06-23 Thread Loony2nz
figured it out :) var datastring = $(data).serialize(); var URL = /thankyoupage.cfm? + datastring; $.nyroModalManual({ type: 'iframe', modal: true, url: URL }); On Jun 18, 3:39 pm, Loony2nz loony...@gmail.com wrote: I have this within my page to open a page

[jQuery] Re: load

2009-06-23 Thread Anderson Levi
I'm using jquery-1.3.2.min version . 2009/6/23 khaled abbad khaledab...@gmail.com ensure what is the jQuery version that you use.

[jQuery] Jquery JQzoom is not a function error, why?

2009-06-23 Thread Matt
I am working on an ecommerce site that uses smarty tpl files and I am having trouble implementing JQzoom, I have already use a java based menu system so I am aware of the {literal}{/literal} I am trying to use JQzoom for product images and when the product page loads the java isn't working.

[jQuery] Re: load

2009-06-23 Thread Anderson Levi
I already included at the top. In IE function, but in Firefox not function. 2009/6/23 Paul Hutson hutsonphu...@googlemail.com Ensure you've included the Jquery package at the top of the page.

[jQuery] Re: Problems on IE7

2009-06-23 Thread xoail
Hi, I did some fixes on validations on my local but it dint help much... I did some more research and learned that, first the main site is loading the jquery.listen.js file and then when I click Glossary, the iframe is also loading the jquery.listen.js file. Could it be that it has to do

[jQuery] Re: Determine if autocomplete returns an empty list and number of records returned

2009-06-23 Thread JohnT
First of all, your back end servlet/PHP/ASP etc needs to return JSON. I simply return this if the record is empty: [ {records:'0'} ] Then, in the formatItem function I check the JSON data: if (data.records data.records == 0) { return No match found; } John On Jun 23, 12:48 pm,

[jQuery] Re: Positioning Thickbox

2009-06-23 Thread brian
It's handled by CSS. Look for the #TB_window rule. I think it should be fairlyt straightforward to modify the JS to accept left, top, right, or bottom params, though. Look for the params[] variable. There's also a tb_position() function that could be modified. On Tue, Jun 23, 2009 at 12:46 PM,

[jQuery] Datagrid

2009-06-23 Thread Dyne Lightnos
Hello. I need advice as to what Datagrid component to use. I need one that supports JSON, and it's considerably updated. Also could use the update, add and delete functions. I seem to have a hard time finding a good library to do Grid work. Ingrid doesn't do it for me and Flexigrid is dead and

[jQuery] Re: Drop Shadows!!!

2009-06-23 Thread Raj
Hi Erik, The http://eyebulb.com/dropshadow/ is definitely promising. However, I tried using it for draggable content which has a border and other divs around it, the shadow didnt work on this quite well. Am still on the looking for something as neat as this. Thanks, Raj On Jun 23, 2:10 am,

[jQuery] Looping through getJSON data

2009-06-23 Thread Nic Hubbard
I am returning data from the .getJSON() function and trying to write is all out in the body. But, for some reason this is not working at all. What have I done wrong? $.getJSON(api_url, params, function(data, texStatus) { // Check our array

[jQuery] Re: Jquery JQzoom is not a function error, why?

2009-06-23 Thread brian
On Tue, Jun 23, 2009 at 12:28 PM, Mattmjol...@hotmail.com wrote: I am working on an ecommerce site that uses smarty tpl files and I am having trouble implementing JQzoom, I have already use a java based menu system so I am aware of the {literal}{/literal} I am trying to use JQzoom for

[jQuery] jquery parsing problem

2009-06-23 Thread Bill
If I get the following response back from $.get(..., 'xml'), jQuery is unable to recognize address as an attribute. ?xml version=1.0 encoding=UTF-8?\n device address=http://192.168.1.100/ NOTE: The '\n' are actual line feeds not, the characters \ and n. I just want to show them for emphasis

[jQuery] Re: jQuery in an eBay auction template? Is it possible?

2009-06-23 Thread Raj
Hi, eBay does say this as a rule. If you reference jquery through src in script, then it may fall under this category. HTML or JavaScript that automatically calls remote scripts and pages (such as JavaScript includes or iframes) However, there is nothing that stops you from pasting the content

[jQuery] [validate] Decent Date Checking using the JQuery Validate Plugin?

2009-06-23 Thread Mr Fett
Hi all, I've been using the fantastic validate plugin for a while now but I've always found the support for date validation sorely lacking as it really only checks that there are three numeric columns (i.e. nn/nn/ ). See here for the reference to this in the documentation:

[jQuery] Re: jQuery Tooltip Plug-in 1.3 Update

2009-06-23 Thread Karl Swedberg
On Jun 23, 2009, at 9:50 AM, funomat wrote: You need to use a newer dimensions version. http://plugins.jquery.com/project/dimensions You don't need to use the Dimensions plugin at all. It has been incorporated into the jQuery core file. --Karl Karl Swedberg

[jQuery] Re: superfish horizontal navbar with a third level

2009-06-23 Thread Charlie
'current-cat-parent' isn't a class used in original superfish . Is this a CMS installation(joomla or other?) You either have a modified version, or this class comes from your template. Sounds like you have other css and/or scripts affecting menu. No way to tell without link or code

[jQuery] Re: TreeView question

2009-06-23 Thread Russell
Any help appreciated! On Jun 18, 9:39 am, GTGeek88 russcampb...@interthink.com wrote: I'm looking at using the treeview plugin by Jorn.  What I'm wondering is how to get folders added at a particular spot and how to manage folders by dragging them around (or in some other fashion).  Perhaps

  1   2   >