[jQuery] Re: JQUERY form submit

2009-10-06 Thread kknaru
nope, is not that, the form and form/name "problem" is because i just wrote in here a simplified version of the script and i mis-typed. in the original script it's form_name/form_name. My form it looks like it's submitted(the php page is loaded) but i get those errors in the php because those valu

[jQuery] Debug says I'm missing a paren, but all parens are matched!

2009-10-06 Thread hsfrey
In this line of code, I'm looking for a div whose Id is in variable b1, and which has an input button field whose value is "Show" or "Hide", and this line is to toggle those values. $(("[id$="+b1+"]") input).attr(value, attr(value) =="Hide"?"Show":"Hide"); This doesn't work, and Firebug gives m

[jQuery] (jQuery validate) remote on non-required *blank* input

2009-10-06 Thread ururk
Using the latest version of both jQuery (jquery-1.3.2.min.js), and validate (1.5.5), Safari 4... When a non-required input box is cleared of all text inside, and the field is tabbed out of, there is no call made to my 'remote' file to check to see if the field is valid or not... which leaves the

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-06 Thread Dave Methvin
What does your xml look like? I am guessing it may not be well formed. If $.get returns a string and you pass it to $() it will attempt to parse it as html and an html link tag isn't supposed to have children. If you force xml then it might return nothing if the xml is not well formed.

[jQuery] Superfish and Sprites

2009-10-06 Thread rickpickett
I'm trying to get my parent ULs to show their :hover state when their children ULs are expanded. I've tried copying the: .sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active to my LI id's: #nav li#products a:focus, #nav #products.sfHover, #nav #products

[jQuery] [jQuery Validate] How to use on group of two selects

2009-10-06 Thread Up-Works
How would I validate this group of two selects: * Expires MM 01 02 03 04 05 06 07 08 09 10 11 12 2009 2010 2011 2012 2013 2014

[jQuery] Re: .show() does not work, but getElementById(id).style.display="block" does work

2009-10-06 Thread vjimw
Thanks! I just sorted that out. Answered my own question. I needed to prepend # to the id for the jQuery functions to work. $('#' + id).show(); On Oct 6, 7:29 pm, James wrote: > Try: > > $('#'+id).show(); > > On Oct 6, 1:17 pm, vjimw wrote: > > > Here is my .ready function using tabs and a cla

[jQuery] Re: .show() does not work, but getElementById(id).style.display="block" does work

2009-10-06 Thread vjimw
Answered my own question. I needed to prepend # to the id for the jQuery functions to work. $('#' + id).show(); On Oct 6, 6:17 pm, vjimw wrote: > Here is my .ready function using tabs and a class of .remote to start > using the history plugin > > // Show and hide product grids > $(document).rea

[jQuery] Re: jQuery.post on page load?

2009-10-06 Thread James
The syntax for post()'s second parameter (data) should be serialized or key/data JSON pairs. jQuery.post(".../gravatar-check.php", {userEmail: em...@email.com}, function(data) { // response callback } }); Here, your POST variable for the email will be "userEmail" (

[jQuery] Re: Split Form field into array

2009-10-06 Thread James
It should be fairly straightforward. Get the content of the text field: $("PartNum").val(); Use the split() function to split each line by "\n" (return). Then for each of those lines, split it again by " " (space). (Store all of these in an array(s).) Then you can use the join() function to add ",

[jQuery] Re: .show() does not work, but getElementById(id).style.display="block" does work

2009-10-06 Thread James
Try: $('#'+id).show(); On Oct 6, 1:17 pm, vjimw wrote: > Here is my .ready function using tabs and a class of .remote to start > using the history plugin > > // Show and hide product grids > $(document).ready(function() { >  $(".remote").click(function(event) { >          document.location.hash

[jQuery] Re: JQUERY form submit

2009-10-06 Thread James
The name of your form is "form", not "form_name" as you have in your Javascript. Do you have other fields aside from the upload field? Try putting other fields. In PHP do a "print_r($_REQUEST)" to see if you get anything. On Oct 6, 1:43 pm, kknaru wrote: > hi i have something like this: > > // >

[jQuery] Re: Can't get dialog box to appear twice

