Forms Plugin filed Value
I really like the forms plugin by malsup, but cannot get the field value method to work on my dropdown menus. I call it with: var newYearArray = $('#chart_submit :year').fieldValue(); alert("Not going to get here, I bet"); var newYear = newYearArray[0]; and it fails. fieldValue is looking for an html elment (e.g. checkbox, radio, etc.), but my form (generated by a forms generator called MachForms), looks like this in what I think is the relevant part: <select class="element select small"
Odd Validate plug-in behavior with IE8
I have an odd problem with the Validate 1.8 plug-in with JQuery 1.5.1. I have a form that validates 2 fields upon the submit button being clicked. Under Firefox 4 the form validation works great with no problems. But with IE8, the submitHandler seems to keep firing and the errorPlacement function is called if I click on anything (meaning inside or outside the browser window, even the desktop) after the submit button is first clicked. It's really bizarre. I don't know where to start to see why
jQuery Validation - Marketo Demo - How are they linking to mktSignup.js
I am rather loving the jQuery Validation, but am having one helluva time trying to figure out how the Marketo Demo's HTML is pointing to mktSignup or the validation.js itself. I'm not referring to the HTML referring to them in the header. That I see. I'm used to seeing some script in the header that calls the .js: like <head> $(document).ready(function(){ $("#form").validate(); .... </head> But I don't see that anywhere, and I can't, for the life of me, understand how it just "knows" to use a specific
JQuery treeVIew expand certain node
Hello, Im building ul li list dynamically on the serverside code. How can I determine which node should be expanded when page is loaded ? Im using plugin: http://bassistance.de/jquery-plugins/jquery-plugin-treeview/ thank You very much for help
Using jqTransform with JQuery 1.5.1
Hi, I've been experimenting with jqTransform and had a small sample working just nicely. HOwever, I noticed that the demo came packaged with JQuery 1.2 and as the rest of my project uses JQuery 1.5.1 I want to keep only one version of the library in the project. On trying to use the jqTransform demo with the latest version of JQuery it fails. Here's the conde snippets I have: selected.js $(document).ready(function(){ $(function(){ $('form').jqTransform({imgPath:
Image gallery with fix logo
Hi all, I have seen many plugins that create a slideshow, but I can't modify them for what I need. I would need to have over the slideshow a fix image that is a logo, and under the Images with fade effects (slide show). How I can do this? Thanks!
Fixed: http://tablesorter.com/ query
I am using the http://tablesorter.com/ plugin to sort data in a table. This is a simple page: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <script type="text/javascript" src="http://tablesorter.com/jquery-latest.js"></script> <script type="text/javascript" src="http://tablesorter.com/jquery.tablesorter.js"></script>
Coin Slider Navigation Boxes
When using Coin Slider is there a way to move the small navigation boxes so they are above the gallery instead of under it? Thanks! -B
jQuery Autocomplete
Hello all, I'm working on an estimating app that uses the jQuery autocomplete function. The app allows the end user to add a row to the estimate. The end user can enter an item name and get a response from the autocomplete and select the item. My problem is that when the user adds a row and tries to use the autocomplete function for the next line item it fails. Which makes since because now that the user has added another row there are two (#selectors) with the same name. Is there a way to make
Problem with Nivo Slider gallery
Hi, I have a problem with image gallery. It loads every picture before the true presentation begins. Is it because of too large image size (all of them are between 70-100 KB) or can I use certain functions to hide it from users ( the process of loading pictures) so they would only see once it begins. My site is under this link http://www.pebedesign.pl/portfolio.html Many thanks for help Piotr
How to speed up page rendering?
I'm hoping more experienced hands will spot the problems easily and be able to help us out: It takes a very long moment to load this page -- on slow connections, the rendering will seem to hang up on the tabbed box near the center. Yes, the page uses a bunch of plugins: Zentabs, Cookie, HoverIntent, Corner, a dropdown menu and an accordion menu plus some of the jQuery UI. One puzzling oddity is that it seems we have to load the jQuery library twice--in the source you can see two lines calling jquery/1.5.0/jquery.min.js
How do I add a mouseover effect to stop the transitions and mouseout to continue? i.e. Stop on Mouseover
Really need the solution. I am a newbie and was experimenting with jQuery. I know that jQuery is awesome but I am not that good and am becoming discouraged. Please Help! /* ========================================================= // jquery.innerfade.js // Datum: 2008-02-14 // Firma: Medienfreunde Hofmann & Baldes GbR // Author: Torsten Baldes // Mail: t.baldes@medienfreunde.com // Web: http://medienfreunde.com // based on the work of Matt Oakes http://portfolio.gizone.co.uk/applications/slideshow/
Having trouble with Form Plugin in IE8
I just discovered that all of the various instances where I am using jQuery Form Plugin are not working in IE8. Everything works peachy in Firefox, Opera, Chrome, and IE6 (yes really!). But in IE8, the "beforeSubmit" runs, but the "success" does not. I must be doing something wrong that is consistent across all of my jquery form code or the xml generated by my php but I have no idea what it is. I'm using jquery form in many different parts of my site to do different stuff and none of it works in
Menu plugin for jQuery latest version
Hi, Is there any plugin available for creation of drop down menu's using jquery. Suggest some code.
Problem using select-chain, getting Ajax parser error.
I'm trying to incorporate Remy's select-chain plug-in into my code, and I'm having troubles. I hope someone can take a minute or two to help me. My situation seemed simple, only 2 levels, Products and Programs under each Product. I have the back-end working, so it returns the JSON list of Programs when a Product ID is passed. However, the plug-in keeps failing in the .ajax() function, tripping the error(). It reports a "parsererror", so I know I've messed up something. One wrinkle, I have multiples
problem with jquery auto completion table
Hi i am using auto complete table plug-in , and getting error like - " name is undefine " on below line of code function _formatNameColumn(row) { return "<b>" + row['name'] + "</b>"; } and parse function is also not working "parse": function (data) { return $.map(data, function (row) { return { data: row, value: row.name, result: row.name } }); please help me asap . appreciate your
JQuery ieSelectStyle() function is not working in IE 7
’m using jQuery’s ieSelectStyle() function to display big contents in select box. The code is working fine with IE 8 and 9 and not with IE 7. Please see my code below <!-- Added two jQuery files --> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> <script type="text/javascript" src="jquery.ie-select-style.pack.js"></script> <script type="text/javascript"> $(function () { // calling jQuery function $('select#selectboxName').ieSelectStyle(); }); </script> <body> <table>
jQuery Multiple File Upload problem...
Please forgive me if I'm not following protocol. I'm relatively new at jQuery. Apparently I'm not holding my mouth right on the jQuery Multiple file Upload Plugin. It doesn't appear to be responding to a customization of the selected files list. Here is my code: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Upload.aspx.cs" Inherits="Upload" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
Error using JQuery validation on DropDownLists
Hi I am having a problem with jquery validation on drop down lists. I am posting my code. But when I run it, I am getting the following error: Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: CS0103: The name 'dropdownlist1' does not exist in the current context Source Error: Line 79: $("#form1").validate({ Line
Form Validation - Fields that shouldn't be validated are being validated
I'm not very good with javascript, but have tried to get the form validation plugin working. I do have it working, but it seems to validate things I'm not asking it to validate, and I'm sure it is my code, but I don't know what is wrong. I've uploaded what I have to here: http://colorspot.brianswebdesign.com What happens is, if I click on a field like Zip or City, and then click somewhere else, a green asterisk appears to the left of the input. Zip and City aren't fields I want validated, so I'm
Simple Problem !
Hello Everyone, Well i am facing maybe a conflict on my plugins javascript file, i am trying to fix it for the last 3 days with no luck, i googled a lot but again no luck, i am not a jquery expert and i need help with the following code : Logic --->validate inputs and if anything wrong fade error message, put a red border a round the wrong field and prevent the whole process, i made it work before with less plugins, any ideas ? Note: I bolded and colored my not working function in red $(function(){
Onclick not working with ben alman's jQuery BBQ
Hi New to all this so ill try asking you guys. Im creating a ajax based page so i needed to use jquery to fix the back button. Found Ben alman's BBQ library and it works perfectly, almost. :P The problem is that when i use onclick to run an ajax function. It doesnt work untill i have refreshed the page. The two doesnt seem to work together :S Why is this? Is this suppose to happen or? The function that im trying to run on onclick is this function xmlhttpPost(strURL, input_value) {
Regex in Validation
Hey there, Is there a way to validate the value of text field against a regex using Validation plugin? Eg: Validate a field for IP Address. Thanks! Moiz
problem with jquery slide down menu ul li
this code working fine with internet explorer but not with mozilla and chrome function initMenu() { $('.categories_list ul').hide(); $('.categories_list li a').click( function() { $(this).next().slideToggle('normal'); } ); } $(window).load(function() {initMenu();}); wht to be done ???
livequery problem
Hi, I have problem with livequery. I'm trying do validate (using validate plugin) form which I load using load() function. But there is one problem: validation works but first I must click twice on the submit button! I don't know how to get rid of the one click. Do you have any ideas? My submit function: $("#myform").livequery('submit',function() { $("#myform").validate({ debug: false, rules: { name: "required", email: {
jQuery Form plugin for dynamically created forms: problems
Hi, Web-code newbie here. I've been trying to use the jQuery Form plugin, unsuccessfully for now. No mail is sent from the form on hitting submit, and there appears no output from the php file in the targeted div (neither 'mail sent!' nor 'invalid e-mail address' etc.) There are two complications: 1) The forms are created on the fly long after the page has loaded, depending on user input. Meaning there might be a <form id="AppleForm"> and a <form id="PearForm"> if the user happens to ask for apple
jQuery Cycle and jCarousel - not working together on Chrome/Safari
I am using both jCarousel and jQuery Cycle plugins on a website along with jQuery 1.5.1. These plugins play nicely together on all browsers except Safari/Chrome. On Safari/Chrome none of the plugins load. When I disable one of them, the other works fine. This code works completely fine on IE6-9 and Firefox (Mac/PC). Grasping at straws I've added jQuery.noConflict() to both plugins but that had no effect. I've googled the error codes I'm getting, but I can't find any more meaningful pointers to
Cycle: cannot click pager.
I have used the cycle plugin, but cannot seem to get the pager functioning right. I am not able to click on a specific pager image, in this case a dot, and job to the corresponding image. Why? And why is only some of my pictures viewable? I can see them all in my offline version. My site: http://web.me.com/kafri/kasperfriis/ Hope you can help me.
jquery expander plugin not working
the jquery plugin is not working on all the tags as its supposed to be. here is the code <script type="text/javascript"> $(document).ready(function() { // simple example, using all default options $('.expand_hide').expander(); // *** OR *** //override some default options $('div p').expander({ slicePoint: 5, // default is 100 expandText: '[...]', // default is 'read more...' collapseTimer: 5000, // re-collapses after 5 seconds; default is 0, so no re-collapsing
help using tooltip with swf or flv file*
I am trying to figure out a way to have the rollover load a .swf or .flv file (flash) very small files. here is an example of a site that does this: http://www.videocopilot.net/tutorials/ - if you roll over the tutorial thumbnails, you will see a flash file load. - is this possible to do with tool tip? or is there another plugin specifically for this function?? any help is appreciated. thanks!
jquery cycle plugin captions/ wordpress theme
Hi there, I'm really new at java script programming so please bear with my ignorance. I installed the portfolium theme by wpshower in my friend's site (http://boyarskymurphy.com/wordpress/?portfolio=christ-church-tower) and it works well, but the theme doesn't allow to display captions. I looked at the example on the jquery cycle site for displaying the metadata but i don't seem to integrate well the two snippets of code. Here's the code from wpshower: <script type="text/javascript">
Banner Cycle plugins
Hi all, On IE8, when the page is loaded with a banner cycle plugin inside ... (I use the basic layout with a simple banner, with 5 images cycle) => All the images are displayed shortly, then only the first one is displayed alone... Why displaying all the image ? This is normal ? How to change that .. regards,
JQtouch doesn't display my search button and link
Hi I just started to build some native iphone applications using html, javascript and css. In one of them, I am trying to allow my users search through my app and display regarding pages. I am using jqtouch. My problem is that I can't see the search button and its functionalities when I use jqtouch. Any ideas? You can reach my source codes by visiting http://www.eskipusku.com/vergi_app2/search_jqtouch Please use Safari nad UTF-8 for encoding index.html : it is the search page searchresult.html
jquery validator in IE7
Hi, i'm using the JQuery validator plugin from this site: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Works excellent so far, except in IE7... It just doesn't do any checks, and when i press on a button it doesn't respond to it either... Anyone else encountered problems in IE7 ? Or is it just that my code isn't good? This is what i have for a login: var v = $("#login").validate({ errorClass: "warning", rules: { email: { required: true, email: true }, password:
Add cookie functioanality to jquery.showhide.js plugin - should be simple...
Hi everyone, check this out. I am using the following plugin by Dana Woodman: http://jquery-showhide.googlecode.com/svn-history/r7/trunk/demo.html Implementation is relitavely simple: 1) Add scripts - done <script type="text/javascript" src="js/jquery.cookie.js"></script> <script type="text/javascript" src="js/jquery-1.4.3.min.js"></script> <script type="text/javascript" src="js/jquery-showhide/jquery.showhide.js"></script> 2) Add script for show/hide areas - done <script type="text/javascript">
suggestion for Datepicker Date Range example
I found it rather odd that the official Datepicker Date Range example doesn't filter date ranges if default values are provided via HTML, i.e. <input type="text" id="from" name="from" value="04/15/2011" /> ... (Well, it does work eventually, but not the first time you try selecting a date after the page loads - it lets you select anything. The date range filter is only applied after the onSelect function is called). I could be wrong, but I imagine there has to be quite a few people using the date
Problem with Qaptcha
Hi all, I downloaded Qaptcha from here: http://www.myjqueryplugins.com/QapTcha unpacked it and uploaded to my php server version 4.4.9 and tried to test them out. Everything looks fine but when I slide it over to enable to the submit buttom. The submit button still disable. Can someone please help? Thanks
Can't make jparse to work properly.
Hi there! I can't make the content of the xml-file to show. Callback & precallback functions work so it seems like the xml-file is loaded correctly. But the content doesn't show. I'm just not sure what I'm doing wrong here... I've removed som tags in the html-code. I hope that someone has some experience working with this plugin and can help me out. Below is the xml-file-content & the js-code below that. Best, Niklas XML-file <?xml version='1.0' encoding='utf-8'?> <text> <test><![CDATA[<p>testing</p>]]></test>
jQuery validation plug-in 1.7+ using jQuery v1.5 and jQuery Mobile v1.0a3
Hello, I wonder if anyone has succeeded on making to work the following configuration: jQuery validation plug-in 1.7+ using jQuery v1.5 and jQuery Mobile v1.0a3. I just make to work so far. Thank you in advance jD
Jquery easy confirm dialog.js IE6 issues
Hi, I am using jquery.easy-confirm-dialog.js plugin for confirm dialog.In IE6 it doesn't opens up the confim dialog when I click on the button. IE6 it shows the error at line number 144 in jquery.easy-confirm-dialog.js var handler = function(event) { alert(event); $(dialog).dialog('open'); event.stopImmediatePropagation(); event.preventDefault(); return false; } I dont know what is the reason and how to resolve it.In FF it works fine,
Next Page