[jQuery] Re: add element after page has loaded

2009-11-26 Thread Rick van Hoeij
Hey, Best way to make sure that the form has been loaded is to use the load callback function: $('#formGen1').load('formGen1.jsp', function(){ //Callback function: Form has been loaded //Code implementation }); I usualy hide the form that I'm editing until it is ready to be shown. Simple

Re: [jQuery] [validate] Specifying custom highlight/unhighlight methods problem

2009-11-26 Thread Jörn Zaefferer
The validation plugin hides labels based on the error class. By adding that class to your regular label, it'll get hidden, too. Try using a different class for the regular label (with the same styles). Jörn On Wed, Nov 25, 2009 at 4:35 PM, Imre Farkas farkasimr...@gmail.com wrote: I'm trying

Re: [jQuery] custom event firing

2009-11-26 Thread stworthy
The function of your plugin is to trigger the event 'myEvent'. The first time you invoke the hilight() method but now the 'myEvent' event not bind to '#myDiv',so you cannot get the alert information. The second time you click, the '#myDiv' has bind 'myEvent' one time, so you get the alert

[jQuery] Issue with simplemodal plugin and absolute positioned content

2009-11-26 Thread Eric Getchell
Hello, I am having an issue with the simplemodal plugin that I’m hoping someone will have a solution for – or at least tell me what is happening. I have a layout which uses absolute divs to provide a three-column liquid layout. In IE 6 and 7, when simplemodal fires, any div that has both a left

[jQuery] Re: jquery toggle Ie7 problem

2009-11-26 Thread Thomas
The images are there, they're just for some reason moved to the left. If you assign a margin-left of 50px to your first image, you'll see that they are actually visible. Seems to be a style issue (maybe IE-related), rather than a jquery issue. Additionally, your page throws a handful of

[jQuery] Please help to check the form...

2009-11-26 Thread donb
'Tarding' was such an appropriate change to the subject, for that post. But let's change it back now. On Nov 25, 10:58 pm, forextradingevo forextradingev...@gmail.com wrote: u should google it and may be u can find some from there or u can visit here to get some help

[jQuery] form always goes to index.php

2009-11-26 Thread Henjo
Hi, a form that has an action to an index.php?id=value is submitted through jquery with $('form').submit() . Somehow it always goes to the plain index.php adding the values behind it like: index.php?myFormValue=value . I don't get any errors in the debug console (FF) or the Error Console. How

Re: [jQuery] form always goes to index.php

2009-11-26 Thread waseem sabjee
you dont need to you a form. set up the following html input type=text class=name / a href=# class='submitformSubmit/a have the follwoing jQUery $(function() { var btn_submit = $(.submitform); var txt_name = $(.name); btn_submit.click(function(e) { e.preventDefault(); top.location =

Re: [jQuery] Re: superfish navbar issue in Afterburner or JA-Purity Templates

2009-11-26 Thread Charlie
what you are discovering is the root of most problems installing one menu in any template with an existing menu will run into css conflicts. The majority of the issues that pop up in this group regarding superfish stem from Joomla installs and the exact situation you are running into Without

Re: [jQuery] Re: Cancel Selected An Item of Selectable

2009-11-26 Thread Richard D. Worth
This is not currently supported. You can track progress here: http://dev.jqueryui.com/ticket/4205 - Richard On Wed, Nov 25, 2009 at 9:59 PM, He Jun-Jie junjie...@hp.com wrote: Thank you for replying my question. My situation is very easy I just want to ask whether the jQuery ui selectable

[jQuery] Re: form always goes to index.php

2009-11-26 Thread Henjo
That would be like a workable trick. Is this something common? On Nov 26, 2:40 pm, waseem sabjee waseemsab...@gmail.com wrote: you dont need to you a form. set up the following html input type=text class=name / a href=# class='submitformSubmit/a have the follwoing jQUery $(function() {

[jQuery] Re: Issue with simplemodal plugin and absolute positioned content

2009-11-26 Thread Eric Martin
Eric, I don't have IE6 installed (just got a new laptop with windows 7), but I wasn't able to reproduce the issue in IE8 compatibility mode. SimpleModal only styles the dialog element, so I'm not sure why that would be affecting other divs on your page... -Eric On Nov 26, 4:50 am, Eric Getchell

[jQuery] csv2table

2009-11-26 Thread Ram
I am new to jquery Its nice in csv2table i need to get values dynamically from a particular url everyminute ... i dont know how to get from particular url ( www.websitename.com?asdfasdf.csv ) and generate table for that value. $(function(){ $('#view1').csv2table('book12.csv'); }); any

[jQuery] Accordion, fieldset and selectors question

2009-11-26 Thread Bruce MacKay
Hello folks, I have an operational accordion based on a series of fieldset tags (the content) and h6 tags (the triggers). It is initiated by: $('.accord h6').click(function() { $(this).next('fieldset').slideToggle('fast').siblings ('fieldset:visible').slideUp('fast'); }); The trigger

[jQuery] PHP jQuery on different port

2009-11-26 Thread Darjana
Hello, This user.php on port 80 $callback = $_GET[callback]; $user = $_GET[username]; if($user == lazy) { $response = array(message = SUCESS); } else { $response = array(message = FAIL); } echo $callback . (. json_encode($response) . );; This is index.html on port 8080

[jQuery] Best JQuery plugin for gantt and other charts/graphs?

2009-11-26 Thread Stodge
Just wondering which jquery plugin you prefer for generating gantt charts and other graphs. I'm busy scanning through the plugins, checking out the demos but I was hoping for a few pointers so I could hone in on the best ones. Thanks

[jQuery] [Superfish 1.4.8] changing position of folded out menus

2009-11-26 Thread Michael
Hi, I got it to work, following is the solution: Simply put .sf-menu { line-height:2.5em; } to change the line-height of the menubar and additionally to control the distance of the submenus to

[jQuery] [Superfish 1.4.8] changing position of folded out menus

2009-11-26 Thread Michael
Hi! First of all I'm very sorry to ask, but I couldn't get it working whilst spending hours on this. I changed the ling-height of the .sf-menu from 1.0em to 2.5em. Now the folded out submenus appear in the middle of the menu bar. = .sf-menu { line-height:

[jQuery] Re: simple jquery form plugin question

2009-11-26 Thread Kelly
Hi David, I was able to recreate the same problem and fixed it. Try this: html head titlejQuery Form Plugin/title style type=text/css form { background: #DFEFFC; border: 5px solid #c5dbec; margin: 10px 0; padding: 20px } /style script type=text/javascript src=../jquery-latest.js/script script

[jQuery] function in ready not run in IE

2009-11-26 Thread Neena
Hello, I have below code that run the function when document is ready. It works fine in Firefox but not IE. What did I do wrong? Looks like the code doesn't get run at all. I tried jQuery(function() ... but it didn't work too $(document).ready( function() { var $items =

Re: Re[jQuery] ad CSV files with jQUery

2009-11-26 Thread ramanathan12
csv2table('./data/Book12.csv'); can i use yahoo http://download.finance.yahoo.com/d/quotes.csv?s=USDIRR=Xf=sl1d1t1ba to get csv instead of './data/Book12.csv' i tried like this $('#view0').csv2table('http://download.finance.yahoo.com/d/quotes.csv?s=%5EIXICf=sl1d1t1c1ohgve=.csv'); but no

[jQuery] Validate / Remote

2009-11-26 Thread RCLumbriga
Hi.. Sory the really bad english I have one problem with remote in Jquery.validate I do this cusuario:{ required: true, minlength: 5, remote: verifica_user.php }, Now i whant know how the script

[jQuery] Superfish jQuery menu plugin RTL support

2009-11-26 Thread Vlad Shapiro
Ahoy! I'm trying to adjust Superfish nav-bar style menu for RTL'ed Hebrew website, Example: http://users.tpg.com.au/j_birch/plugins/superfish/#sample4 but no success so far, maybe someone already have this solved? Any help will be most appreciated! Best regards, Vlad.

[jQuery] jQuery Slider - disable keyboard control

2009-11-26 Thread akitainu27
Can slider keyboard control be disabled for good without disabling the slider? Thanks. -- View this message in context: http://old.nabble.com/jQuery-Slider---disable-keyboard-control-tp26531343s27240p26531343.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Re: [jQuery] Re: form always goes to index.php

2009-11-26 Thread waseem sabjee
its kinda common, but yeah it is a quick work around through jquery if you don't wanna use forms.. a little less html. and a few lines of js :) On Thu, Nov 26, 2009 at 4:30 PM, Henjo henjohoek...@gmail.com wrote: That would be like a workable trick. Is this something common? On Nov 26, 2:40

Re: [jQuery] Validate / Remote

2009-11-26 Thread Jörn Zaefferer
That script will get a single GET paremter with the name of the field as the key and the value of the field as the value, here you'd get verifica_user.php?cusuario=username Jörn On Thu, Nov 26, 2009 at 1:30 PM, RCLumbriga ronanl...@gmail.com wrote: Hi.. Sory the really bad english I have

Re: [jQuery] Re: simple jquery form plugin question

2009-11-26 Thread David
Thank you very much Kelly! You solved my problem. On Thu, Nov 26, 2009 at 12:59 AM, Kelly k...@njit.edu wrote: Hi David, I was able to recreate the same problem and fixed it. Try this: html head titlejQuery Form Plugin/title style type=text/css form { background: #DFEFFC; border: 5px

[jQuery] disable links in a class set dynamically

2009-11-26 Thread Keysher
Hi! I have a problem. I want to disable links in a specified class. Like this: $(.disabled).click( function() { return false; }); It works fine if the class exists before, but if I add the class to an element, not works!! $(document).ready(function() { $(.disabled).click(

Re: [jQuery] jQuery Slider - disable keyboard control

2009-11-26 Thread Richard D. Worth
I don't recommend it, as it's there for accessibility. However, if you must, add your own handle manually with no href: div id=slider a class=ui-slider-handle/a /div If you have any more questions about it, please ask on the jQuery UI list: http://groups.google.com/group/jquery-ui - Richard

[jQuery] Re: Issue with simplemodal plugin and absolute positioned content

2009-11-26 Thread Eric Getchell
Hey Eric, Thanks for checking into this. I've done some more digging and I've narrowed the issue down to the container/wrapping div that is injected into the DOM. If I remove the following from the container (s.d.container) when it is created: display: 'none', position: 'fixed', ..the

Re: [jQuery] Superfish jQuery menu plugin RTL support

2009-11-26 Thread Charlie
change the LI's to float right instead of left Vlad Shapiro wrote: Ahoy! I'm trying to adjust Superfish nav-bar style menu for RTL'ed Hebrew website, Example: http://users.tpg.com.au/j_birch/plugins/superfish/#sample4 but no success so far, maybe someone already have this solved? Any

[jQuery] Re: Debuging AJAX

2009-11-26 Thread Rockinelle
Here's a link to a screenshot of my console. When I click the form this displays for a moment before the page reloads and the console is refreshed. To view this I have to hit the stop bottom before it reloads the page. It reloads because there isn't a value in the action attribute of the form.

[jQuery] Re: function in ready not run in IE

2009-11-26 Thread MorningZ
may want to try the correct syntax for each $.each($items, function() { totalit(this); }); also, just to point out, usually best practice points out to use $ at the beginning of variable names for jQuery objects surely works otherwise, but your style is slightly confusing On Nov 26,

Re[jQuery] move appended element

2009-11-26 Thread coldwired
Hi, I'm trying to append an div element around the element that triggers the on hover event, then remove the div on mouse out (blur). I normally would use addClass / removeClass but this leaves class= when the class is removed and not the original state of the html. Here's my code, I can't work

[jQuery] Is there a plugin similar to this Flash effect in Yahoo.com for media images?

2009-11-26 Thread Raymond Ho
Hi guys, I'm looking to develop this plugin in jQuery, or is there already an available version in jQuery for this effect? http://movies.yahoo.com/feature/hmg-weekend-roundup-11-25-09.html I really want the fading effect of the plugin. Please tell me. Thanks

[jQuery] Re: add element after page has loaded

2009-11-26 Thread edencane
Hi. Thanks. That was what I needed. Kr. Luke. On Nov 26, 6:04 pm, Rick van Hoeij rickvho...@gmail.com wrote: Hey, Best way to make sure that the form has been loaded is to use the load callback function: $('#formGen1').load('formGen1.jsp', function(){    //Callback function: Form has

[jQuery] Comparing or checking for a specific sub class?

2009-11-26 Thread Janmansilver
I have a menu looking like this: li class=page_item current_page_item.../li li class=page_item.../li li class=page_item.../li and so on... I then have a mouseenter function that highlights/de-highlights the various menu items, but I would like to not having it affect the item with the extra

[jQuery] Re: Accordion, fieldset and selectors question

2009-11-26 Thread Adriana
Hi Bruce, Try this: $('.accord h6').click(function() { $(this).toggleClass('expand_group').siblings ('h6.expand_group').removeClass('expand_group'); $(this).next('fieldset').slideToggle('fast').siblings ('fieldset:visible').slideUp('fast'); return false; });

Re: [jQuery] csv2table

2009-11-26 Thread Toshiro Takahashi
Hi, Ram Thank you for using my plugin. On Thu, 26 Nov 2009 02:21:19 -0800 (PST) Ram naviamarkets@gmail.com wrote: I am new to jquery Its nice in csv2table i need to get values dynamically from a particular url everyminute ... i dont know how to get from particular url (

Re: [jQuery] jquery uploadify question

2009-11-26 Thread brian
See: http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F In a nutshell, you're declaring a click handler for all elements with class 'img_del' *when the page loads*. But your element is being added during the onComplete callback of uploadify()

Re: Re[jQuery] move appended element

2009-11-26 Thread brian
You have 2 separate classnames there--'selected' and 'insense-selected'. Anyway, why don't you just add the class to the hovered element and save yourself some trouble? Because wrapping a strong or dd element with a div is certainly asking for a lot of trouble. On Thu, Nov 26, 2009 at 3:50 PM,

Re: [jQuery] disable links in a class set dynamically

2009-11-26 Thread brian
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F http://docs.jquery.com/Events/live Please see my response to the recent jquery uploadify question msg. On Thu, Nov 26, 2009 at 12:09 PM, Keysher keys...@gmail.com wrote: Hi! I have a

[jQuery] Re: csv2table

2009-11-26 Thread tato
By the way, the reason why csv2table cannot read the text file of the other domain is because it uses $.get method of jQuery. But I do not get along well even if I change $.get in $.getScript. When capture a TCP packet, the data body arrives,; but csv data as for the JavaScript is because is not

[jQuery] Returning Value Of aa .POST

2009-11-26 Thread Nuclear
function ajax_post_var(url, event_id) { var info = $.post(url).responseText; alert(info); if (event_id == '1') { do something with info... } ...more if's here... } Why does info show undefined... I'd like to be able to use the

[jQuery] validation plugin: how to use EqualTo

2009-11-26 Thread kkuilla
Dear all, I'm trying to use the jquery validation plug in to verify that two fields (email addresses) are the same. If read through the tutorials etc but it does not work. I wondering whether I am using it in the right way. I want to validate each field individually so I use onblur to execute the

[jQuery] IE balking at .siblings() - says 'Object does not support this property or method'

2009-11-26 Thread Getzel
BH I created a slider of thumbnail images. I write the image filepaths directly into the HTML using PHP, so instead of using expandos I placed a hidden div after each image containing the file name of the large version to be shown onclick. Works fine in FF and Chrome. IE stops at the first line

[jQuery] Lightbox = 1 thumbnail to several images

2009-11-26 Thread coder
Hello, all! Brand new to JQuery, and I'm looking for a solution to my problem. I have a page with, say, 30 thumbnail images. Currently, when one is clicked, a larger version displays, and then you can back/next through all 30. I have been tasked with making a change that doesn't seem

RE: [jQuery] Re: Debuging AJAX

2009-11-26 Thread Andreas Möller
I'm not sure whether this would be an issue with jQuery, but I'm sure you agree that setting the ID attribute of a DOM element to a value that starts with a digit is not correct, at least it does not produce valid XHTML. Best regards, Andreas

[jQuery] Cluetip Version 1.0.4 From Version 0.9.8

2009-11-26 Thread ginozzzz
Hi all, Using ASP.NET 3.5 I recently upgraded my ClueTip js file. I created a few new cluetip instances around my site, and all seemed well, however, when I went to test one of the first pages I ever wrote (which used a cluetip from V0.9.8), I found that it had broken. This is the normal

[jQuery] jquery-1.3.2.min.js causing 400 bad request

2009-11-26 Thread rbishop
Hi there, hoping someone can help a strange intermittent problem. Occasionally, I am experiencing 400 bad request errors when trying to load jquery-1.3.2.min.js. I have taken the request and response headers from firebug during a failure and a success. Does anyone have more experience than myself

Re: [jQuery] IE balking at .siblings() - says 'Object does not support this property or method'

2009-11-26 Thread Michael Geary
The first thing that caught my eye looking at your code is the missing var on this line: lg_pic = $(this).siblings('.lg_pic_name').html(); Surely you don't want to be creating a global variable here? It should be: var lg_pic =

[jQuery] Re: csv2table

2009-11-26 Thread Ram
Hi Toshiro Takahashi First i should say thanks to you for replying Actually i need to read data from yahoo stock quotes and show it in my website so can you guide me to get data. http://download.finance.yahoo.com/d/quotes.csv?s=%5EIXICf=sl1d1t1c1ohgve=.csv Pls in detail. On Nov

Re: [jQuery] Comparing or checking for a specific sub class?

2009-11-26 Thread Michael Geary
I think the method you're looking for is .not(): http://docs.jquery.com/Traversing/not Also, there is a shortcut for your mouseenter/mouseleave pattern called .hover(): http://docs.jquery.com/Events/hover If you look at the source code for .hover(), you can see that it is literally a wrapper