2009-10-06 Thread Richard D. Worth
See http://blog.nemikor.com/2009/04/08/basic-usage-of-the-jquery-ui-dialog/ If you have any further questions, note there's a dedicated list for jQuery UI discussion: http://groups.google.com/group/jquery-ui - Richard On Tue, Oct 6, 2009 at 3:25 PM, webspee...@gmail.com wrote: > > Hey all. I'm

[jQuery] Re: (autocomplete) help about extraparams

2009-10-06 Thread alexbodn . groups
please try cacheLength=0 arg to autocomplete. On Fri, Oct 2, 2009 at 03:45, Otniel Zebua wrote: Ok, I have got it with $_GET. But now I have another problem, if I choose "England" for the country, then I press "a" in autocomplete input box, then $_GET['country'] value will be "GB" in the serve

[jQuery] Re: Autocomplete - How to simulate a select box, where displayed value is one thing and submitted value is another

2009-10-06 Thread alexbodn . groups
you need a hidden field to hold the value, and play around with the result trigger. hth On Mon, Oct 5, 2009 at 23:16, benze wrote: Hi, I'm trying to figure out how to use the autocomplete jQuery plugin best to my needs.  I'm looking to replace a select box with the Autocomplete plugin, but

[jQuery] JQUERY form submit

2009-10-06 Thread kknaru
hi i have something like this: // javascript-- $('a').click(function(){ $('div').load('form.html',function(){ $('form[name="form_name"]').submi

[jQuery] .show() does not work, but getElementById(id).style.display="block" does work

2009-10-06 Thread vjimw
Here is my .ready function using tabs and a class of .remote to start using the history plugin // Show and hide product grids $(document).ready(function() { $(".remote").click(function(event) { document.location.hash=this.title; show_subcat_menu(); toogle_subcat_ul('ul

[jQuery] Split Form field into array

2009-10-06 Thread robert...@gmail.com
I really hope someone can assist: I am trying to take a form field: The user will put in part numbers , space, qty, carraige return ,then another entry on the next lineit will look like this: bd 2 bd1200 5 I want to split this into two querystring variables before submitting to next

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-06 Thread NRutman
MorningZ, done that. My approach is exactly what some other folks are using. I'm just wondering if anybody has come up across the problems I'm having with some fields being empty that really aren't empty in the XML. Or, that when they specify the XML dataType, JQuery returns an empty data objec

[jQuery] Re: Do events remain is memory when element is removed from DOM?

2009-10-06 Thread Mike Alsup
> An additional question I have for sake of completeness > > Will empty(), remove() unbind just child element events (1 level down) > or events for ALL descendants? All descendants.

[jQuery] Do replace(), replaceWith() unbind?

2009-10-06 Thread mirage
Hi, Since the docs don't say - I'm wondering if the replace() and replaceWith() methods unbind events the same way that empty() and remove() do? Thanks, J

[jQuery] Re: Do events remain is memory when element is removed from DOM?

2009-10-06 Thread mirage
An additional question I have for sake of completeness Will empty(), remove() unbind just child element events (1 level down) or events for ALL descendants? Thanks, J On Sep 1, 8:50 pm, mkmanning wrote: > .remove() "will also remove all event handlers and internally cached > data"http://docs.

[jQuery] CSS Problem with Superfish Menu

2009-10-06 Thread dieter
Hi all, I have installed Superfish menu module with Joomla .. Customization work more less fine ... I still have tenious problem like : - How to have the main menu with the active color, when one of the sub- menu has been actived ? - How to change the inactive color of the sub-menu without cha

[jQuery] Translate script [prototype to jquery]

2009-10-06 Thread Marcelo Barros
Hello people, I'm new in this group [and also beginner as a translation of scripts] and already i have a doubt. How to "translate" this prototype code for jQuery?: $(document).observe('dom:loaded', function(){ // Select all textboxes and assign them to an array var textboxes = $$('form.awesome

[jQuery] jQuery.post on page load?

2009-10-06 Thread Milan Dinić
I'm beginner with jQuery and JavaScript in general and since I didn't find solution in documentation or on web, I'm asking here. I'm writing some plugin for WordPress publishing tool which should check if commenter has avatar on Gravatar.com. This part works for unregistered users and you can see

[jQuery] Using nested ui.tabs - make the most of it!

2009-10-06 Thread Dylan
I have several 'top level tabs' and within some of these I have use a vertical tab list and assigned these a class of "vertical-tab" for css purposes. All is fine styiling wise but... now I want to add a javascript call to the onclick of each tab. for the top (horizontal, non-nested) tabs I wan

