[jQuery] Re: get hover function behave right

2009-07-18 Thread runrunforest
Thank you, do as you said and it works.

[jQuery] Re: Jquery UI Tabs and Ajax

2009-07-18 Thread havanna
Hi Klaus, thank you, for your answer. I found my problem... I have a function in beforeRender of AppController from CakePHP where I load the layout. This disable my Ajax Layout in the function of the called controller. Regards Thomas On 17 Jul., 07:07, Klaus Hartl klaus.ha...@googlemail.com

[jQuery] Re: Value adding to drop down

2009-07-18 Thread Theodore Ni
Please post again your current jQuery code including the separator you are using, as well as what is inside the data variable in full. That way, we can understand exactly what's going on; right now, I'm still confused. Teddy On Sat, Jul 18, 2009 at 12:07 AM, naz s.na...@gmail.com wrote: i

[jQuery] Re: Allow iframe from remote domain have javascript access

2009-07-18 Thread Theodore Ni
As far as I know, not directly with JavaScript. You seem to be encountering limitations imposed by the same origin policy for security purposes. For some information on the same origin policy, see

[jQuery] Re: jquery ui dialog get element from button

2009-07-18 Thread Carlo Landmeter
Thanks for tip for my vars. I have tried the code you provided but this does not work. When i click my delete button it will complain that somevar is not set. So i guess it means the dialog function is run before the somevar variable is set. Anyway arround this? carlo On Fri, Jul 17, 2009 at

[jQuery] How to repeat execution of js on 'click' function?

2009-07-18 Thread Piers Plowden
I'm trying to figure out a click function that would execute a js function twice with, say, a 500 ms delay between each when the user clicks on an a href. The js function i want to execute twice is document.movie.SetURL - would something like this work?: $(document).ready(function () {

[jQuery] Re: Value adding to drop down

2009-07-18 Thread Jules
I tested your code with the following data var data = 'program1|program2|program3|'; and the drop down combo box displays program1 program2 program3 correctly. Again could you post the value of your data? On Jul 18, 2:07 pm, naz s.na...@gmail.com wrote: i m using internet explorar.and data

[jQuery] background image fade-in fade-out transition every 3 seconds

2009-07-18 Thread pennfoli0
Hi, How do I tween background images every 3 seconds it would change with a fade-in and fade-out effect? I would like it to apply in my body with background-image in my css. thanks!

[jQuery] [Ajaxify] Problem in noConflict-Mode

2009-07-18 Thread rigo
Hi, when I run ajaxify in the noConflict-Mode (together with MooTools :P ), the Option tagToload is not performed respectively the correct returned data is not put in the defined selector. Can anyone resolve this problem? Has anyone a solution? cu rigo

[jQuery] Re: Another image rollover question

2009-07-18 Thread leofromrio
After some more digging and basic research I was able to come up with this. I tried to work with .add/removeClass instead of .css, but couldn't get it to work the way I wanted to. This seems to work just fine: $(document).ready(function() { $(.btn.up).mouseover(

[jQuery] autocomplete mustmatch problem [autcomplete]

2009-07-18 Thread rekna
I'm using jquery autocomplete 1.0.2. The autocomplete retrieves data from the server and the option mustmatch is set to true. My data on the server has a code field and a description, and I'm returning code+ +description|id an example of data returned by the server would be: FIN Finance|2 PER

[jQuery] How do I add parameters dynamically, right before the form submit ?

2009-07-18 Thread debussy007
Hi, When the user clicks on the submit button, I would like to add some parameters to the form before submitting it (standard post submit, no ajax) How may I achieve this ? Thank you for any help. -- View this message in context:

[jQuery] Superfish nav-bar style hover problem

2009-07-18 Thread Matt Hull
Hovering on the navigation that has no children - what's new, or Learn with us. Instead of showing a blank subnav, it is still showing the current drop-down. Is there any way to make the children blank? Example of my issue: http://update.creativejunction.org.uk/talk-with-us/ This superfish

[jQuery] JSON form submit

2009-07-18 Thread NightFox
Hello, I'm working on an order system where I get to see all my purchase orders. But the problem is that I want to submit my result with AJAX by an JSON key. The first problem that I encounter is that I need to retrieve all the input boxes of that particular order. If I use $(:input) then I get

[jQuery] Accordion in a for loop

2009-07-18 Thread dracero
I was trying to build an Accordion menu using a for loop but all of my trying failed. Could anybody tell me how to perform that action (if it is possible)? Thanks in advance.

