[jQuery] pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
hi i have written jquery for a site; after a while for sth that i don't know it don't work anymore and direbug give an error like this: $(div#peik) is null $(div#peik).hide(); and when i try to write $(document).ready() in firebug, it return : TypeError: $(document) is null whyyy

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
nooo, it wasn't helpful if anybody can help me please send a pm me at yahoo messsenger at ( [EMAIL PROTECTED]) thankks :-s On Dec 10, 12:22 pm, JQueryProgrammer [EMAIL PROTECTED] wrote: Try this: $(function() {     // your code goes here. }); Also while including the jquery file, write

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
://www.finaleshop.com you must buy a product and then goto checkout_confirmation.php page (i suggest that pm me to talk about it ! :-s ) On Dec 10, 12:33 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: nooo, it wasn't helpful if anybody can help me please send a pm me at yahoo messsenger

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
/jqCore.js On Dec 10, 12:38 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: can you cut and paste the full html on the page, and show the javascript external file links. that should be enoughf thanks. On Wed, Dec 10, 2008 at 10:36 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: ok, the code

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: Are you mixing any other frameworks on the page e.g. Prototype? From: jquery-en@googlegroups.com on behalf of [EMAIL PROTECTED] Sent: Wed 10/12/2008 09:36 To: jQuery (English) Subject: [jQuery] Re: pleeease heeelp me noww ok

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
:)) no dear you're right but i was trying somthing that JQueryProgrammer was said i just write wrong for a scond see it now ! ;) it has error nooow! On Dec 10, 12:53 pm, Alexandre Plennevaux [EMAIL PROTECTED] wrote: inhttp://www.finaleshop.com/includes/javascript/rahnema1.js you have a typo

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
thanks Alexandre and other i have this problem yet ! and i have to go to university ! I check your other answers later thanks before... On Dec 10, 1:13 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: :)) no dear you're right but i was trying  somthing that JQueryProgrammer was said i

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread [EMAIL PROTECTED]
wos! something that Chandan said, was helpful !! some one had written a code and in his code define a function with $ it was the problem o... thanks guys :) On Dec 10, 12:21 pm, Chandan Luthra [EMAIL PROTECTED] wrote: the jquery library must be conflicting with some other

[jQuery] Re: jQuery Form Plugin - success callback function isn't called

2008-12-09 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote: Theformsubmits as it should, using an AJAX call. When I add a beforeSubmitcallbackfunction to the options array, that gets called as well, as it should. Only the successcallback(the alert) isn't called and I don't know why. Maybe the call wasn't successful.  Can

[jQuery] Re: jQuery Form Plugin - success callback function isn't called

2008-12-09 Thread [EMAIL PROTECTED]
sure that the alert does not work on these callbacks (including error and complete ones either). On 7 nov, 15:34, Mike Alsup [EMAIL PROTECTED] wrote: The form submits as it should, using an AJAX call. When I add a beforeSubmit callback function to the options array, that gets called as well

[jQuery] JQuery Validation Dynamic updates

