[jQuery] Filtering a select list
here is a non jquery solution to what i'm looking for. http://www.barelyfitz.com/projects/filterlist/index.php/1 Does anyone know of jquery plugin to do the same or maybe if its easy, some quick source code? thanks
[jQuery] (Validation) lazy validation
Hello, [I apologize if this is a double (triple?) post. A post made 15 and 45 minutes ago has not shown up on google groups. -- Is google groups letting me down?] I have a form with fields added dynamically via javascript. Specifically, it is a list of one or more email address that the user may enter. When I add the field, I also add an 'email' and 'required' rule, using $(id_selector).rules("add", ...). After there has been a validation error in any one of the fields, the validation of the other
[jQuery] jQuery UI dialog is not working in IE6
Hello All I am new to jQuery UI, and I am trying to create a new dialog using when I click on a link or a button here is my code: function openJQueryDialog(dialogWidth){ $(function() { $("#AJAX_DIALOG").dialog({ bgiframe: true, autoOpen: false, bgiframe: true, closeOnEscape: true, modal: true, resizeable: true, width: dialogWidth, close: function(event,ui)
[jQuery] [Validaiton] Lazy validation details
Hello, [I apologize if this is a double post. A post made 15 minutes ago has not shown up.] I have a form with fields added dynamically via javascript. Specifically, it is a list of one or more email address that the user may enter. When I add the field, I also add an 'email' and 'required' rule, using $(id_selector).rules("add", ...). After there has been a validation error in any one of the fields, the validation of the other email fields is no longer "lazy." After typing the first character, a
[jQuery] [Validaiton] Lazy validation details
Hello, I am adding form fields (and validation rules) dynamically to a form. Specifically, I am allowing the user to enter one or more email addresses. After a validation error has been made in one field, all of the other fields are no longer lazy about validation. Typing a single character into a separate email field results in an error message. How is the lazy validation implemented? What might I be doing wrong to trigger validation of fields that have not yet received input? Thanks, redblacktree
[jQuery] changing the initial state of toggle based on a condition.
Hi all, This is my first post to this forum and I apologize in advance if I don't explain my problem adequately. I have series of list DIVs, and the display of these lists is controlled by a title DIV. When a list is empty I'm setting a class on the title DIV "empty" I was hoping to set a condition in the toggle to collapse/hide the list DIV if it is empty. Can anyone tell me the best what to do this? See sample of the code below. NOTE: this is not the actual code but I've verified that this code
[jQuery] superfish menu question
how can i make the text stop sliding to the right on hover?
[jQuery] Accessing window DOM through jQuery Core - can't get it to work
Goal: From window A, I want to manipulate the DOM of window B, where window B is the result of calling window.open(). My attempts are shown below, but Window B is never updated. winRef = window.open("","Window B"); Try 1: $(winRef).find("body").append("<div id=container>mr container</div>"); Try 2: $(winRef).find("body").html("<div id=container>mr container</div>"); Try 3: $(winRef.document.body).append("<div id=container>mr container</ div>"); Try 4: $(winRef.document.body).html("<div id=container>mr
[jQuery] .get() failing
I posted this late last night, but got no responses. I thought maybe it scrolled off before anyone had a chance to see it, so I'm posting again. Sorry if this is bad form, I'm new to these groups... I'm having an issue with the $.get() method. When I request a file local to my site (with a relative path), everything works fine. When I request the same file with a full URL, the $.get() isn't successful. I don't know if its a security issue (requesting data from a 3rd party site) or maybe a timing
[jQuery] (Validate) multiple groups of checkboxes
Hey All, I have 30 groups of checkboxes and want to validate that the user select at least one checkbox from any group meaning if he selected one checkbox from the first group and nothing from the other 29 the form should be valid. I tried different solutions but none worked. Can anybody help Thanks -Maged Makled
[jQuery] jquery tabs (ajax tabs with a form submit)
Hello, I am incredibly new to the world of jquery. What I am trying to do is create tabs (using the tabs plug-in) that load dynamic content via AJAX (so it makes a call to a jsp). What this does is this loads a new part of a form. What I want to do is when the user clicks on a new tab, I also want to submit the data that was in the original form. I wanted to do this with one request (i.e. the request does the save, then loads up the new content). However, I have no idea how to do this. Any help would
[jQuery] JQuery & Cookies
I would like to apply a cookie to this script so that I can return to the page at a later date and it would remember my last action. Can anyone help? Thanks in advance. <script> $(document).ready(function(){ $(".close").click(function () { $("#welcome").fadeIn("slow"); }); $(".show").click(function () { $("#welcome").fadeOut("slow"); }); $("a.toggle").click(function () { $("a.toggle").toggle(); }); }); </script>
[jQuery] Traversing not
I'm trying to use the function Not (): when I run the command on the TAG "A" and works $ (this). find ( "a"). not ( '[href ^="/"]'). attr ( "target", "YYYY") when I run the command on the tag "IMG" not working $ (this). find ( "img"). not ( '[src ^="/"]'). attr ( "target", "YYYY") what may be happening?
[jQuery] Start Animation from Center of Screen
I have some animated text using the top and left css properties. But, everything starts from the top left of my screen. How could I make the animation start from the center, and then float out from there? Example Page: http://www.puc.edu/media/reasons/who-is-god jQuery Code: <script type="text/javascript"> $(document).ready(function(){ // Start floater function var floater = function() { $('.floater').each(function() { // Random Times var timeout = Array();
[jQuery] Trying to get jCarousel to fetch new set of records on click of Next button
I've been trying for the last 2 days to get this thing to call my getJSON and fetch a new set of records based on the carousel.last value when you click the next button. It loads 3 pictures on start up just fine but the next button is not enabled because I only have 3 loaded and there are no more lingering in the queue. I don't want any lingering. Check out this example, this is what I'm trying to do but instead fetch the new set of images with my getJSON method: http://sorgalla.com/projects/jcarousel/examples/dynamic_flickr_api.html
[jQuery] select box / <option> - a way to wrap text?
Thats it. How can I wrap text inside a select box? or perhaps I could allow the select box to flow over the div its in. That might actually be better now that I think of it :)
[jQuery] Selecting the first of two td's in a tr
Hi All, I'd like to set the align attribute of only the first TD in a TR for an entire table but am not sure how to address them all in one go. Probably an Nth child thing or similar but not sure! Thx, Mike
[jQuery] Create an AJAX form within a modal window.
I am creating an admin in ColdFusion and am trying to add a feature where when the user clicks the "edit" button for something, a modal window will pop up which contains a form (loaded from an external file) that when the user submits it, it's an AJAX submit and then the modal window closes and fires off a function that updates the display page. I am using SimpleModal http://www.ericmmartin.com/simplemodal/ and I managed to load an external form file into the modal window using $.get but then I can't
[jQuery] jqGrid client-side paging with sorting
Dear all, I'm looking to establish client-side paging in addition to client-side sorting using jqGrid. jqGrid currently supports client-side sorting using loadonce: true, but it doesn't have features able to paginate the content (apparently it's slated for a future release). Can someone direct me towards the right direction? A possible hint suggested by someone but that I haven't been able to implement is using loadComplete and onPaging http://www.trirand.com/blog/?page_id=18/help/using-client-side-sorting-but-server-side-paging-using-jqgrid/page-1
[jQuery] Float Image on Page
I have been trying to find a solution to this for a while, but all I can find is about style:float which is not what I want. I would like to animate an image randomly around the screen. So, it could slowly float across the screen, and would randomly choose its motion. Any ideas?
[jQuery] howto: using autocomplete and validate (with remote) together
<div class="moz-text-flowed" style="font-family: -moz-fixed; font-size: 13px;" lang="x-western">hi, i have in input element where the user can enter multiple email addresses (like in thunderbirds to: field) i use autocomplete to make suggestions form the database when the user enters new adresses. then i want to validate the emailadresses before sending the email, because the user can add email addresses by 1.) lookup or 2 manual editing so i used validate with var validator = $j("#werkeForm").validate({
[jQuery] Safari and Chrome code execution problem
Hi, I'm developing with jQuery quite long right now, but recently I spotted one big problem with execution of jQuery code in Safari and Chrome. So everything is working fine in these browsers until jQuery code is placed in one page. But when using for example tabs plug-in loaded with ajax and on this loaded page exists some extra jQuery code it isn't executed. Co page is loaded but nothing is happening with code which was included. This problem doesn't exists in IE, FF or Opera. It appears only in
[jQuery] jquery.append in a loop working sequentially in FF but not IE or Chrome
I'm writing a dashboard with boxes (div) that update their content using ajax. The dashboard has two columns and I'm filling the boxes sequentially to start displaying them one after the other. It's working quite good with Firefox but not with IE and Chrome. On these two, the browser loads all the boxes before displaying the whole page. With Firefox, the boxes appear one after the other, sequentially. The code is the following: jQuery.each(col.boxes, function(i) { colContent = renderBox(col.boxes[i],
[jQuery] (validate) Repeatable Conflict Between jQuery Validate plugin and jQuery Lightbox Plugin
Hi all, I just wanted to let you know that I've been attempting to use the jQuery validation plugin and the jQuery lightbox plugin together on the same page and the inclusion of the jQuery validation plugin stops lightbox from seeing all but the first REL="lightbox" tagged image. I've put an example online here: http://www.arundel.freshmango.com/test.asp Simply removing the validate plugin immediately fixes the lightbox issue. Interestingly, there are no javascript errors during this. I've sent the
[jQuery] [treeview] How To "Forget" Previous Menu Item Position
Hi, To make it simple, say I have 2 menu items on each level and there are 3 levels each, A1 +-A2 | +-A3 | +-B1 +-B2 +-B3 where A3 and B3 are <href>. How treeview behaves now is when you click on item A1 then A2, you will see A1 +-A2 | +-A3 | +-B1 and subsequent clicking B1, A1 collapses and you will see B1 and B2. Finally, when A1 is clicked, B1 collapses, you will see A1, A2 and A3 (as shown above) again. What I want is when A1 is clicked it "restarts" i.e. it only shows A1 and A2. It has "forgotten"
[jQuery] JAlert Question
using a jAlert(), is there somehow a way to find out when the user has clicked the ok button? I saw the $("#popup_ok").focus().keypress( function(e) { if( e.keyCode == 13 || e.keyCode == 27 ) $("#popup_ok").trigger ('click'); }); and I added $("#popup_ok").live('click', function(e) { if( (!$.browser.msie && e.button == 0) || ($.browser.msie && e.button == 1) ) { $("#popup_ok").trigger('click'); } }); But in my file it wont do this: $("#popup_ok").click( function (){ alert("done"); }); And I don't
[jQuery] Toggle Not Working
Hi everyone, I am having problems with Toggle. You can see the jQuery and XHTML code below. Please let me know if you can see what's going wrong here. Thanks, $(document).ready( function() { $('a.toggle').click(function() { $(this).parents('div.portlet').children('.portlet_content').toggle (function(){ $(this).parents('div.portlet').children('.portlet_topper').addClass ('active'); }, function () { $(this).parents('div.portlet').children
[jQuery] howto: using autocomplete and validate (with remote) together
hi, i have in input element where the user can enter multiple email addresses (like in thunderbirds to: field) i use autocomplete to make suggestions form the database when the user enters new adresses. then i want to validate the emailadresses before sending the email, because the user can add email addresses by 1.) lookup or 2 manual editing so i used validate with var validator = $j("#werkeForm").validate({ rules: { empfaenger:{ required: true, minlength:2, remote: "ajaxserver2.php?cmd=chkEmail"
JQuery Accordian Menu Overlap
Hi all, I have a problem, with a Jquery script. I'm very new to it so please forgive me if this is beyond simple. I have an expanding menu which seems to work perfectly in FireFox, but everyone's favourite browser IE7, is overlapping the contents of the expanding section. Here is a link to better illustrate my issue. http://www.danickweb.co.uk/dan/test-site/ The basic html section is... <ul id="nav"> <li><img src="_images/navigation-arrow.jpg" alt="" /><a href="#">test</a></li> <li><img src="_images/navigation-arrow.jpg"
[jQuery] the best way to handle a group of div elements
Hi folk, In HTML code I have this situation: <div id="nam1" class='nc1 nc2 nc3 hidden'></div> <div id="nam2" class='nc1 nc2 nc3 hidden'></div> I would like to remove "hidden" to class value which class value starts with "nc1" I tried the following jquery code, but it doesn't work. $(.nc1).removeClass('hidden') Any ideas? thanks Antonio
[jQuery] styling thickbox
hi there im looking to style thickbox so it looks nice (rounded corners etc etc ) has anyone come across a tutorial/sample of where this is done as i cant find any ?? tnx sean -- View this message in context: http://www.nabble.com/styling-thickbox-tp24253110s27240p24253110.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.
Windows server breaks jQuery on everything but IE - HELP!
Hi all, I'm designing a series websites for the office which use JavaScript in the interface (jQueryUI, of course), mostly Tabs and the occasional Accordion. When served from the Windows servers at the office, the JavaScript breaks in every browser but IE. However, when served from my personal el-cheapo Linux hosting, it works great in all browsers, including IE. Tests (Note : the files on both the Windows and Linux servers are absolutely identical, the standard theme page downloaded with required
[jQuery] looking for a table of records (in this case users) with add,edit,delete options linked to Dialog boxes? read this
OK! Originally I had a problem with this script but I fixed it and it all works perfectly. If anyone has any use for this, here you go: this feature is using: jscripts/jquery-1.3.2.min.js jscripts/jquery-ui-1.7.1.custom.min.js jscripts/jquery.validate.js jscripts/jquery.form.js jscripts/jquery.metadata.js jscripts/jquery.tablesorter.min.js jquery.tablesorter.pager.js admin.php javascript: function updateUserList(){ $("#admin_list_user_box > .user_box").hide();
[jQuery] ui portlet
jQuery ui portlet I have a problem with jQuery ui portlet. We say that everything works and can save in the mysql db position of div, but I do not know how to load their position to the loading of the page, and then at every refresh the portlet back into their natural position which is the html code. Suggestions? Meanwhile, place some code [CODE] $("#contenitore-centrale .column").sortable({ connectWith: [ '#contenitore-centrale .column' ], handle: '.portlet-header', opacity: 0.6, items: '> .portlet',
Looking for a slideshow plugin
Hello, I'm looking for a jQuery slideshow plugin that will be similar to this MooTools effect http://www.electricprism.com/aeron/slideshow/example4.html Doesn't need to have the play/pause controls but I really like the way how the images are zoomed/moved and couldn't find any plugin for jQuery that will do the same. Thanks in advance for any help.
[jQuery] nicejforms latest version
Hello, I am wondering where can download the latest version of NiceJforms ? i found download from http://www.lexcat.ro/nicejforms/ not sure that version work with jquery 1.0 only or? as i fail when call them using jquery-1.3.2, it stated Object does not support this property or method ( i guess must be some syntax error ) all of my JQ syntax like following jQuery(document).ready(function(){ (function($){ $('#x_voice_out').corners({radio:5, outColor:'#00FDFD'}); })(jQuery); });
problem fading images in on image load
Im fairly new to jQuery but ive done something similar to this before in javascript. Basicly I want each image to fadein when it loads. Obviously this also involves making each image invisible to start with. I thought it would be something simple to do in jQuery but it seems to be really buggy. Rather than resorting to my none jquery code could anyone point me in the right direction, whats going wrong? http://www.jonathandevilliers.com/kenya Thanks in advance
Form Validation livequery JQuery
Hi, i am stuck with something different. I have two radio buttons in one page. When clicked on one.. it will load a form from another file through AJAX call. So it will update the DOM with form. I have set some validation rules for form using JQuery. But $().ready($(form).validate()) doesn't work as this is defined in the file which is loaded through AJAX as DOM is already loaded. I tried to use $().ready($('formid').liverquery(function(){$(this).validate();}); in parent page of the form page...
[jQuery] Ajax is not working in thickbox
http://jquery.com/demo/thickbox/ I developed thickbox as per above link instructions i got two issues 1.)Ajax Is not working in thickbox and 2.)Styles are not applying for thickbox I followed as per instructed in AJAXCONTENT Category and gave link as <a href="login_lightbox.html?height=215&width=250">Login</a> Where when i checked login_lightbox.html individually ajax functionality is working fine.....
[jQuery] Identifying the type of parent
<html> <body> Hello folks, I have a function, triggered when a particular type of link is clicked, which collects and inserts some text after the parent of the clicked link. This function works fine when the parent is a p tag, but I'm having trouble when the link is within a list tag. In this instance I would want the new text to be presented after the closing list item tag. How do can I distinguish whether the clicked link is within a p tag or within an li tag? Thanks, Bruce <tt>function fnGetSnippet(ni){
Next Page