[jQuery] HTML :contains selector equivalent

2009-07-18 Thread KuroTsuto
Hey, One component to my current project involves retrieving various blocks of text and html from a database that are displayed on a website (a website that is composed of the same blocks of text and html from the same database) via $.getJSON, and thereafter locating each of the retrieved blocks

[jQuery] Re: event.preventDefault(); not working in IE

2009-07-18 Thread richard harriman
Hi, Here's how it looks: script type=text/javascript !-- $(document).ready(function() { $(#send).click(function (e){ e.preventDefault(); }); }); On Fri, Jul 17, 2009 at 4:28 PM, robotwink robotw...@gmail.com wrote: Hi, Here's how it looks: script

[jQuery] Refused to set unsafe header Connection in Safari

2009-07-18 Thread Penobscot
I get this error in Safari when using AJAX.getJSON(): Refused to set unsafe header 'Connection' The odd thing is that I only get this error on certain machines and they are all running the same version of safari. Any Ideas? -Penobscot

[jQuery] Superfish hover problem

2009-07-18 Thread Matt Hull
Hovering on the navigation that has no children - what's new, or Learn with us. Instead of showing a blank subnavigation, it is still showing the current drop down. Is there any way to make it blank? Example of my issue: http://update.creativejunction.org.uk/talk-with-us/ This superfish

[jQuery] Variable scope trouble

2009-07-18 Thread rhodopsin
I am attempting to use the return value from a nested ajax function as the value for a variable in its parent. However, despite being able to successfully assign the variable within the nested function, it reverts back to its original value after the child function has terminated. Below is the

[jQuery] Background position change repeatedly on keypress

2009-07-18 Thread Dave
Hi there! I have a background image I want to change position when I press the arrow keys. I want the background to move 16 pixels for every press in the direction I indicate. I can't get this to work, however. I have jquery installed, as well as the background-position plugin. Here's my code:

[jQuery] Superfish Menu Drop Left ?

2009-07-18 Thread mike177
Hello, Is there anyway to make a vertical super fish menu drop left? I have positioned the menu on the right side of the page so, I need sub-menus to drop left. Is this possible? Many thanks, Mike

[jQuery] $.ajax How-to?