2008-12-09 Thread [EMAIL PROTECTED]
I have javascript code that alters the values inside the validate attribute set on a ui element. An example of what I change is validate=required:true, messages{required:'Please give a value} to validate=required:true,messages{required:'Give a different value'}. This is changed via javascript

[jQuery] Traverse XML string

2008-12-07 Thread [EMAIL PROTECTED]
Hi, I want to read the values from a simple xml string but can't get it to work. Here's the code: var xml = foodburgercheese/burger/food; // example 1 var result = $(xml).find(food).find(burger).text(); // example 2 $(food, xml).each(function(i) { result = $(this).find(burger).text();

[jQuery] Re: Traverse XML string

2008-12-07 Thread [EMAIL PROTECTED]
Methvin [EMAIL PROTECTED] wrote: var xml = foodburgercheese/burger/food; var result = $(xml).find(food).find(burger).text(); The root node for your xml is food, so when you try to find a nested food node in that it fails. Try $(xml).find(burger).text();

[jQuery] UI Datepicker Regional

2008-12-05 Thread [EMAIL PROTECTED]
Hello all, I can't get the regional settings (language etc) to work with my datepicker - the changes I have made other than that are: $(#dateInput).datepicker({ closeText: 'Luk', prevText: 'laquo; M', nextText: 'M raquo;', currentText: 'M',

[jQuery] cluetip mouse tracking

2008-12-05 Thread [EMAIL PROTECTED]
Hi, I'm interested in using the cluetip mouse tracking plugin, but I noticed that the feature is experimental. Does anyone have more info on this? Are there plans to support it fully? In the meantime, am I safe using it in the major browsers?

[jQuery] Re: someone please for to helps me!

2008-12-03 Thread [EMAIL PROTECTED]
awaitting ... On 11月21日, 上午5时47分, dickles [EMAIL PROTECTED] wrote: very simple codes not run right. test for when popup window is loaded... i try everything, very frustration! please for you to helps, 1,000 thanks in advance to you! from parent window: script type=text/javascript var

[jQuery] Re: how to avoid overhead

2008-12-02 Thread [EMAIL PROTECTED]
I would start by evaluating the requirement for adding 1599 divs. The way you have written it is probably the most efficent cross browser way of appending that much content but it will still crawl. On Dec 2, 10:53 am, Dirceu Barquette [EMAIL PROTECTED] wrote: Hi! The code: for (i = 0; i

[jQuery] Re: Has jQuery development halted?

2008-12-02 Thread [EMAIL PROTECTED]
Hi Ariel, On Dec 1, 2:39 pm, Ariel Flesler [EMAIL PROTECTED] wrote: I'd simply check the trac to see if developmenthalted, instead of asking it publicly in such a challenging way. It might be obvious to you to 'simply check the trac', but i'm sure a lot of people have never been

[jQuery] jquery validation trailing comma error

2008-12-01 Thread [EMAIL PROTECTED]
Hey guys, i read about that trailing comma error in several other posts, but i just can't fix that problem. IE7 still submits the form even if the required fields are empty. Here's my jquery code: Hope you can help me. thanks in advance. var validator = $(#adventsform).validate({

[jQuery] How can JQuery trigger events in parent frame?

2008-11-29 Thread [EMAIL PROTECTED]
I have one html page with one iframe in parent frame, I have $('#x').bind('blur',function(){alert(1)}); input id='x' name='text'/input in the iframe, I can use $('#x',parent.document.body).val(); to retrieve the parent element value, but I cannot use

[jQuery] Can't get appropriate elements from server response.

2008-11-27 Thread [EMAIL PROTECTED]
Here is JS my code where I intend to get 2 DIVs and use there content. $.post( someAction, $.param(outData), onUpdatePostSuccess ); function onUpdatePostSuccess(data) { alert(data); var newTitleHTML = $(#newTopicTitle, data).html();

[jQuery] jquery swfobject Flash detection

2008-11-26 Thread [EMAIL PROTECTED]
Hello. There is a Flash movie in my page - if the user doesn't have Flash, I want a jQuery Cycle slideshow to play instead. It all looks great, but I don't know how to tell whether the slideshow is running even if it's not needed! Will my jQuery function run, even after SWFObject has removed

[jQuery] Re: jquery swfobject Flash detection

2008-11-26 Thread [EMAIL PROTECTED]
it instead! I'd still like to know what vars can be returned from SWFObject for this purpose, though, if anybody has that info ... C. On Nov 26, 3:32 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello. There is a Flash movie in my page - if the user doesn't have Flash, I want a jQuery

[jQuery] ajaxSubmit

2008-11-26 Thread [EMAIL PROTECTED]
Hi, I am using ajax form plugin. After I defined the new value (different with the attribute value of the form) of url and type properties within Option Object, and pass options to ajaxSubmit. It didn't override the form attribute value. Anyone knows why? Thanks

[jQuery] Ajax Call on form submit

2008-11-26 Thread [EMAIL PROTECTED]
Hi, I am sending user to different sites based on their attribute once they log in. I added a ajax call to check the users attribute before submitting login form. I am implementing this using ajax form plugin. The ajax call reside in beforeSubmit call back function, it seems that the ajax call

[jQuery] trying to act on certain DIV's and not others

2008-11-26 Thread [EMAIL PROTECTED]
Hi folks, apologies if this is a completely noob question. I wish to close (hide) and number of div's whilst leaving others open. I considered the possibility that it might be feasible in Jquery to act on div's with a certain pattern in the id name. Not sure if this is true tho; for example div

[jQuery] ajaxSubmit plugin

2008-11-26 Thread [EMAIL PROTECTED]
Hi, I am trying the ajax form plugin. After I defined new value of url and type properties within Option Object, those values of the properties didn't override the corresponding attributes value in the form. Does anyone know why? Thanks

[jQuery] Re: ANN: Books-a-million.com using jQuery

2008-11-25 Thread [EMAIL PROTECTED]
top site? 1Mb homepage downloadjq and proto...hmmm Am I missing something? On Nov 25, 4:37 am, Andy Matthews [EMAIL PROTECTED] wrote: I used to work for the web company who developed the original BAM site, and now a friend of mine is project manager for them. They just released a new

[jQuery] :nthchild, :eq help

2008-11-25 Thread [EMAIL PROTECTED]
Basic Issue: Can you use a variable in place of the index in functions like :nthchild() and :eq() and if so, how? Detailed description: I'm new to jquery and am trying to create an image viewer. I've marked it up and used jquery so that when you click on a thumbnail image, jquery returns the

[jQuery] Re: How to bind validation to new loaded form?

2008-11-25 Thread [EMAIL PROTECTED]
I still dont get it, how to bind my new loaded form. I have installed live query now, but i am still doing it the wrong way. used this to bind: $(#signupForm).bind(submit, function() { return false; }) I should expect that submitting this form, would be disabled thenbut no tried this:

[jQuery] Re: validate - only show certain messages

2008-11-25 Thread [EMAIL PROTECTED]
Hi there, i suppose, when you dont want to show a message error, you also do not want validate that particular input?? (else it sounds not logic to me, if you validate, you show error messages) Assuming your code is derivated from the example from the plugin, you see rules and messages inside

[jQuery] Re: jCarousel problem in Chrome

2008-11-24 Thread [EMAIL PROTECTED]
Update: Found the problem, it was a CSS issue, the carousel container not being floated correctly. Ade. On Nov 24, 1:50 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Does this work with Google Chrome? All looks fine on page load. However, the thumbnails overshoot (can't think

[jQuery] Re: jeditable - Tabbing between jeditable elements

2008-11-24 Thread [EMAIL PROTECTED]
it. -jl On Nov 21, 12:03 am, Mika Tuupola [EMAIL PROTECTED] wrote: On Nov 21, 2008, at 7:10 AM, [EMAIL PROTECTED] wrote: At present, a tab keyPress results in discarding the edits. I have not been able to get the callback to fire to submit the edit then change focus to the target element

[jQuery] Re: How to bind validation to new loaded form?

2008-11-24 Thread [EMAIL PROTECTED]
hanks for the reply. I got this anwer on a previous question. (very helpfull, cause a few days ago i did not know binding even existed) So i understand that i have to bind my new form to my validation script. But i cant get it working this time. I have tried to validate just one input for an

[jQuery] Capturing Tab and enter key at document level using JQuery

2008-11-24 Thread [EMAIL PROTECTED]
Hi, Could anyone of you suggest the best way to capture tab and enter key at document level using JQuery? Thanks in advance for your help

[jQuery] jCarousel problem in Chrome

2008-11-23 Thread [EMAIL PROTECTED]
Hi, Does this work with Google Chrome? All looks fine on page load. However, the thumbnails overshoot (can't think of a better way of describing it) when using the next button. In other words, when scrolling, the thumbnails are not contained within the carousel. I guess this is a CSS issue

[jQuery] How to bind validation to new loaded form?

2008-11-22 Thread [EMAIL PROTECTED]
Hi all, i have tried to transform a bind example to my situation, but i can't get it working. Via my menu, i load a form which i want to validate. ( with Validation plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Loading the form into my content div works fine,

[jQuery] Re: exclude children from selected elements

2008-11-21 Thread [EMAIL PROTECTED]
the current tartget is one of them ? ricardobeat I need to select all objects of the page because I want to do a DOM inspector. But yes you are right, maybe I should only start from body ! Thanks On 20 nov, 18:25, ricardobeat [EMAIL PROTECTED] wrote: Are you sure you want to apply it to *all

[jQuery] Re: exclude children from selected elements

2008-11-21 Thread [EMAIL PROTECTED]
around other elements and the top one has class .ui-dialog . All sorted. Thanks . On 21 nov, 09:32, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: It still doesn't work. I think part of the problem is because the children of main are added after I create the event listener. Second solution

[jQuery] jCarousel (by Jan Sorgalla) scrolling integer problem

2008-11-21 Thread [EMAIL PROTECTED]
I am using Jan Sorgalla's jcarousel, and it seems that the integer for the scroll doesn't really work. No matter what I do, or set it to, it always scrolls/advances by 3 frames. scroll integer 3 The number of items to scroll by. If I set the above to 1 or 100, it always scrolls by three.

[jQuery] Re: jCarousel (by Jan Sorgalla) scrolling integer problem

2008-11-21 Thread [EMAIL PROTECTED]
Nevermind, I was able to dig this up from Jan on another post and it fixed my problem. It was inline on the actual html page, and not controlled by the js file that is referenced. I still don't understand why the document that is referenced doesn't control the scrolling, but hey, I'm a newbie!!

[jQuery] dialog on the fly

2008-11-20 Thread [EMAIL PROTECTED]
Hi, In my ready function I create a div on the fly and try to create a dialog box out of it : $(document).append('div id=main class=flora/div'); $(#main).dialog(); But nothing happens. Is it at all possible to do this or should the div exists when the page is created ? Thanks

[jQuery] Re: dialog on the fly

2008-11-20 Thread [EMAIL PROTECTED]
actually it works if i append the div to the body $(body).append('div id=main class=flora/div') On 20 nov, 11:00, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, In my ready function I create a div on the fly and try to create a dialog box out of it :  $(document).append('div id

[jQuery] Re: jsonp to WCF problem

2008-11-20 Thread [EMAIL PROTECTED]
Hi, Could you make the JsonModule and JsonStream objects available? That would save me a couple of hours making them myself. Your help is realy appreciated. Thanks, Edwin Vermeer

[jQuery] Re: jsonp to WCF problem

2008-11-20 Thread [EMAIL PROTECTED]
requests. On 20 nov, 08:06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, Could you make the JsonModule and JsonStream objects available? That would save me a couple of hours making them myself. Your help is realy appreciated. Thanks, Edwin Vermeer

[jQuery] loading css in the ready() function

2008-11-20 Thread [EMAIL PROTECTED]
Hi, I want to load the flora css on the fly in the ready() function : $(document).ready(function(){ $(head).append('link rel=stylesheet href=http://dev.jquery.com/ view/tags/ui/latest/themes/flora/flora.all.css type=text/css media=screen title=Flora (Default)'); $(body).append('div id=main

[jQuery] Re: jsonp to WCF problem

2008-11-20 Thread [EMAIL PROTECTED]
), System.Runtime.InteropServices.GuidAttribute(09A4A7FA-97AC-4CF8- B264-305EB987AC5F)] public class myService : ImyService On 20 nov, 13:15, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I am trying to implement a HttpModule but can't get it to work. Can you please post the code plus config

[jQuery] exclude children from selected elements

2008-11-20 Thread [EMAIL PROTECTED]
Hi, I want to apply a mouseover event on all elements but one and its children. I can't use class name to filter. How can I do it ? I've tried unsuccessfully : $(*:not(#main)).not($(#main).children()).mouseover(function() { }); thanks

[jQuery] Re: exclude children from selected elements

2008-11-20 Thread [EMAIL PROTECTED]
That doesn't work, it doesn't exclude #main and its children On 20 nov, 17:07, Hector Virgen [EMAIL PROTECTED] wrote: This might work better with filter() (untested): $('*').filter('#main, #main *').mouseover(function() { }); -Hector On Thu, Nov 20, 2008 at 8:07 AM, [EMAIL PROTECTED

[jQuery] jeditable - Tabbing between jeditable elements

2008-11-20 Thread [EMAIL PROTECTED]
I am using the jeditable plugin with autocomplete and its working perfectly. (Thanks Mike!) I would also like to have the ability to tab from one jeditable element to another jeditable element. It is possible to tab between text inputs in forms and I would like to have this analogous behavior

[jQuery] Problem with $(this).animate() on IE (naturally)!!

2008-11-19 Thread [EMAIL PROTECTED]
Hi,everyone, I try to do menu with animate efect, but it doesn't work on IE or work in a strange way: animate height and margin, but not the colors, or don't animate things in second function...?!! This is my function: $(document).ready(function(){ $(.menuEffect).hover(function() {

[jQuery] highlighting elements of the page

2008-11-19 Thread [EMAIL PROTECTED]
Hi, I'm trying to highlights elements of the page on mouseover. I want to highlight all td's h1's and p's when the mouse is over. $(td, h1, p).mouseover(function() { $(this).css(backgroundColor, CC); }); $(p, h1, td).mouseout(function() { $(this).css(backgroundColor,

[jQuery] Searchbox - Search into a Page - only in letters a-z

2008-11-19 Thread [EMAIL PROTECTED]
Hi Dudes! My question in like this: I use jquery-1.2.6.min and have created a function (thanks to Waldek at Imtech who has opened the port from SharePoint to Jquery) wich contains a search box in a regular ASPX- file, when you search in the box for ex as, all the words in the content on the page

[jQuery] Searchbox - Search into a Page - only in letters a-z

2008-11-19 Thread [EMAIL PROTECTED]
My question in like this: I use jquery-1.2.6.min and have created a function (thanks to Waldek at Imtech who has opened the port from SharePoint to Jquery) wich contains a search box in a regular ASPX- file, when you search in the box for ex as, all the words in the content on the page are

[jQuery] Executing Dynamic Javascript

2008-11-18 Thread [EMAIL PROTECTED]
I have an issue that I initially thought was a jQuery problem, but after simplifying things in preparation for posting my question, I see that it's a fundamental javascript matter. I don't understand why this works: http://pastebin.com/m3a767745 but this doesn't: http://pastebin.com/m346451b4

[jQuery] How do I write an expression to get all checked items of a certain class?

2008-11-18 Thread [EMAIL PROTECTED]
Hi, How do I write a JQuery expression that will give me all the elements that are inputs of type=checkbox, that have class=subscrCheckbox and that are checked? Thanks, - Dave

[jQuery] [validate] equalTo negative ? :)

2008-11-17 Thread [EMAIL PROTECTED]
Hi everyone, i'm interested in checking two of my inputs to be not equal to each other ( username and password ). Anyone had this problem before ?

[jQuery] History with Ajax

2008-11-17 Thread [EMAIL PROTECTED]
I'm using this plugin http://plugins.jquery.com/node/2472 to manage history in Ajax I've changed the line code $([EMAIL PROTECTED]'history']).click(function(){ by $j('body').intercept('click', [EMAIL PROTECTED]'history'], function(e){ it works perfectly in Firefox i still have the problem using

[jQuery] [validate] not equalTo ?

2008-11-17 Thread [EMAIL PROTECTED]
Hi everyone, i'm new to jQuery and yesterday i got into a little issue with form validation. What i want to do is to check if username and password fields are having the same input, but I haven't found a solution to do this. Is there any way to make equalTo 'nagative' so if user enters the same

[jQuery] Re: not equalTo ?

2008-11-17 Thread [EMAIL PROTECTED]
sorry for double posting it, but i'm really stuck on this one and can't go on with the project until it's done :( On Nov 17, 6:03 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi everyone, i'm new to jQuery and yesterday i got into a little issue with form validation. What i want to do

[jQuery] Update div works in IE but not in FF?

2008-11-17 Thread [EMAIL PROTECTED]
Hi all, i wanted to update a div, depending on a click in my menu. I get both alert test-messages in both browserswith the right text, but AFTER the second alert in Firefox it goes wrong. The original content dissapears, but Instead of placing the new content, inside my content div, the original

[jQuery] Ajax / XmlHttpRequest Problems with some routers / providers ( MTU) ( No jQuery problem!)

2008-11-16 Thread [EMAIL PROTECTED]
Hi, we're running a recently launched website ( http://www.smashdown.net). We're using AJAX requests (in JSON) to communicate with our servers. A couple of customers complained about that some functionalities on our website are not working. We've found out that some AJAX requests does simply

[jQuery] Re: Pause after .load request

2008-11-16 Thread [EMAIL PROTECTED]
++; date_reg--; } else { clearInterval(slideTimer); } })(date_reg,counter),2000); }); On Nov 16, 1:04 pm, ricardobeat [EMAIL PROTECTED] wrote: There is no 'delay' or 'pause' in Javascript, you have to use a timeout or interval. Maybe this will work (interval, vars passed

[jQuery] Identifying the tag

2008-11-15 Thread [EMAIL PROTECTED]
Hi All, Let's say we have the following set up where doSomething is a function: $(h1, h2, h3).doSomething(); How can one identify which tag is currently having something done to it? Thanks

[jQuery] Pause after .load request

2008-11-15 Thread [EMAIL PROTECTED]
Hello, I'm trying to fetch some data from a Perl script and have it begin to display as many times as there is data. More or less a data slideshow. The data is actually very visual, but at the moment, i dont want to implement a pause, forward/backward option, until I get the automatic option

[jQuery] Cluetip and xml

2008-11-14 Thread [EMAIL PROTECTED]
Hello all, I start with ajax (jquery) and xml. I need to use cluetip in a table like this example: http://beckelman.net/Demos/jQueryTruncateAndClueTip/default.aspx As against that I do must be in Cluetip information from several different fields. Would you like a piece of code explaining the

[jQuery] JQuery Auto Complete?

2008-11-14 Thread [EMAIL PROTECTED]
hello! I'm using the JQuery auto complete ( jquery.autocomplete.js ). and I'm wondering how can I submit a form once an item has been selected? currently when an item is select you have to hit enter twice, once to get the item into the search field, and once to submit the search. I'd like to

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

2008-11-14 Thread [EMAIL PROTECTED]
That is exactly why I posted. I noticed that you had done a lot of work on inputs. Unfortunately I could not figure out how to do it myself from reading through your website. Thanks again for your help. -jl On Nov 13, 1:51 am, Mika Tuupola [EMAIL PROTECTED] wrote: On Nov 12, 2008, at 9:25 PM

[jQuery] Re: Third horizontal navigation?

2008-11-13 Thread [EMAIL PROTECTED]
I found where. It's in the superfish-navbar.css, with all the .sf- navbar li li li and .sf-navbar li li ul, etc... Thx. Dom On Nov 12, 3:44 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thx. But I can't find it. Because all four and fifth level are the same as... the vertical third. Dom

[jQuery] Animation Question

2008-11-13 Thread [EMAIL PROTECTED]
Right now, I have it so that the menu animates as follows: animation : {opacity:'show',height:'show'}, How would I go about coding the js so it animates out in the opposite effect animation {opacity:'hide',height:'hide'}? Example of what I have so far can be seen here:

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

2008-11-12 Thread [EMAIL PROTECTED]
Wow, that was sooo simple. Works like a charm! Impressive.. Now, thats the way a plugin should work. Nice work Mike. -jl On Nov 12, 7:04 am, Mika Tuupola [EMAIL PROTECTED] wrote: On Nov 12, 2008, at 10:28 AM, Mika Tuupola wrote: On Nov 12, 2008, at 1:46 AM, [EMAIL PROTECTED] wrote: I

[jQuery] Re: [Superfish] Third horizontal navigation?

2008-11-12 Thread [EMAIL PROTECTED]
Thx. But I can't find it. Because all four and fifth level are the same as... the vertical third. Dom On Nov 12, 3:12 pm, Joel Birch [EMAIL PROTECTED] wrote: I don't have an example to point you to, but it is definitely possible. How easy it is will depend on your CSS skills though. I guess

[jQuery] Re: jquery.timepickr.js: first official release

2008-11-11 Thread [EMAIL PROTECTED]
Still torn. I'd like to see a version that is click-based. On Nov 11, 10:20 am, MorningZ [EMAIL PROTECTED] wrote: This even got blogged about on John Resig's blog http://ejohn.org/blog/picking-time/ While i agree that it is a nice plugin, the lack of, and seemingly tough luck attitude

[jQuery] jeditable autocomplete - time to revisit?

2008-11-11 Thread [EMAIL PROTECTED]
Hi, I would like to combine autocomplete (http://bassistance.de/jquery- plugins/jquery-plugin-autocomplete/) functionality with inline editing of jeditable. (http://www.appelsiini.net/projects/jeditable) I have looked at previous postings and done a google search and turned up an instance where

[jQuery] Keeping track of the current clicked link

2008-11-10 Thread [EMAIL PROTECTED]
Hi, these are my first attempts with jQuery and I would be glad if somebody could help me. My Problem: I'm using the ASP.net MVC framework and wanted to keep track of the current clicked menu link. The menu links are in the master page and so is the jscript. What I tried to do is to attach some

[jQuery] Resizable textarea

2008-11-10 Thread [EMAIL PROTECTED]
Hello, I can't get the jQuery UI resizable function, in any browsers. Here's my code : link rel=stylesheet href=http://dev.jquery.com/view/tags/ui/ latest/themes/flora/flora.all.css type=text/css media=screen title=Flora (Default) script src=http://code.jquery.com/jquery-latest.js;/script

[jQuery] jQuery getJSON syntax error

2008-11-10 Thread [EMAIL PROTECTED]
hi all, I have a valid json string returned from the server(checks valid, ok by jsonlint.org) But get a syntax error from the browser. The call looks like: $.getJSON(url, addData);' The returned string looks like: [{EMAIL:[EMAIL PROTECTED],FIRSTNAME:Neal,ID: 80235,LASTNAME:Dombroski,PHONE

[jQuery] Re: Resizable textarea

2008-11-10 Thread [EMAIL PROTECTED]
Right you are ! I was not linking properly to ui.resizable.js. However I do use my own local version and I think there's an issue with it because if I link to the online one one dev.jquery.com, it works fine. Thanks for putting me back on track. On 10 nov, 13:27, nmiddleweek [EMAIL PROTECTED

[jQuery] form submit without page refresh

2008-11-10 Thread [EMAIL PROTECTED]
Hi Friends I just want to submit the form without page refresh i want to do this using j query, Am actually working in DRUPAL ,Tell me how to implement this in drupal,

[jQuery] JCarousel multiple column/row view?

2008-11-09 Thread [EMAIL PROTECTED]
Yeah I posted on the other list and no one bothered to reply heres original link http://groups.google.com/group/jquery-plugins/browse_thread/thread/3a7764d42f7be662

[jQuery] Does the JQuery Ajax and load work properly? It seems to work like an iframe rather than like add html in FF, Opera, Chrome, but works as I would expect in IE

2008-11-08 Thread [EMAIL PROTECTED]
Hi, Check out the example at http://docs.jquery.com/Ajax/load#urldatacallback Click on one of the links in FF 3.0.3 or Chrome and instead of redirecting the entire window, it just redirects the content within the ul tags. However, do it in IE and it redirects the browser window properly. To

[jQuery] Poll sumbit

2008-11-08 Thread [EMAIL PROTECTED]
Hi all, I want to build something so that when someone submits his poll choise that the poll will change into the results without any refresh. Whats the best way to start of with for building this? So: - user visite the site - user chooses a option on the poll - he presses on vote - then his

[jQuery] Re: Understanding JQuery/Javascript.

2008-11-07 Thread [EMAIL PROTECTED]
It merges the new function into jQuery, meaning you can then apply all of the library's methods to it. Try http://docs.jquery.com/Plugins/Authoring if you haven't yet seen it. I often write tiny add-ons in basic style, eg function menutoggle () { do stuff }; But these only serve one purpose;

[jQuery] Re: Selectors with :has and with variables

2008-11-07 Thread [EMAIL PROTECTED]
'); $( # + theID + ul ).toggle() ; }); Thank you very much! Cherry. On Nov 7, 12:27 am, Hector Virgen [EMAIL PROTECTED] wrote: Maybe this: $( '#cat [ + theID + ] ul' ).toggle() ; Should be like this? $( #cat # + theID + ul ).toggle() ; -Hector On Thu, Nov 6, 2008 at 4:14 PM

[jQuery] Re: Selectors with :has and with variables

2008-11-07 Thread [EMAIL PROTECTED]
Having - finally! - finished this, I thought I'd post my code. I'm very sure it could be more compact, but I'm a bit of a Javascript dork and thought others might benefit from my step-by-step approach ;) // menu show/hide $( '#themenu' ).children( 'li[id]' ).hover( function() {

[jQuery] Re: Executing jquery from jqueried div

2008-11-07 Thread [EMAIL PROTECTED]
I am not sure about using the element button ? The W3C says it isn't supported cross browser ( http://www.w3schools.com/tags/tag_button.asp ). Have you tried this using an input element instead? On Nov 7, 10:01 pm, Althalos [EMAIL PROTECTED] wrote: Hello, I have a very general question on how

[jQuery] Thickbox FF problem

2008-11-06 Thread [EMAIL PROTECTED]
Hi! I'm using the iframe modal option with thickbox but i'm experiencing a problem with Firefox. The page that loads the thickbox is where i login in first place and if i leave FF with the remember password bar on top when i submit the form in the thickbox (modal) the page reloads and the

[jQuery] Link in an iFrame changing Parent window elements

2008-11-06 Thread [EMAIL PROTECTED]
I'm currently working on a very interesting interface for a game, in which I use many iFrames. I have a div set up as a link(using $ ('.link').click) in an iFrame and need it to run some jQuery that I have written out that works correctly for the same link set up on the parent page. I'm not sure

[jQuery] Selectors with :has and with variables

2008-11-06 Thread [EMAIL PROTECTED]
I have read the other threads on this topic, but am still getting nowhere ... I'm trying to make a simple (haha) show-hide menu. The first last menu items are static - and don't have IDs. I need to select them out, otherwise I get a g is undefined error. Problem 1: The initial selection

[jQuery] Re: Selectors with :has and with variables

2008-11-06 Thread [EMAIL PROTECTED]
Karl, thank you SO much for that! At least I can now be sure my toggle thing isn't failing because of the g error :)) Cherry. On Nov 7, 12:26 am, Karl Rudd [EMAIL PROTECTED] wrote: You don't want :has you want a normal attribute selector. $( '#themenu' ).children( 'li[id]' ) Karl

[jQuery] Re: Selectors with :has and with variables

2008-11-06 Thread [EMAIL PROTECTED]
Thank you, Hector, but there's still nothing happening . Any other clues? (My grandmother and firstborn are now on offer) Cherry On Nov 7, 12:27 am, Hector Virgen [EMAIL PROTECTED] wrote: Maybe this: $( '#cat [ + theID + ] ul' ).toggle() ; Should be like this? $( #cat # + theID

[jQuery] menu with checkmark

2008-11-05 Thread [EMAIL PROTECTED]
I was wondering if there is any plugin that would allow me to have checkmarks (and perhaps radio buttons) on the menus... Something like what is described here: http://www.balsamiq.com/blog/?p=180 I looked through the menu plugins; but couldn't find anything suitable... Felix

[jQuery] Re: on the fly div and ui droppable problem

2008-11-04 Thread [EMAIL PROTECTED]
Hi all i found a problem with jquery ui droppable, i give the target div a css class which drag and drop is working fine , but when i create another div with the same class on the fly and append it to the HTML the drop doesn't work are there any solution ? the code is like that script

[jQuery] Toggle and Nested Divs

2008-11-04 Thread [EMAIL PROTECTED]
Hi all. I have an outer div that contains several child divs (event search form that lets the user pick dates, categories, etc...). The user can toggle the outer div and the child divs as well. This all works for me AS LONG AS the outer div is visible and not able to be toggled. When I let the

[jQuery] Re: Arabic tutorials first of Arabic tutorials

2008-11-04 Thread [EMAIL PROTECTED]
Great work .. keep going by the way second link is not found On Nov 4, 3:25 am, islam [EMAIL PROTECTED] wrote: Hi every One this is my first post and i want to say  that it's glad to be the First One to write a arabic and it's a video tutorial and a introduction to jquery with the arabic

[jQuery] jScrollPane loaded display: none

2008-11-03 Thread [EMAIL PROTECTED]
Hi @ all, i have some problems, if i load a div with scrollbar like jScrollPane and set it like $('.scroller').hide() it won't show it if i do $ ('.scroller').show(). I saw in the FireBug that the heigt and width is 0px. Any ideas? Thx Andi

[jQuery] on the fly div and ui droppable problem

2008-11-03 Thread [EMAIL PROTECTED]
hi all i found a problem with jquery ui droppable, i give the target div a css class which drag and drop is working fine , but when i create another div with the class on the fly and append it to the HTML the drop doesn't work are there any solution ? the code is like that script

[jQuery] Re: remove() Method Causes Flicker in Firefox

2008-11-01 Thread [EMAIL PROTECTED]
) The website looks great BTW. I have my own band (http:// RodeoClownsBand.com) Regards, -b On Oct 31, 3:18 pm, Joe [EMAIL PROTECTED] wrote: Go here: http://www.theshedbbq.com/dev/franchise/events Click on one of the rows in the table and you'll see the image fade out and then flicker. var

[jQuery] simple rollover on a tag show or hide div tag in jQuery

2008-10-31 Thread [EMAIL PROTECTED]
I am creating a profile update page using jQuery. The content of the profile is loaded dynamically into a div tag on the page. $(document).ready(function() { // Your code goes here $(div#notifications).load(supportscripts/writeoutprofile.asp); }); So this loads the profile into the

[jQuery] Re: Viewing XHTTPRequests in Opera

2008-10-30 Thread [EMAIL PROTECTED]
That can be. Maybe it is in one of the weekly builds: http://dragonfly.opera.com/app/weekly/zips/ Then there is also Firebug Lite http://getfirebug.com/lite.html On Oct 30, 10:40 am, Stefan Sturm [EMAIL PROTECTED] wrote: Hello, You may want to check out Dragonflyhttp://www.opera.com

  1   2   3   4   5   6   7   8   9   10   >