[jQuery] I am using jQuery Validation and facing Stopping Script in IE7

2009-12-21 Thread csplrj
Scripts --- JQuery 1.2.6 JQuery Validation 1.5.5 URL: http://docs.jquery.com/Plugins/Validation I have a form and have provided the validation to that form using validator=jQuery(#xava_form).validate({ // the errorPlacement has to take the table layout into

[jQuery] Re: jQuery Validation Plugin messages by field rule.

2009-12-21 Thread Antti
Didnt i try that... :P. Thanks a lot for soulution and quick response!! That did a exactly what i wanted. On 19 joulu, 22:25, Andre Polykanine an...@oire.org wrote: Hello Antti and all,           You just don't need to nestmessages, they should be           overwritten:                      

Re: [jQuery] Re: jQuery in e107 plugin?

2009-12-21 Thread Richard D. Worth
Sure, just include jQuery UI before including the second jQuery, or after the noConflict call. - Richard On Sun, Dec 20, 2009 at 7:11 AM, Harsányi János hajani...@gmail.com wrote: This sounds great :) One more problem: Can I extend the first jQuery with jQuery UI? On Dec 19, 9:31 pm,

[jQuery] Re: Add class selected to a hyperlink in navibar! Help me.

2009-12-21 Thread Šime Vidas
HTML code: ul id=nav li asp:HyperLink ID=nav_page1 runat=server NavigateUrl=Page1.aspxPage 1/asp:HyperLink /li li asp:HyperLink ID=nav_page2 runat=server NavigateUrl=Page1.aspxPage 2/asp:HyperLink /li li

[jQuery] Re: Selecting radio button unselects text field and vice-versa

2009-12-21 Thread Šime Vidas
You mean this? http://vidasp.net/jquery-example.html

[jQuery] Re: Superfish - Background Color on Sub-Menus

2009-12-21 Thread slflinders
Yes, that's exactly what I want to accomplish. I tried your suggestion below, but it doesn't work. When I remove the background color definition from the '.sf-menu a' item, all menu items have a transparent background. No matter what colors I specify in the '.sf-menu li' items, they don't have

[jQuery] How do I allow not add width to the li tag with jQuery Cycle Plugin

2009-12-21 Thread Lijn
I use this jquery-plugin: http://jquery.malsup.com/cycle/ Each li-tag gets a calculated width allowing the contents to 2 lines, but line 1 is sufficient. 2 lines breaks the design. The added width is not necessary. Is it possible NOT to add to this? Can anyone help me? It would be a great relief!

[jQuery] Superfish - How to integrate template into CSS?

2009-12-21 Thread Beaker
Hi, I'm having big CSS issues on how to integrate my existing 'graphical' rounded corners on the front end of my site. I plan on having the orignal rounded top menu and then the drop down sections can just be rectangles.. my site: www.newtoneentertainment.com.au/index.php (still in draft) and

[jQuery] prettyPhoto and jQuery tooltip

2009-12-21 Thread rzepa
Hi, I am using PrettyPhoto to view photogallery lightbox with standard HTML structure (from PrettyPhoto documentation) : a href='%# FullUri %' title='%# TitleText %' rel=prettyPhoto [prods] asp:Image ID=image runat=server CssClass=floatLeft product ImageUrl='%# ThumbUri %' AlternateText='%#

[jQuery] (validation): remote rule causes submit to abort, fix included