[jQuery] Re: JQuery Won't Parse RSS?

2009-10-06 Thread MorningZ
Maybe take a look at what people have done in the past? http://www.google.com/search?q=jquery+rss+reader It definitely appears do-able

[jQuery] Re: Firefox only selecting first element with given class

2009-10-06 Thread Giovanni Battista Lenoci
MorningZ ha scritto: Right in the link I provided above to jsbin: http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/ jquery.min.js"> Same for me. Cache problems? -- gianiaz.net - web solutions via piedo, 58 - 23020 tresivio (so) - italy +39 347 7196482

[jQuery] JQuery Won't Parse RSS?

2009-10-06 Thread NRutman
Hello, I'm trying to parse RSS feeds with JQuery in order to extract data. Here's what I've tried: $.get('php-lib/proxy.php', {url: 'http://feeds.reuters.com/reuters/ businessNews'}, function(data, textStatus) { var feed = $(data); var list = $('#headlinesFeed'); var html = [];

[jQuery] Re: How to write this using jquery?

2009-10-06 Thread mhulse
Oops, typo: > $obj = getFlashMovie(name); I forgot to add this: var name = 'communication';

[jQuery] Re: Error occurs in IE8

2009-10-06 Thread Leonardo K
You should post this on jquery dev group: http://groups.google.com/group/jquery-dev On Tue, Oct 6, 2009 at 16:28, mk.keck wrote: > > Hello, > > I've found an error in Line 2853: > IE8 stopps with follow Error Message: > 'Mitglied nicht gefunden' in Zeile 2853 Zeichen 9 > 'Member not found' Line

[jQuery] How to write this using jquery?

2009-10-06 Thread Micky Hulse
Hi, What would be the jQuery version of this: = function getFlashMovie(movieName) { var isIE = navigator.appName.indexOf("Microsoft") != -1; return (isIE) ? window[movieName] : document[movieName]; } ... ... $obj = getFlashMovie(name); = The abov

[jQuery] run part of my jquery code after a postback

2009-10-06 Thread samjesse
Hi I am building an asp.net web application using visual studio 2008 with .NET 3.5 on Windows XP 32 bit machine where I have the server as well. C# and javascript are used. There is contactUs.aspx, once the form is submitted successfully, I want to run the jQuery in the contactUs.js file startin

[jQuery] Error occurs in IE8

2009-10-06 Thread mk.keck
Hello, I've found an error in Line 2853: IE8 stopps with follow Error Message: 'Mitglied nicht gefunden' in Zeile 2853 Zeichen 9 'Member not found' Line 2853 Char 9 This happens with the fixClick Plugin (http://plugins.jquery.com/ project/FixClick) I think the Problem is in the function jQuery

[jQuery] Jquery tabs load external file that uses a jquery plugin

2009-10-06 Thread dylanmac
I have a set of jqueryui tabs that, when clicked, load in their content dynamically. It works great, except that one of the pages uses a jquery plugin itself. This results in two issues: - The main page that holds the tabs throws an error when loaded because there is js that refers to elements th

[jQuery] jQuery Right click menu

2009-10-06 Thread donovan78
Hello ! I'm jQuery newbie and now trying to build an application with jQuery Grid interface. My page is that --- http://djalmabina.orgfree.com/jQueryGrid/jQuery_Grid.html The left side frame is a XML menu , tree2.xml what loads another html files within my webse

[jQuery] Re: Check value client side

2009-10-06 Thread James
You can do it like that if what you're doing with it is not critical, because setting values in hidden fields is still considered user- modifiable content. Could you provide more information on what you're trying to do? Maybe there are better ways to go about doing it. On Oct 6, 5:18 am, CoffeeAd

[jQuery] Re: Create new DOM?

