[jQuery] Dialog box proble

2009-12-25 Thread k_magnai
Hi JQuery(English) Sorry For My Bad English I'm Developer of www.cms.mn website,you can show what this site can do do at this url http://www.cms.mn/?pageId=156 But I have problem with jquery dialog and other tools. JQuery dialog can't correcly working with other jquery tools For Example:My page has

[jQuery] menu hover question

2009-12-25 Thread slava
Hi, I am trying to create a vertical menu with jquery. I select the cells (divs) which have sub-menues and call .hover function to show sub-menues on hover in and hide on hover out. That works, but the problem is its impossible to select a sub-menu sinse they are hidden as soon as you hover out fro

[jQuery] Handling BACK button depending on hash value in URL

2009-12-25 Thread knyttr
Hello, I am trying to handle back button on my page so a function would be called whenever I press the button. I dynamically set the "location.hash" value on the page. I was hoping to achieve the functionality by onBeforeUnload, but it does not react on change of hash value in url – it just reacts

[jQuery] How can i make a friendfeed like window scroll control system?

2009-12-25 Thread needim
When you active real-time updates, new entries dynamically adding a div. At this stage scroll is automatically moving. This action provides the content you do not miss on visible area. If you want to see this action, you can also watch this screencast; http://www.viddler.com/explore/itod/videos/45

Re: [jQuery] Anchor navigation /like facebook

2009-12-25 Thread Shawn
I don't think you quite understand what it is you are wanting. Or maybe I'm just a little t drunk.. :) navigation like that has nothing to do with Ajax. Using URLs like that to request Ajax based data/content is something else. If you really truly mean navigation, then may I suggest jus

[jQuery] Re: Read/Get Data From Other URL

2009-12-25 Thread Pram
I see..., thanks johan! On Dec 26, 3:20 am, johan wrote: > You can't do xhr-requests from subdomains (or other 3'rd party > domains), it's a browser restriction. > You can however achieve the same effect by some neat tricks. > Here is a good page that explains this well > > http://abhinavsingh.co

[jQuery] Re: Attaching an event to a non-existing element?

2009-12-25 Thread MorningZ
My bad for missing that the event was "change" you could use the 1.4 alpha version of jQuery's ".live()" though :-) Details about ".live()" overhaul http://blog.jquery.com/2009/12/04/jquery-14-alpha-1-released/ Latest version http://blog.jquery.com/2009/12/18/jquery-14-alpha-2-released/ On De

[jQuery] Anchor navigation /like facebook

2009-12-25 Thread malts...@gmail.com
Hi there, I am trying to find some plugin, which can make AJAX request's by parsing ANCHOR value, from URL... For example I have an ajax gallery and I want to make navigation like this www.example.com/gallery.php#photo=1 www.example.com/gallery.php#photo=2 www.example.com/gallery.php#photo=3 An

[jQuery] Re: Attaching an event to a non-existing element?

2009-12-25 Thread Johan Borestad
I would really recommend the listen plugin for jQuery by Aaron Flesler. It's an excellent plugin that also fixes the focus/blur bug in IE6. Have been using it for over two years now (before live() was implemented), and it also have good support for the dblclick event: http://plugins.jquery.com/proj

[jQuery] Re: live event with instant execution

2009-12-25 Thread Johan Borestad
Hi! I'm not really sure of what you're trying to do, but the main problem is that you're not passing all selectors to your flexinInitialiseElement method. Maybe somethingl like this will help you. It's iterationg through all dom nodes and passing them to flexinInitialiseElement. $("*").each(functi

[jQuery] Re: Read/Get Data From Other URL

2009-12-25 Thread johan
You can't do xhr-requests from subdomains (or other 3'rd party domains), it's a browser restriction. You can however achieve the same effect by some neat tricks. Here is a good page that explains this well http://abhinavsingh.com/blog/2009/11/making-cross-sub-domain-ajax-xhr-requests-using-mod_pro

[jQuery] Re: live event with instant execution

2009-12-25 Thread Šime Vidas
The load event wont help you... it has to do with stuff having finished loading, but you are creating new elements based on an AJAX response, so the new elements are not being loaded at all. Well, you can allways initialize the elements after you create them I can't see the problem For e

[jQuery] Re: using ":gt" - Firefox error console annouces an error

2009-12-25 Thread Šime Vidas
I just used an rediculous string like "my super selector" to point out that Firefox shoudn't care what we put inside $() As long as you know that the string is valid for jQuery and you get the expected results, you shoudn't care about warnings from Firefox

Re: [jQuery] [ask]problem with ajax

2009-12-25 Thread PUTRA PRIMA
yes its done ^^ thx rick On Fri, Dec 25, 2009 at 6:13 PM, Rick Faircloth wrote: > Check out the .live() function in jQuery for enabling > > ajax-added links to your HTML. > > > > hth, > > > > Rick > > > > *From:* jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] *On > Behalf Of *PUT

[jQuery] Read/Get Data From Other URL

2009-12-25 Thread Pram
I try use the jquery, but I have a problem. 1. I save jquery.js in the root (example www.mysite.com) and in the bottom of jquery.js file I add this script: $(document).ready(function(){ $.get("http://www.mysite.com/data.php";, { SearchFormName: BalizonSearchFormName, dt: cnt }, function(data){ $(

[jQuery] jQuery AutoComplete plugin & url problem

2009-12-25 Thread wenyus
I am using a jQuery AutoComplete plugin. My code is not working: var jj=$("#region_area").val(); $("#code_area").autocomplete( "codearea.php?id="+jj , {autoFill: true,matchContains: true}); This also not working: var jj=$("#region_area").val(); jj="codearea.php?id="+jj; $("#code_area").autocompl

[jQuery] Slideshow Question

2009-12-25 Thread Ammar Rayess
Greetings, Take a look at this website please: http://new.music.yahoo.com/ You can see in the middle the flash slideshow that shows pix in middle, overlayed with text and on the right column a title, ofcourse clicking on different titles activate the related image with text. I looked at the plug

[jQuery] Re: function not defined

2009-12-25 Thread Saledan
I tried again with "this" reference, and now with settings.originalCall.myFunction() I received that the function is not a function :-\

Re: [jQuery] using ":gt" - Firefox error console annouces an error

2009-12-25 Thread fran23
yes, it's just a warning, we can ignore it, but thats not fine I'm not sure whether it make sense (or it could be useful) to continue this thread, but I do not totally comprehend your comments: > well, jQuery will not know what to do with the > string, because it's neither a selector string nor

[jQuery] Re: live event with instant execution

2009-12-25 Thread speedpac...@gmail.com
Basically execute additional javascript code based on a classname adding functionality to these elements... I tried the following, but it doesn't seem to be working... jQuery('*').load(function () { // run code console.log("DEBUG: Initialising element " + jQuery(this)); fle

RE: [jQuery] [ask]problem with ajax

2009-12-25 Thread Rick Faircloth
Check out the .live() function in jQuery for enabling ajax-added links to your HTML. hth, Rick From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of PUTRA PRIMA Sent: Friday, December 25, 2009 1:01 AM To: jquery-en@googlegroups.com Subject: [jQuery] [ask]pro

[jQuery] function not defined

2009-12-25 Thread Saledan
Hello, it's a long time that I don't write some code with jquery. Yesterday I wrote some lines for my photo portfolio script. I use lightbox plugin, but also I wrote few functions to manage the thumbnails slide show. I include the lightbox plugin script and into the main html I add my own function