2009-07-18 Thread Pedro Vidal
Hello guys, my first time writing to group...I'm a beginner in jquery and I'm trying to learn the $.ajax() method. I created a simple form (3 inputs) and the form should send the data (via ajax) to the page ajax.php which will return the data to be written in a div (#mensagem), just it. But I

[jQuery] Re: Superfish Menu Drop Left ?

2009-07-18 Thread Charlie
yes, you can make it open left by modifying CSS. Rework left floats to right and sub ul positions from left to right mike177 wrote: Hello, Is there anyway to make a vertical super fish menu drop left? I have positioned the menu on the right side of the page so, I need sub-menus to drop

[jQuery] Re: Superfish nav-bar style hover problem

2009-07-18 Thread Charlie
you can add classes ( either hard code or script) to the main items that don't have children, then use a css hover and current rule that positions visible sub tags offscreen Matt Hull wrote: Hovering on the navigation that has no children - what's new, or Learn with us. Instead of showing

[jQuery] Jquery Pass Layer Name

2009-07-18 Thread James W
Hello, I am trying to load a report onto my page via ajax, the code post below currently works but what I would like to be able to do is pass the layer into which the results of the ajax request should be loaded as there are lots of boxes within the reports that require new data to be loaded on

[jQuery] Jquery Pass Layer Name

2009-07-18 Thread James W
Hello, I am trying to load a report onto my page via ajax, the code post below currently works but what I would like to be able to do is pass the layer into which the results of the ajax request should be loaded as there are lots of boxes within the reports that require new data to be loaded on

[jQuery] Re: Variable scope trouble

2009-07-18 Thread rhodopsin
After getting a good nights sleep, and doing more research, it seems the problem is not scope-related, but ajax-related. The advice I have read suggests setting return values from within the ajax callback function, because of the asynchronous completion of the ajax function. So, I have attempted

[jQuery] Re: I dont understand why this doesnt work.

2009-07-18 Thread Brett Ritter
On Fri, Jul 17, 2009 at 4:09 PM, Mikemgor...@gmail.com wrote: and FireBug, something is replacing GET with OPTIONS.  But in IE and Opera, it is still showing up as GET.  I dont get it As mentioned, the Same Origin Policy is killing the request. The OPTIONS part is because FF3.5 now allows

[jQuery] can superfish be vertical on the right side of the page?

2009-07-18 Thread mike177
Hello, I would like to know if there is any way to control a vertical superfish so that it sits on the right side of the page and the menus drop left? Many thanks, Mike

[jQuery] body background fading images in cycle? need help...

2009-07-18 Thread pennfoli0
Hi, I am looking for a solution to change my body's background with a list of backgrounds in every 3 seconds with some fade-in and fade-out transitions, I also want it to cycle back to its beginning image. script jquery/script style .bodyBG1 { image1 } .bodyBG2 { image1 } .bodyBG3 { image1 }

[jQuery] Re: can superfish be vertical on the right side of the page?

2009-07-18 Thread Charlie
you already asked this in another earlier and reply is there http://groups.google.com/group/jquery-en/browse_thread/thread/30f15f2a1cfc11cc# mike177 wrote: Hello, I would like to know if there is any way to control a vertical superfish so that it sits on the right side of the page and the

[jQuery] Re: Variable scope trouble

2009-07-18 Thread Michael Geary
The problem is the use of 'this' in the inner function. In that code it no longer means what you want it to mean. Try this (pun intended) instead: $('a[href^=logmar]').queue(function(){ var $this = $(this); var args = $this.attr(href).split('?')[1]; if(args.charAt(0) ==

[jQuery] Multi jquery plugins in 1 page?

2009-07-18 Thread Tzontonel
I want to put in 1 page two jquery plugin, but one of this plugin don't work when i put 2 plugin. I am a noob in jquery and I want to know if 2 jquery plugin in 1 page works fine?

[jQuery] Re: Using ProgressBar

2009-07-18 Thread Pedro Vidal
Hello friend, here's a nice tutorial: http://net.tutsplus.com/tutorials/javascript-ajax/create-a-progress-bar-with-javascript/#more-4045 I guess it could help you! []'s Pedro Vidal Brazil. 2009/7/18 shaf shaolinfin...@gmail.com Hi Guys I want to use the progress bar to display to content

[jQuery] Re: My new website AllJobsXChange.com developed with Jquery

2009-07-18 Thread RobG
On Jul 18, 9:40 am, son sco0...@yahoo.com wrote: Thank you Rob. I can't remember what make me use the XHTML doctype, I thought I had some problem with running some jquery stuff, but not sure. what is the ideal doctype the will work well with JQuery? jQuery is irrelevant, the best (and

[jQuery] Using ProgressBar

2009-07-18 Thread shaf
Hi Guys I want to use the progress bar to display to content load progression when the site is loaded (like gmail). How can I do this ?

[jQuery] Vertical Slider Issues

2009-07-18 Thread liquidcomma
Hello, I am trying to build a vertical slider using jQuery. I have made horizontal ones work in the past. No matter what I try it dosen't seem to work in any capacity. The GALLERY - OCCASION CAKES page is what I'm testing on. Link:

[jQuery] Re: jCarousel Appears Vertical then Horizontal

2009-07-18 Thread Andy
Hey Guys, Getting the same issue - anyone know of any other fixes to this problem ? Really need some help!? Thx

[jQuery] Re: jCarousel Appears Vertical then Horizontal

2009-07-18 Thread Charlie
Can you post a link? This problem surely has an easy solution but not easy to guess what it is without seeing it. Be a lot easier to debug real thing in firebug . Andy wrote: Hey Guys, Getting the same issue - anyone know of any other fixes to this problem ? Really need some help!? Thx

[jQuery] Selector help

2009-07-18 Thread Warfang
I'm pretty new to Javascript/ jQuery, so this is really bugging me. I'm trying to get the height of an h1 that is a sibling to this. The value for the variable h1Height, however, returned as null in the console in Firebug. Perplexed, I tried console.logging ('this'+'+h1') to see what it was

[jQuery] Re: Selector help

2009-07-18 Thread Michael Lawson
Selectors are strings, including the special operators. So your select should look like this: 'this + h1'. What you have there just concatenates the two strings together making your selector 'thish1' cheers Michael Lawson Development Lead, Global Solutions, ibm.com Phone: 1-276-206-8393

[jQuery] Re: Selector help

2009-07-18 Thread Charlie
you can't use "this" in same manner as tagnames, ID's or class as a selector in combination with other selectors the way you are attempting. try: h1Height = $('this').siblings('h1').height(); Warfang wrote: I'm pretty new to _javascript_/ jQuery, so this is really bugging me. I'm