2009-10-06 Thread James
Nice catch, Mike. I've completely overlooked that issue and only focused on getting the setTimeout to execute something. :) On Oct 6, 10:00 am, Michael Geary wrote: > Good tip, but don't use the string version: > > setTimeout("e.show(200);", 1000); > > Use the function version: > > setTimeout(fu

[jQuery] Re: Create new DOM?

2009-10-06 Thread Michael Geary
Good tip, but don't use the string version: setTimeout("e.show(200);", 1000); Use the function version: setTimeout(function() { e.show(200); }, 1000); When you pass a string to setTimeout() or setInterval(), the code is executed in the *global context*. If the code is inside a function and

[jQuery] Re: Firefox only selecting first element with given class

2009-10-06 Thread MorningZ
Right in the link I provided above to jsbin: http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/ jquery.min.js"> On Oct 6, 3:11 pm, Phil wrote: > I reverted to JQuery 1.2.6 from 1.3.2 and it works fine now.  Not sure > why that should be.  Which version are you using? > > On Oct 6, 6:31 am,

[jQuery] How to replace a normal search box with a dropdown menu search box

2009-10-06 Thread lukas
Could anybody help me to replace a normal search

[jQuery] Re: Create new DOM?

2009-10-06 Thread James
setTimeout(e.show(200), 1000); should be: setTimeout("e.show(200);", 1000); or: setTimeout(function() { e.show(200); }, 1000); (line-end semi-colon not necessary, but should be used for good practice) On Oct 6, 7:57 am, Dennis Madsen wrote: > I'm trying to create new DOM and append it t

[jQuery] Can't get dialog box to appear twice

2009-10-06 Thread webspee...@gmail.com
Hey all. I'm trying to work with a dialog box and when the page has been refreshed, the dialog box appears fine. But if I close it out and try to open it again, it won't open. Here is the code I'm using. $(function() { $("#quickAddDisplay").dialog({ bg

[jQuery] Re: Show: Call jQuery i callback

2009-10-06 Thread James
The callback needs to be a function. $j(".dialogBookingError").show(200, function() { $j(this).effect("highlight",{},650); }); On Oct 6, 9:10 am, Dennis Madsen wrote: > I have this code sample: > > $j(".dialogBookingError").show(200).effect("highlight",{},650); > > I would like the effect f

[jQuery] Re: Firefox only selecting first element with given class

2009-10-06 Thread Phil
I reverted to JQuery 1.2.6 from 1.3.2 and it works fine now. Not sure why that should be. Which version are you using? On Oct 6, 6:31 am, MorningZ wrote: > The Show/Hide functionality for that HTML also works just fine for me > on FF 3.5.3 > > http://jsbin.com/axibo/edit(although i used "togg

[jQuery] Show: Call jQuery i callback

2009-10-06 Thread Dennis Madsen
I have this code sample: $j(".dialogBookingError").show(200).effect("highlight",{},650); I would like the effect first to run after the show is finish. Therefore I try: $j(".dialogBookingError").show( 200, $j(this).effect("highlight",{}, 650) ); But it does not work. Hope someone can help me

[jQuery] Re: $.post cross domain first sends an OPTIONS verb?

2009-10-06 Thread David P
Were you able to find a solution to get it working in Firefox? Thank you david On Oct 1, 10:25 am, Vitaly Piven wrote: > Hello David, > > I have similar problem . $.post() sends some "OPTIONS" request instead > of expected "POST" (according to logs of web server). > > On 25 сен, 21:32, David P

[jQuery] Re: Please Teach me jQuery Code!!

2009-10-06 Thread Michael Geary
In JavaScript, $ and _ are treated just like letters. For example: var a$b_c = 1; alert( a$b_c ); // alerts '1' jQuery just happens to use $ as a function name - and as Giovanni mentioned the same function is also named jQuery. In addition to the $ function, you'll often see variables beginning

[jQuery] Create new DOM?

2009-10-06 Thread Dennis Madsen
I'm trying to create new DOM and append it to a div. When the div is appended, I would like it to be shown after 1sec. var e = "content"; $("#container").append(e); setTimeout(e.show(200), 1000); This code does not work. The HTML is appended but the show-function does not

[jQuery] lightweight multi-select dropdown menu available?

2009-10-06 Thread lukas
I would like to replace a generic search box with a multi select dropdown menu from which a user can select several items. I found http://dropdown-check-list.googlecode.com/svn/trunk/demo.html . Unfortunately, but with almost 30kb it is too large for my application. Could maybe anybody direct me

[jQuery] autocomplete

2009-10-06 Thread Jarosław Feith
Hi, I have this strange problem. I am using autocomplete to help autofill the form text input field width name of streets. User can choose between streets of two towns, selecting the check box. I also added autofill acceptance with pressing ENTER key. Everything works fine until user changes the c

[jQuery] Re: Block access to the page but unblock certains divs

2009-10-06 Thread Jason
Hi samh12, I am working on something similar where I want to highlight elements in a page in the way that you describe. I wonder if you have come across a solution. One thought I have is to leverage jQuery's powerful selection ability. Like, perhaps you apply $.blockUI to every element on the pag

[jQuery] Re: Please Teach me jQuery Code!!

2009-10-06 Thread ibnusarnan
thanks mr giovanni :)

