jflow plugin and php contact form trouble!!
hey, im currently working on a site that utilizes the jflow plugin, everythings working fine. one of the divs jflow slides to contains a contact form, which is being verified on the server side via php, thats workng fine aswell. the problem comes when submitting the form, the page refreshes and doing so sends jflow back to the first slide/div. So the user cannot see the conformation message or the warnings about missing fields unless they return to the contact slide after submitting the form. im
[jQuery] blockUI, select box and IE6 (again)
I'm having the same problem that is documented at http://groups.google.com/group/jquery-en/browse_thread/thread/976e49897120d95c?tvc=2, but can't reply to that thread (too old?). To summarize the problem, with IE6, when blockUI is called the select boxes dissappear. When unblockUI is called they reappear. I have a form that has a number of multi-line select boxes, therefore this problem is very noticeable. The referenced thread above hinted at a fix, but didn't provide any details. Any ideas would
[jQuery] create a translate plugin using jQuery
Hello I want to create a plugin to translate a site web (translate english to french) and i don't know what i need for begin my project to create this plugin. any one here can help me? tkx ""sorry for my english because i speak frensh"" Rabab
[jQuery] return value from JQuery ajax custom method
hi everybody I'm using jquery ajax within a custom method and try to return its result to that original method but I get nothing while it works fine if I show it in alert window here is my code: jQuery(document).ready(function() { jQuery.Test = function(){ jQuery.ajax({ type: "POST", url: "WebService.asmx/HelloWorld", success: function(msg) { // alert($("string", msg).text()); //it works fine return $("string", msg).text(); //it doesn't works }, error: function(XMLHttpRequest, textStatus, errorThrown)
[jQuery] Cluetip speed question
I am trying to use Cluetip to make a help text for what can be a large list - and I'm hearing reports that a list of 100 items with 4-5 columns each is causeing IE7 to slow down or appear to freeze for a while, and commenting out the cluetip invocation clears it up. I'm assuming it's jsut due to poor javascript speed as it loops over all the DOM to activate all the required DOM elements. Right now, I'm invoking them all with one command that uses a class to pick them up: $('.HelpTipAnchor').cluetip({local:true,
[jQuery] jQuery nodes traversing
Hi, Consider the following html : <div id="main"> <div> <p/> <p/> <h2> target node </h2> </div> </div> Starting from the h2 node, I want to find its closest parent with an id, in this case the div with id="main". I also want to store the index position of all of the parents of the target. In this case that would be 0 (for the div right under "main") and 2 (for the third ) How can I do that using jQuery ? I hope what I ask is clear enough.
[jQuery] How to fade in next div after previous div faded in upon document.ready ?
Hi all ! I tried but did not succeeded in making this work. To explain what I'm trying to do. HTML: <body> <div id=first_div> text</div> <div id=second_div> text</div> <div id=third_div> text</div> </body> CSS not important right now jQuery: on document.ready function collect all divs witch id ends with "_div" first make them all hidden with .hide() then show them one by one using .fadeIn() but next div fades in after previous finished fading in I got the first part: $(function() { $('div[@id$=_div]').hide();
[jQuery] How to parse variables in url to modal box?
How would I parse my variables in a link like... <a href="index.php?var1=value&var2=value" rel="modalbox">show modalbox</a> ... to a modal box, like the build-in dialog in jQuery? I've tried to solve the problem in the code below, but it does not work for 2 reasons: 1 ) I cannot put in variables using "eval" (see the line "$.get (anchor...") 2 ) If theres more than one link on the page with the rel-attribute things gets messed up. The modalbox just shows the first link found on the page not the one
[jQuery] problem with :contains in 'td'
Hi, I am trying to match the content in 'td' and think the problem is with contains when it is trying to query withing 'td'.... $(":contains('Comedy')",'td').css("background-color","green"); doesn't work... but if I tried... $(":contains('Comedy')",'tr').css("background-color","green"); this WORKS ....WHY....???? http://chinnakaruppan.googlepages.com/index.html Please find below the full code... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
[jQuery] cycle problems
Hi, I can't get jQuery cycle to work and I have no idea why, so I would really appreciate some help. my code: HTML <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//SV" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sv" dir="ltr" lang="sv"> <html> <head> <title>CYCLE</title> <style type="text/css" media="all"> @import url(css/cycle.css);</style> <script type="text/javascript"
[jQuery] show form after each slide (islideshow.js)
Hi everyone, I'm new to JS and jQuery, and have been searching my .... off to find a solution for the following problem: I'm using jQuery with the Interface elements plug ins to display a slide show (islideshow.js). The photos are held in a PHP array and are being dynamically fed to the slide show. This is the easiest part: the slide show displays all the images perfectly. What i am trying to do now is to have a form with three submit type buttons displayed after each image in the slide show for
[jQuery] show form after each slide (islideshow.js)
Hi everyone, I'm new to JS and jQuery, and have been searching my .... off to find a solution for the following problem: I'm using jQuery with the Interface elements plug ins to display a slide show (islideshow.js). The photos are held in a PHP array and are being dynamically fed to the slide show. This is the easiest part: the slide show displays all the images perfectly. What i am trying to do now is to have a form with three submit type buttons displayed after each image in the slide show for
[jQuery] thickbox close and ajax request
Hi! I've small (or big- I'm unaware...). I made small image manager using thickbox, when I'm adding new article I can add some images (open thickbox, upload image) AND AFTER CLOSING THICKBOX image list should refresh (using ajax), the main problem is sending request after closing the thickbox (IFRAME!) i tried: $("#TB_closeWindowButton", top.document).click(function() { $.post("/n/admin/news/photos", { id: 5801 } ); }); but it doesn't work properly thanks in advance for help
[jQuery] :not selector ---> not working
Hi, I tried a eg for :not operator.According to which it should not pick up the Table header but it does .what am i missing. One more question .... what is the significance of putting the 'th' in the square bracket .is it OK to write like this. $('tr:not(th):even').addClass('even'); THnks <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"
[jQuery] Simple XPATH Selector
Hi, I am trying XPATH selector with jquery....it doesn't seem to work..find below the eg.it should select the paragraph. can any tell me what I am missing. THnks <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>New Web Project</title> <style type='text/css'> .jq{ background-color:red; } </style> <script type="text/javascript"
[jQuery] jscrollpane _ how to remove flicker on initialisation ?
hello! You can view the problem i'm trying to solve here: http://www.lab-au.com/mr_news/ The OS scrollbars appears for a fraction of second until jscrollpane gets rendered. Did anybody came up with a good solution to avoid the display of default browser scrollbars when jscrollpane kicks in? (Mike?) thanks mates ! Alexandre
[jQuery] [Validate] Validator plugin working (kind of) but submitting form!?
Hello, Im using the validator plugin in Rails, which is fantastic, but noticed something odd the other day. The form actually appears to be SUBMITTING, even if the validation fails!? I can't imagine this is supposed to happen. I was under the impression that the plugin is supposed to prevent the form from submitting if the form is invalid but sure enough, it is submitting and I have to double validate in Rails. Any idea what could cause this? I'm basically using a modified version of the Remember
[jQuery] [validate] Missing the submit button params
I'm using the validator plugin from bassistance.de/jquery-plugins/ jquery-plugin-validation/. Lovely and really powerful! But, my server side logic require the parameters from the submit button used. And it seems as if Validator doesn't include that when submitting the form. The param I need especially is the name of the button. Is this some setting I can make or does it require tweaking of the Validator plugin? HDB Jolle
[jQuery] validation plugin negative number rule?
How can I create a rule in the validation plugin to disallow negative numbers. I have a text field that should accept any number > 0 thanks, A.
[jQuery] jQuery.get filtered JavaScript Tag
When using jQuery.get to fetch remote contents, the content inside the <script> tag will be removed and therefore not executed. Is it possible to incluce the script tag and run it automcatically when using jQuery.get ? Thanks.
[jQuery] How can I display loader images on different locations for different ajax requests using ajaxStart
Hi, Please tell me how to display loader images on different locations for different ajax requests using ajaxStart. I have posted my code at the link below : http://groups.google.com/group/jquery-en/browse_thread/thread/8e1967f057e3e251/d5cc973ecac2ddf7?lnk=gst&q=Problem+for+calling+ajaxStart+and+ajaxStop#d5cc973ecac2ddf7 Thanks.
urgent help needed with IE6 issue!!!
Hi. I have a site due for launch tomorow but i have noticed an issue with galleria on IE6/5.5. I think it is actually more of a general jquery issue as the fading links on my navigation dont seem to work either. It appears as though the jquery library is not being found. the site is... http://montyconstruction.co.uk Does anyone have any sugguestions of why there is a problem? You help would be greatly appreciated. thanks.
[jQuery] Superfish: post the license, please
Joel Birch, Would you please state the license(s) for Superfish on the jQuery page (the page with the stars indicating the voters' rating of the plug- in)? This would put it in an easily accessible location and it would be present for every new release. thanks, Brian
[jQuery] Split button plugins (?)
I'm just checking if there is any split button plugins/work already done in jQuery community? Google returns none. What is split button: http://vincenthomedev.files.wordpress.com/2008/04/image1.png Other implementation: Yahoo! email reply button TIA -- <?php echo 'Just another PHP saint'; ?> Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/
[jQuery] Need help to decide on SWF/FLV/SIFR plugin - a bit unsure, for sure!
Hi all! [OBJECTIVE: need best solution to have flash (and perhaps likely .flv as well) and also SIFR stuff work] Hoping to have a plugin guru advise as to whether 2 plugins whould be advised, or one, and which one(s) ??? Here's what I've thought. 1) There's a couple or a few flash/flv type JQery plugins, all very cool.... one of them (or more) do SIFR as well. 2) I would like to AVOID using JW flash player and that other popular one so I've thought that having flash SWFs and not FLVs might be needed.
Form field focus on tabs
I am currently working on a javascript form preview function. I plan to convert this to jQuery instead because of its many advantages. I have a straight-forward form, I click preview and the form gets hidden and a table is generated within a div showing all form fields and their values, as well as javascript-generated cancel and form submit buttons. This all works on the same html page. I would like to add an "Edit" link next to each preview element so that the user can click the link; the preview
[jQuery] Tablesorter plugin: adding alternating colors
My table has alternating row coloring. It get's messed up after sorting (eg, instead of odd, even, odd I get something like even, even, odd, even, even...etc) I was trying to fix that with Zebra widget but gave up. All I need to do is to call this simple function to http://www.sitepoint.com/article/background-colors-javascript/, but I am not sure where. I tried putting into: <body onload=".... It worked, however, only when document itself was reloaded, not after client-side sorting with tablesorter.
[jQuery] reinstanciate plugin after Ajax page update
Hey guys, I came across this problem a few times and I'm sure there is an easy fix. Well... THE PROBLEM ------------------------ on bottom of a certain HTML page I call a jQuery plugin, let's say cluetip or fancybox. as follows <script type="text/javascript" src="/js/shared/ jquery.fancybox-1.0.0.js"></script> <script trype="text/javascript"> jQuery('a[@rel*=fancybox]').fancybox(); </script> Everything works fine... since I don't append something on the page after an Ajax request, that needs fancybox
[jQuery] Superfish dropup?
I love this menu system... but now I have a project that I need to set the menu at the bottom... so the dropdowns no need to be dropUps... I have be working at this with no luck. Any one know how to have the menu drop upwards? Thanks for the help...
[jQuery] Autocomplete plugin: Function on result select
Hi, i need to compile an hidden input when a value from the autocomplete list is selectedbut I don't know how can I do it? Can you help me? thanks
[jQuery] jQuery UI Tabs (Selected tab item)
Hi all! Currently I haven't coded JS, so I don't know how to solve my problem. So, I'm using jQuery UI Tabs (http://stilbuero.de/jquery/tabs_3/) and I encountered with problem. I need to get an ID or something else of currently selected tab and send it to PHP. The code is: <script src="../tabs/jquery-1.1.3.1.pack.js" type="text/javascript"></ script> <script src="../tabs/jquery.history_remote.pack.js" type="text/ javascript"></script> <script src="../tabs/jquery.tabs.pack.js" type="text/ javascript"></script>
[jQuery] jQuery UI Tabs (Selected tab item)
Hi all! Currently I haven't coded JS, so I don't know how to solve my problem. So, I'm using jQuery UI Tabs (http://stilbuero.de/jquery/tabs_3/) and I encountered with problem. I need to get an ID or something else of currently selected tab and send it to PHP. The code is: <script src="../tabs/jquery-1.1.3.1.pack.js" type="text/javascript"></ script> <script src="../tabs/jquery.history_remote.pack.js" type="text/ javascript"></script> <script src="../tabs/jquery.tabs.pack.js" type="text/ javascript"></script>
[jQuery] Submit a form automatically
I have a dynamically created form that I'd like to submit automatically after it loads. It doesn't look like forms have an onload event. I would use the window onload, but the form isn't necessarily around when the window loads - it is created later in a jquery popup. Any suggestions? I am using the jquery form plugin if it matters.
[jQuery] nested sortable nesting limit
Hi friends i am using jquery/interface nestedsortable plugin,this plugin not working properly for nesting limit.author commented developement of this nesting limit is halted. http://code.google.com/p/nestedsortables/wiki/NestedSortableDocumentation please help me re:nesting limit,present i need 3 levels only. please reply urgently,i have worked alot on this functionality.
[jQuery] superfish menu - would like top nav to retain hover color as you mouse over subnav
Is it possible to have the top navigation to retain it's hover color as you mouse over the subnav items in the list below? I have a lot of menu items and I got rid of the pointer arrow because it didn't work with the design. I would just like the top nav to retain the hover color instead. Also, I only want the subnav that you're hovering over to have the hover color.
[jQuery] ie6 and the validation plugin
i have this code: <script type="text/javascript" src="//ajax.googleapis.com/ajax/ libs/jquery/1.2.6/jquery.min.js"></script> <script type="text/javascript" src="/js/jquery/ jquery.validate.js"></script> <script type="text/javascript"> <!-- jQuery(document).ready(function(){ jQuery.validator.messages.required = ""; jQuery("#lf").bind("invalid-form.validate", function(e, validator) { var errors = validator.numberOfInvalids(); if (errors) { var message = "Please complete the form:"; jQuery("#formheader").html(message);
[jQuery] [SITE] tunerec.com
just read about and tried this amazing online music player. snappy interface. Subscribe to the beta to check it out. Gets better after a few days but it is really promising and the interface is slick! http://tunerec.com/ alexandre
[jQuery] How can executable jquery/jscript be returned in an Ajax response
Let's say filling a form should add a row to a table. Responding with the html row is not a problem, but how do you include the event to add the row and any listeners which might follow after it? Thanks
[jQuery] [validate] Ignore maxLength in validated field
I'm using another jQuery plugin (jquery.textCounting.js) to display a character limit for each field based on its maxlength field. I don't want jquery.validate.js to validate the maxlength for any field in my form, but I do want it to perform all its other functions. Any idea how to do this? Right now Validation is preventing submission when a field violates its maxlength, which is undesirable behavior for this form. Thanks,
[jQuery] keep user from clicking links while cycle is in motion
I am working on a site here: <a href="http://adc4web.adceval.com">adc4web.adceval.com</a> I have a problem where while the cycle is shifting a page, the user can still click a link and this screws up the cycle after clicking a bunch of links. Is there a way to prevent the user from clicking a link until the cycle is done?<div> Thanks</div><div>Mike</div>
Next Page