2009-12-21 Thread KenGreer
With the validation plugin (http://bassistance.de/jquery-plugins/ jquery-plugin-validation/) I included two remote rules to check username and e-mail. If my form is loaded such that the username and e- mail are already filled in, and, therefore, have not yet been validated, and I click SUBMIT,

Re: [jQuery] (validation): remote rule causes submit to abort, fix included

2009-12-21 Thread Jörn Zaefferer
The plugin will submit the form after the async request finishes. The remaining problem is that any submit-button won't be submitted. Maybe thats the problem you had? Jörn On Mon, Dec 21, 2009 at 8:15 AM, KenGreer k...@dancesoft.com wrote: With the validation plugin

[jQuery] question about width from li in

2009-12-21 Thread Lijn
I use this jquery-plugin: http://jquery.malsup.com/cycle/ Each li-tag gets a calculated width allowing the contents to 2 lines, but line 1 is sufficient. 2 lines breaks the design. The added width is not necessary. Is it possible NOT to add to this? Can anyone help me? It would be a great relief!

[jQuery] dialog box

2009-12-21 Thread Jojje
Hi! I´m trying to make a dialog box , where you can press ok or cancel. How do i set the function so that when a user press ok it returns true? I'm new to javascript an jQuery so bare with me but this is what i got so far... function dialogBox(type,blockUi,heading,message) { var result;

Re: [jQuery] (validation): remote rule causes submit to abort, fix included

2009-12-21 Thread Andre Polykanine
Hello KenGreer and all, Hm, it seems that I have the same problem. My solution is even less elegant: I place the focus into the first field of the form, so the user can't proceed without moving the focus out. And if he/she moves it out, the

[jQuery] Re: jQuery in e107 plugin?

2009-12-21 Thread Harsányi János
But there is a problem, when the structure is the following: first plugin: -load jquery (script src...) -load a script that uses jquery only second plugin: -load jquery -load jquery ui -load a script that would like to use jquery with ui after the whole page loaded third plugin: -load jquery -load

Re: [jQuery] Superfish and Wordpress

2009-12-21 Thread Charlie
you have a bunch of issues going on. First take the $(document).ready superfish constructor out of the internal functions of the plugin. Calling the plugin itself from within the plugin code is asking for problems( and it is throwing an error in Firebug) since you have multiple script

Re: [jQuery] huge drop down

2009-12-21 Thread fachhoch
is my question not clear ? please help me reoslve this fachhoch wrote: after big search I got this code $(document).ready(function(){ $('#program').wrap(div class='wrapper'/div); $('.wrapper').after(div class='selectArrow'/);

[jQuery] Re: onclick and jquery in the Outlook browser

2009-12-21 Thread gorfbox
Hello Scott, hello lelando, $(body).append($('a').click({alert('test');return false}).text (Dynamic)) ; $(body).append($('a').click(function(){alert('dynamic test');return false;}).text(Dynamic)); Both of your suggestions were exactly what I needed, jammed it into my code and Presto! it

Re: [jQuery] question about width from li in

2009-12-21 Thread brian
Check the options page. Does the 'nowrap' option help? http://jquery.malsup.com/cycle/options.html On Mon, Dec 21, 2009 at 6:50 AM, Lijn lijn.onl...@gmail.com wrote: I use this jquery-plugin: http://jquery.malsup.com/cycle/ Each li-tag gets a calculated width allowing the contents to 2 lines,

Re: [jQuery] unable to focus on textboxes - update panel - jqmodal - asp.net

2009-12-21 Thread brian
I don't have anything handy to test this with but I believe you could handle this with the onHide callback. Check that the text element isn't empty. If it is, return false to keep the dialog open (and display a msg, etc.) On Sun, Dec 20, 2009 at 10:38 PM, Dexter varun.dex...@gmail.com wrote:  0  

Re: [jQuery] Re: jquery.cycle /// Next function in the next button and in the pictures

2009-12-21 Thread brian
2009/12/21 Pedro Gonçalves pedrom...@gmail.com: If I assign the next id to another element function only works once. check it out: http://www.pvxg.net/unplanned/ What I want to do is for the user to be able to cycle through the pictures by clicking on them. This is what Charlie was trying

[jQuery] Re: huge drop down

2009-12-21 Thread Scott Sauyet
On Dec 21, 1:11 pm, fachhoch fachh...@gmail.com wrote: is my question not clear ? please  help me reoslve this Your own urgency is not enough motivation for the rest of us. First you post a question that you could probably have researched easily on your own to find out that IE will really not

Re: [jQuery] huge drop down

2009-12-21 Thread fachhoch
Sorry .I am a java programmer , but dumb with css ,java script and specially working with IE , unfortunately every body has to work for IE, sorry again Scott Sauyet-2 wrote: On Dec 21, 1:11 pm, fachhoch fachh...@gmail.com wrote: is my question not clear ? please  help me reoslve this

[jQuery] How do i navigate within an ajax div??

2009-12-21 Thread 123gotoandplay
Hi, i use this $(#products).click(function() { $(#content).css(overflow-y, scroll); $(#content).load(list.php); }); and i have a loop of 10 products in list.php with a pagination. but how can i use the pagination as it doesn't stay in div #content??

[jQuery] Re: How do i navigate within an ajax div??

2009-12-21 Thread 123gotoandplay
i was thinking something like $(#pagination).click(function() { $(#content).css(overflow-y, scroll); $(#content).load(list.php?..with the vars); }); On Dec 21, 8:48 pm, 123gotoandplay wesweatyous...@gmail.com wrote: Hi, i use this

[jQuery] Plugin development: Defaults options: Questions?

2009-12-21 Thread Micky Hulse
I just wrote my first jQuery (test) plugin... This was my guide: http://www.learningjquery.com/2007/10/a-plugin-development-pattern Questions: == 1. My plugin only takes one argument/option, and that is a target dom element. For example: $('#div').myFunction({ target: '#targ' });

[jQuery] Re: huge drop down

2009-12-21 Thread Scott Sauyet
On Dec 21, 2:45 pm, fachhoch fachh...@gmail.com wrote: Sorry .I am  a java programmer , but dumb with css ,java script and specially working with IE , unfortunately every body has to work for IE, sorry again I'm not looking for an apology, just for enough information to use to help you. (And

[jQuery] Re: Plugin development: Defaults options: Questions?

2009-12-21 Thread Scott Sauyet
On Dec 21, 3:08 pm, Micky Hulse rgmi...@gmail.com wrote: But, I guess I am wondering what the best way to handle javascript error checking for required options? There are a few options. I often add an optional errorHandler function; my defaults would include: errorHandler:

[jQuery] simple code not working

2009-12-21 Thread kikloo
hi i have this simple code: $(function() { $(select#ctlByName).change(function() { cid = $(this).val(); $.getJSON(ajax.php,{cid:cid}, function(json) { alert(Data Loaded: + json); }) }) }) and its not

[jQuery] Sliding Tabs

2009-12-21 Thread KFawcett
Is it possible to have an effect like mootools sliding tabs? I have multiple tabs but they are overflowing so the look like this: tab1, tab2, tab3, tab4, tab5, tab6. I would like them to all stay on the same level. How can I create left / right scroll navigation for my tabs. Like this - Tab1,

[jQuery] (validate) - Documentation fix for highlight/unhighlight

2009-12-21 Thread dirk
Hi there, When overriding the highlight/unhighlight methods, the examples provided in the documentation will not work: http://docs.jquery.com/Plugins/Validation/validate#toptions They should instead read: highlight: function( element, errorClass, validClass ) {

[jQuery] need help using jquery form to delete records in DB

2009-12-21 Thread shovi
Hi there, I'm using the jQuery form plugin here: http://malsup.com/jquery/form/ and have it successfully updating records in a DB without refreshing the page. each record is shown as its own FORM with a Save Changes button (compared to updating all the records at once). however, the problem I'm

[jQuery] Superfish - current sublevel visible

2009-12-21 Thread tominou50
Hello, I'd like to know if it's possible that the current sublevel ul is always visible except when i rollover other main items and when i roll out other main items the current sublevel ul go back to visible status... am i clear ??? Many Thanks Thomas

[jQuery] Selector and fadeIn/Out problem! (need help)

2009-12-21 Thread heglandio
Hi people I need help with my navigation-system. My currently situation is the following: I've got a closer on my website, a button, that allows a close- function to the upper div-element, in which the closer seats. One level higher. It's the only parent-element with a closer on the website. My

Re: [jQuery] simple code not working

2009-12-21 Thread Charlie Griefer
couple of debugging steps I'd take: 1) remove the .getJSON() call and just alert('foo'), to ensure that the change event is being triggered as you expect 2) install Firebug in Firefox and check whether or not there are errors in the php document. On Mon, Dec 21, 2009 at 8:16 AM, kikloo

[jQuery] Re: Plugin development: Defaults options: Questions?

2009-12-21 Thread Micky Hulse
Hi Scott! Many thanks for your pro help and super fast reply! I really appreciate it. :) There are a few options.  I often add an optional errorHandler ...snip... Then your code can check that the required parameter is there. Oooh, that is nice! Cool technique! Thanks for sharing. :)

[jQuery] Re: Plugin development: Defaults options: Questions?

2009-12-21 Thread Scott Sauyet
On Dec 21, 4:06 pm, Micky Hulse rgmi...@gmail.com wrote: Ok, so how does this look: (function($) {         $.fn.myFunction = function(id) {                 var $target = $('#' + id);                 if($target.length 0) {                         return this.each(function() {              

Re: [jQuery] dialog box

2009-12-21 Thread Richard D. Worth
This can't be done with JavaScript. In order for JavaScript to be able to display an Ok and Cancel button for the user to press, JavaScript cannot also be waiting to return a value for your function as that would block the browser UI, since JavaScript is single-threaded. You have to use callback

[jQuery] jQuery Cycle - Global pause on hover?

2009-12-21 Thread 1000bulbs.com
If there are three slideshows on one page, is there a way to PAUSE slideshows B C when hovering over A?

[jQuery] not able to receive POST data in php file

2009-12-21 Thread Amit
i am using the following JQuery function to successfully POST data to the user_submit.php file, its just that the php file is unable to receive the data. $(function() { $(#submit_js).click(function() { $.post(user_submit.php, { comment: $(#comment).val()

[jQuery] Re: jQuery Cycle - Global pause on hover?

2009-12-21 Thread Mike Alsup
If there are three slideshows on one page, is there a way to PAUSE slideshows B C when hovering over A? var $slideshows = $('#A,#B,#C').cycle({ // options speed: 700, timeout: 3000 }); $slideshows.hover( function() { $slideshows('pause'); }, function() {

[jQuery] Re: How do I allow not add width to the li tag with jQuery Cycle Plugin

2009-12-21 Thread Mike Alsup
I use this jquery-plugin:http://jquery.malsup.com/cycle/ Each li-tag gets a calculated width allowing the contents to 2 lines, but line 1 is sufficient. 2 lines breaks the design. The added width is not necessary. Is it possible NOT to add to this? Can anyone help me? It would be a great

[jQuery] Re: jquery.cycle /// Next function in the next button and in the pictures

2009-12-21 Thread Mike Alsup
next:'#next', next:'#next2' Change that to: next: '#next,#pics' The 'next' option let's you specify a jQuery selector string. So you can have as many elements as you want trigger the transition to the next slide. Mike

[jQuery] How to validate fields

2009-12-21 Thread __benatti
Good night, I'd like to validate 10 fields like: I have artist and musica fields, but I'd like just allow two o less entries on the form How can I do it? I tried validate, but didn't work for me. Could you help me? thanks

Re: [jQuery] not able to receive POST data in php file

2009-12-21 Thread Juan Ignacio Borda
try a var_dump($_REQUEST) to see what's being submited. Original Message i am using the following JQuery function to successfully POST data to the user_submit.php file, its just that the php file is unable to receive the data. $(function() {

[jQuery] Re: Help with Datepicker

2009-12-21 Thread polarwarp
Thanks so much guys! I was missing this showOn setting - and once I put that in I discovered my path was slightly wrong :) On Dec 4, 1:02 am, MorningZ morni...@gmail.com wrote: Use Fiddler (for IE) or Firebug (for FF) and watch the Net tab to see why the browser doesn't see the image..

[jQuery] Jquery and general Javascript question.

2009-12-21 Thread Joseph DelCioppio
Guys, I'm not exactly sure where to ask this question so I figure I'd start here. For the record, the website I am referring to can be temporarily found here: http://www.synantus.com:801 I've got an HTML site for my mother's salon that I've been augmenting with jQuery. One of the things I've

[jQuery] [autocomplete] Slide up instead of drop down?

2009-12-21 Thread Ed
Greetings, all. The autocomplete plugin is excellent! I'm looking to have a text input field on the bottom instead of the top of the page, however, and would thus like results to appear above the box instead of below. Anyone have a quick tip on how to change this? Much obliged, E

[jQuery] My problem of addMethod of Validation plugin

2009-12-21 Thread Adelaide_Karl
Hi all! I love Validation plugin, it's pretty cool! I have a simple form here: form name=frmTest id=frmTest input type=checkbox name=chk1 id=chk1 / input type=text name=txt1 id=txt1 title=vFalse Validation!! / input type=submit value=submit name=submit id=submit / /form and the js code which

[jQuery] Re: Superfish - Background Color on Sub-Menus

2009-12-21 Thread slflinders
I'm still looking for help on this issue. Any other suggestions? On Dec 21, 6:56 am, slflinders slflind...@gmail.com wrote: Yes, that's exactly what I want to accomplish. I tried your suggestion below, but it doesn't work. When I remove the background color definition from the '.sf-menu a'

Re: [jQuery] Superfish - current sublevel visible

2009-12-21 Thread Charlie
question is clear ..solution however would take some custom coding of the 2 main hide/show functions within plugin if you manage to create a solution please post it here, others have had same request tominou50 wrote: Hello, I'd like to know if it's possible that the current sublevel ul

[jQuery] loading modifying external pages

2009-12-21 Thread le_tmp
Hey! Do you have any ideas how I can do the following: I have a page with two frames. Frame A contains a textbox where I can type an arbitrary url. This page is loaded into frame B. Now I want to highlight some words in frame B. Is this possible? Thanks in advance!

[jQuery] Re: dialog box

2009-12-21 Thread Jojje
oh ok :) Thanks for taking time to answer :) So now i got this, it works but it sends the ajax calls twice. is it maybe because i set the callback wrong? the callback argument gets: function() { fGbDelete(gbid,link); } Shouldn´t it get just: fGbDelete(gbid,link)? Or why is it triggering

[jQuery] Re: Sliding Tabs

2009-12-21 Thread danny.copel...@gmail.com
Try jQuery Cycle! :) On Dec 21, 1:54 pm, KFawcett keith.fawc...@gmail.com wrote: Is it possible to have an effect like mootools sliding tabs? I have multiple tabs but they are overflowing so the look like this: tab1, tab2, tab3, tab4, tab5, tab6. I would like them to all stay on the same

[jQuery] Re: Superfish - Background Color on Sub-Menus

2009-12-21 Thread Dasher
OK - remove that last bit re: .sf-menu li { background: transparent; } /*top level*/ .sf-menu li li { background: #F0F; } /*second level*/ .sf-menu li li li { background: #000; } /*third level*/ I think given the spans and extra classes you have added you'll need to do this... Change in your

Re: [jQuery] Sliding Tabs

2009-12-21 Thread stworthy
Here is a tabs plugin http://www.etmvc.cn/project/show/63 http://www.etmvc.cn/project/show/63 Perhapse it is what you want. KFawcett wrote: Is it possible to have an effect like mootools sliding tabs? I have multiple tabs but they are overflowing so the look like this: tab1, tab2,