[jQuery] Script 'translation' [prototype >> jquery]

2009-10-06 Thread Marcelo Barros
Hello people, I'm new in this group [and also beginner as a translation of scripts] and already i have a doubt. How to "translate" this prototype code for jQuery?: $(document).observe('dom:loaded', function(){ // Select all textboxes and assign them to an array var textboxes = $$('form.awes

[jQuery] After load() there are two div's with the same ID

2009-10-06 Thread inthewayboy
Got most of this code from various tutorials and examples, and customized it for my needs. Everything is working great, except for the content replacement function I'm using. We have four DIV's...#menu, #content, #side, and #footer. Any link that is clicked in #menu is setup to hide the #content,

[jQuery] Re: Access a certain Button

2009-10-06 Thread 赵静
Just $("#btnRegister").click(function{ // handler code...}) is ok I think if the id is unique. On Tue, Oct 6, 2009 at 11:42 PM, CoffeeAddict wrote: > > > I'm trying to get reference to a certain button on the DOM. I tried this: > > $('button#btnRegister').click(function() { > > where button has

[jQuery] autocomplete scrollbar not coming in ie

2009-10-06 Thread sangram
hi, i am using latest version of jquery autocompletion plugin. and have populated an array(input for autocomplete) abt 800 entries. now strangely when i type a letter which triggers large results, i can see a scrollbar in mozilla but not in Internet explorer 7. i have only included jquery.auto

[jQuery] Re: Jquery autocomplete source code and instructions

2009-10-06 Thread gurram sangram reddy
thanks jorn On Tue, Oct 6, 2009 at 4:38 PM, Jörn Zaefferer < joern.zaeffe...@googlemail.com> wrote: > Right here: > http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ > > Source (for now) is here: > http://bassistance-plugins.googlecode.com/svn/trunk/plugins/autocomplete/ > > Jörn >

[jQuery] Re: Access a certain Button

2009-10-06 Thread Giovanni Battista Lenoci
CoffeeAddict ha scritto: I'm trying to get reference to a certain button on the DOM. I tried this: $('button#btnRegister').click(function() { where button has the ID of btnRegister. is this right? I think so, but I never use this syntax. For definition the id is unique, then I use always

[jQuery] Access a certain Button

2009-10-06 Thread CoffeeAddict
I'm trying to get reference to a certain button on the DOM. I tried this: $('button#btnRegister').click(function() { where button has the ID of btnRegister. is this right? -- View this message in context: http://www.nabble.com/Access-a-certain-Button-tp25771231s27240p25771231.html Sent from

[jQuery] Check value client side

2009-10-06 Thread CoffeeAddict
I want to check a value client side in jQuery. The bool will tell me if the user is logged in or not. Is the only/best way to do this in ASP.NET specifically is with a hidden field? -- View this message in context: http://www.nabble.com/Check-value-client-side-tp25770768s27240p25770768.html S

[jQuery] Re: Set property based on sibling width()

2009-10-06 Thread bombaru
Wow! It really is that simple. Thanks. On Oct 5, 12:19 pm, brian wrote: > $('.caption').each(function() > { >   $this.width($this.find('img').width()); > > } > On Mon, Oct 5, 2009 at 11:52 AM, bombaru wrote: > > > Can somebody help me out?  I'm trying to set a width of a span class > > based

[jQuery] Re: format number

2009-10-06 Thread Jonathan Sharp
Doh...thank you Karl for saving my behind. Parse Int won't work...coffee hadn't kicked in yet. Cheers, - Jonathan On Mon, Oct 5, 2009 at 6:58 PM, Karl Swedberg wrote: > > On Oct 5, 2009, at 11:43 AM, Jonathan Sharp wrote: > > You can run a parseint on the number: var myInt = parseInt( '15,000',

[jQuery] Re: MooTools and jQuery

2009-10-06 Thread Jonathan Sharp
Hi Dennis, We had some issues with jqModal and unfortunately only the minified source is available so we ended up using the jQuery UI dialog component with great success. (Note the filesize listed on the jQuery UI page is for the entire zip file, the library itself is much smaller) http://jqueryu

[jQuery] Pick list widget

2009-10-06 Thread HB
Hey, I'm looking for a widget like this one: http://docs.jboss.org/richfaces/latest_3_3_X/en/devguide/html_single/#rich_pickList Do you know any? Thanks for help and time.

[jQuery] Re: Select by containing text

2009-10-06 Thread KeeganWatkins
oops, copy/paste error. as there is no "text" method on RegExp objects, disregard the snippet above. it should be: // Existing "contains" filter function (a, i, m) { return (a.textContent || a.innerText || jQuery(a).text() || "").indexOf(m[3]) >= 0; } // New ":text-equals" filter function (a

[jQuery] Re: MooTools and jQuery

2009-10-06 Thread Dennis Madsen
Yes, as I describe I use Joomla CMS where a lot of the functionality is written in Mootools. On 6 Okt., 15:35, Liam Potter wrote: > is there a reason you need both libraries? > > > > Dennis Madsen wrote: > > I'm developing a site in Joomla CMS which use both MooTools and > > jQuery. > > > I've c

[jQuery] Re: Select by containing text

2009-10-06 Thread KeeganWatkins
Hi Julijan, It sounds like what you need is a ":text-equals" filter The reason ":contains" fails in this case is because it does a global match. By anchoring the same RegExp against the beginning and end of the string, you should be able to select elements whose text matches exactly: // Existing

[jQuery] Re: Superfish resize issue

2009-10-06 Thread Patrick
Gernot, It's probably not what you want to hear, but I would suggest trimming the main menu down by creating some groupings. I think you will find the usability and appearance improves, moreover, your issue will be resolved. Best of luck, Patrick On Oct 6, 9:06 am, Hetsch wrote: > Hi, > > firs

[jQuery] Re: Mouse hover event problem in a div containing another div with higher z-index

2009-10-06 Thread SmiThiCo
Ok, I can try that. But I need a condition to know when to remove the inner div B. When I mouse over the inner div B it was already removed. If I don't remove it, I need a condition to remove it in the mouse out event of div A. But as i told before, mouse if I mouse over the div B is assumed as a

[jQuery] ajaxsubmit a form onchange i.e. when we change the value of select box

2009-10-06 Thread Sagar
Hi, I want to ajax submit the form when I change the value of the dropdown menu... I have been using the following code... but it's not working. I am using jQuery form plugin Please help me out... it's very urgent. Thanks a lot.. :) -Sagar Snippet of my code: --

[jQuery] Superfish resize issue

2009-10-06 Thread Hetsch
Hi, first thing to say is, thanks for the wonderful menu. I have a small issue in Internetexplorer 7 and below. I have allready read something about the z-index bug, but it seems to be another issue. Have a look at: www.skyrunning.at. The menu looks nicely if it's a really wide sreen resolution,

[jQuery] Re: MooTools and jQuery

2009-10-06 Thread Liam Potter
is there a reason you need both libraries? Dennis Madsen wrote: I'm developing a site in Joomla CMS which use both MooTools and jQuery. I've created a small, clean page where you can see the problem: http://www.dennismadsen.com/uploads/mootools_jquery/ You can download the source-code from th

[jQuery] Re: Firefox only selecting first element with given class

2009-10-06 Thread MorningZ
The Show/Hide functionality for that HTML also works just fine for me on FF 3.5.3 http://jsbin.com/axibo/edit (although i used "toggle", but that's the same thing inside) On Oct 6, 3:31 am, Giovanni Battista Lenoci wrote: > Phil ha scritto:> I am having an issue in firefox 3.5.3 I am using the

[jQuery] Re: browser window close

2009-10-06 Thread Liam Potter
Yeah, you can only close windows you opened with javascript. Jonathan Vanherpe (T & T NV) wrote: Muhammad Arif wrote: Hello All: I'm trying to close a browser window.. using windows.close().. but its not working... so can you help me. Regards I think it's window.close(), an

[jQuery] MooTools and jQuery

2009-10-06 Thread Dennis Madsen
I'm developing a site in Joomla CMS which use both MooTools and jQuery. I've created a small, clean page where you can see the problem: http://www.dennismadsen.com/uploads/mootools_jquery/ You can download the source-code from this URL: http://www.dennismadsen.com/uploads/mootools_jquery/mootool

[jQuery] Re: JQuery 1.2.6 vs 1.3.2

2009-10-06 Thread MorningZ
Is there any reason you have this var StateID = $("#ddlStates > option[selected]").attr ("value"); instead of just this var StateID = $("#ddlStates").val(); not sure if that's the issue, but it's a start to "less code to break" On Oct 6, 12:59 am, TRaymond wrote: > I was trying out some sam

[jQuery] Re: Mouse hover event problem in a div containing another div with higher z-index

2009-10-06 Thread Abhay
On Oct 6, 1:17 pm, SmiThiCo wrote: > Hi all, > I've have been struggling a hole day around this and I can't find a > proper solution :( > > I have a div A that when I mouse hover creates and appends in run time > another div B inside with an higher z-index. This new div B is a info > div that I

[jQuery] Re: browser window close

2009-10-06 Thread Jonathan Vanherpe (T & T NV)
Muhammad Arif wrote: Thanks you very much for your reply.. but if window.close() so for popup so then how can we close a browser window Regards On Tue, Oct 6, 2009 at 4:08 PM, Jonathan Vanherpe (T & T NV) mailto:jonat...@tnt.be>> wrote: Muhammad Arif wrote: Hello All:

[jQuery] Re: browser window close

2009-10-06 Thread Muhammad Arif
Thanks you very much for your reply.. but if window.close() so for popup so then how can we close a browser window Regards On Tue, Oct 6, 2009 at 4:08 PM, Jonathan Vanherpe (T & T NV) < jonat...@tnt.be> wrote: > > Muhammad Arif wrote: > >> >> Hello All: >> I'm trying to close a

[jQuery] Re: Jquery autocomplete source code and instructions

2009-10-06 Thread Jörn Zaefferer
Right here: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ Source (for now) is here: http://bassistance-plugins.googlecode.com/svn/trunk/plugins/autocomplete/ Jörn On Tue, Oct 6, 2009 at 8:36 AM, sangram wrote: > > hi, > > i have used previous version of jquery autocomplete p

[jQuery] Re: browser window close

2009-10-06 Thread Jonathan Vanherpe (T & T NV)
Muhammad Arif wrote: Hello All: I'm trying to close a browser window.. using windows.close().. but its not working... so can you help me. Regards I think it's window.close(), and i think you can only do this in popups. Jonathan -- Jonathan Vanherpe - Tallieu & Tallieu NV - j

[jQuery] Re: Debug says I'm missing an end paren - but parens all match!

2009-10-06 Thread Richard D. Worth
$("[id$=" + b1 + "] input").toggle(); - Richard On Tue, Oct 6, 2009 at 1:52 AM, hsfrey wrote: > > In this line of code, I'm looking for a div whose Id is in variable > b1, and which has an input button field whose value is "Show" or > "Hide", and this line is to toggle those values. > > > $(("[i

[jQuery] Re: Please Teach me jQuery Code!!

2009-10-06 Thread Giovanni Battista Lenoci
ibnusarnan ha scritto: hello alll, Im a newbie in jquery, I just one know and angered with jquery, why and how the jquery code is: $.ready using dollar sign, anyone can explain me about this (using dollar sign in javascript) and please give me an sample example of this for clearest explanatio

[jQuery] Please Teach me jQuery Code!!

2009-10-06 Thread ibnusarnan
hello alll, Im a newbie in jquery, I just one know and angered with jquery, why and how the jquery code is: $.ready using dollar sign, anyone can explain me about this (using dollar sign in javascript) and please give me an sample example of this for clearest explanation. thanks, IBS

[jQuery] Debug says I'm missing an end paren - but parens all match!

2009-10-06 Thread hsfrey
In this line of code, I'm looking for a div whose Id is in variable b1, and which has an input button field whose value is "Show" or "Hide", and this line is to toggle those values. $(("[id$="+b1+"]") input).attr(value, attr(value) =="Hide"?"Show":"Hide"); This doesn't work, and Firebug gives

[jQuery] browser window close

2009-10-06 Thread Muhammad Arif
Hello All: I'm trying to close a browser window.. using windows.close().. but its not working... so can you help me. Regards

[jQuery] Pb radio, checkbox with IE6

2009-10-06 Thread cage31
Hi, I have some forms with radio and/or checkbox. I'm using the jquery form pluggin to send my forms with ajax. All is correct with FF but with IE6 (IE7 ?), the modifications of the radio or checkbox are no sended. Only the initial state is send. Is somebody can help me ? Thanks Gerard

[jQuery] Superfish - navbar - FireFox issue - submenu overlap Issue

2009-10-06 Thread VijayW
This issue observed in Mozilla FireFox 3.5.3 I am creating a simple navbar menu with 1 level deep submenus. The menu with "current" doesn't get hidden when another menu is displayed. In the following example when mouse over on "m2", along with m2's submenus rest of m1's submenus were also visibl

[jQuery] JQuery 1.2.6 vs 1.3.2

2009-10-06 Thread TRaymond
I was trying out some sample script while trying to learn JQuery and it appears that my script works fine under JQuery 1.2.6. It does NOT however work on 1.3.2. Can anyone identify what the problem is? $(document).ready(function() { $("#ddlStates").change(function() { $

[jQuery] Jquery autocomplete source code and instructions

2009-10-06 Thread sangram
hi, i have used previous version of jquery autocomplete plugin. now i wanted to use the latest version of the plugin, but i am unable to find the source anywhere! i have checked the site, the link to SVN is also not working. where can i get the plugin and instructions to use it ? any help? re

[jQuery] Re: How to add some string in attributes?

2009-10-06 Thread Liam Potter
$(function(){ $("img").hover( function(){ src = $(this).attr("src"); var newSrc = src.replace(/.png/, "-hover.png"); $(this).attr("src",newSrc); }, function(){

[jQuery] Re: How to add some string in attributes?

2009-10-06 Thread Teddy
I mean not like that... I mean what ever the src value I want to add hover when it hover and when mouse out I want delete that hover.. and when hover that image I want became like this and when mouse out that image became On Sep 28, 9:38 pm, Liam Potter wrote: > $(function(){ >    

[jQuery] (autocomplete) Extraparams and caching

2009-10-06 Thread johno
Hi, I think there is a bug in autocompleter, when you use extraParams. The cache logic is just wrong because it takes extraParams not as a part of cache key for lookup, so when you issue a request for "a term" with any parameters, the second search for "a term" will return cached results regardles

[jQuery] Re: Notre Dame Inspired Jquery -- Exists?

2009-10-06 Thread Jon Banner
one of the carousel plugins could do it for you. http://sorgalla.com/jcarousel/ http://www.gmarwaha.com/jquery/jcarousellite/ depending on your project specific needs. best. Jon 2009/10/6 Kevin Jones > > bump > > On Oct 1, 10:43 am, Kevin Jones wrote: > > http://www.nd.edu/ > > > > Their ho

[jQuery] mouseOutClose: true, ?

2009-10-06 Thread cvneo
Hello, When using the option: activation: 'click', mouseOutClose: true, the mouseOutClose does not work: ( Is this a bug?

[jQuery] Re: Autocomplete plugin: results as table?

2009-10-06 Thread Maarten
FYI: I looked into the source of the autocomplete script and I think I'm gonna try to extend it myself.

[jQuery] Re: Underline links of dynamic HTML introduced in the DOM

2009-10-06 Thread SmiThiCo
Thank you Jonathan. That worked! Rui On Oct 1, 5:24 pm, "Jonathan Vanherpe (T & T NV)" wrote: > well, if you don't underline your links, you only really needed to > define text-decoration: none once in your css. If you add > .underlinelinks before whatever the selector you used for that, it wil

[jQuery] Mouse hover event problem in a div containing another div with higher z-index

2009-10-06 Thread SmiThiCo
Hi all, I've have been struggling a hole day around this and I can't find a proper solution :( I have a div A that when I mouse hover creates and appends in run time another div B inside with an higher z-index. This new div B is a info div that I want to show within the limits of the div A. When

[jQuery] Re: What's different from keyCode to which?

2009-10-06 Thread Nalum
As far as I know one of them is not supported in IE. I can't find the explanation that I found when I first started looking at capturing user key presses. On Oct 6, 8:01 am, "David .Wu" wrote: > keyCode and which will get the same value, so anything different? > > > $(function() { >         $(

  1   2   >