[jQuery] Paid help with jQuery / plugins?
Hello group - I have just recently stumbled on to jQuery and already I am infatuated with the possibilities. That said, I am an obvious noob and may have bitten off more than I can chew on a current project. This page http://comparemyagent.com/forms/fa_sell.cfm is using Jorn's Validation and Accordion plugins to do some neat stuff that, if I can get it working 100%, will be top-notch and a step above anything I've done with forms before now. However... while the basic functions are in place and working,
[jQuery] 5 Star Rating System
Does anyone know of a good one, I've used one that made a space or gap above it and i couldn't get it to go away appropriately without rigging css -16px margin. Does anyone have any ideas about this?
[jQuery] Using .children recursively
I am trying to get all the children of a node, apart from adding ".children()" for every generation, is there one call that gets all recursively? this is what I´m doing at the moment $(this).children().children().removeAttr("name");
[jQuery] nonsecure items
Hi, I am using thickbox in an SSL enviroment. This thickbox uses JQeury, but when the page loads I get a message in IE7 that there are nonsecure items on the page. When I exclude following tag from my page <script type="text/javascript" src="../Js/jquery.js"></script> everything works fine so I guess its a JQeury problem. (offcourse, whitout this tag the thickbox won't work) Can anyone help me with this problem?
[jQuery] dimensions issue?
[Exception... "'Dimensions: jQuery collection is empty' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "<unknown>" data: no] anyone know why this would happen? here is that this happens on: $('.input:eq(' + index + ')').livequery('click', function() { if($('#' + indexs[index] + '_list').css('display') === 'none' && $('#' + indexs[index] + '_list').text() != '') { //alert('start'); var my_element = $('input[@name=' + indexs[index]
[jQuery] filter bug when expression contains spaces
Hi all, I have started to use Jquery a couple month ago, and i really love the framework. I am currently working on an event delegation plugin, attaching generic event to the document and applying filters to the target element to determine if an event should be applied. I have however noticed some weird behavior for the .is() and .filter() function : I am using the latest jquery version 1.2.1 and am having some troubles with the filter function. If you use filter with an expression containing a space
[jQuery] Focusfields
Hello all, I'm new to jquery, so forgive me if I'm asking questions which have been asked a thousand times. I've searched through the list archives and not had much luck with this one. I'm using the focusfields plugin, which I found here: http://www.texotela.co.uk/code/jquery/focusfields/ It works great on Firefox, Camino, etc., and the demo works fine on IE. But in my test setup, I get this error: 'this.parentNode.borderCss.off' is null or not an object Error comes up as soon as the page loads.
[jQuery] cannot retrieve elements with xpath
Hi, I have this simple html page: <html> <head><title>A test page</title></head> <script type="text/javascript" src="jquery.js"></script> <body> <script> $("//*[@myattr='2']").hide(); $("//table[@myattr='3']").hide(); </script> <h1 myattr="1">test-row1</h1> another row <h1 myattr="1">test-row2</h1> <img myattr="2" src="pic1.png" /> <img myattr="2" src="pic2.png" /> <table myattr="3"> <tr myattr="4"> <td myattr="5">test</td> </tr> <tr myattr="4"> <td myattr="5">test</td> </tr> </table> </body> </html>
[jQuery] $.ajax ?
Before I use the $.ajax function, do I need to install a codebase for it? I notice it is similar to Klaus Hartl cookie plugin, where I install his codebase, then use it later like var country = $.cookie('language'); When I start to use this code it seems almost like the rest of the working jQuery portions of the web page stop working. $.ajax({ url: "language_sheet_en.xml", dataType: "xml"; success: function(xmlDocument){ $(xmlDocument).find(...).dosomeThing(...);
[jQuery] newb: How to get google groups like layout
All the boxes, background colors, and rounded corners done using javaScript or css? Can I do similar layout, look and feel, with jQuery alone(without images) or combination of jQuery and CSS? thanks
[jQuery] Tablesorter dd/mm/YYY date problem
Have i write my parser for dd/mm/YYYY date format? The plugin use mm/dd/YYYY either i changing in plugin configs -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com
[jQuery] $(function()
2 Questions. 1. are there the correct number of parenthesis in this code. Is there a syntax error? It runs fine.. 2. What is this idea of wrapping the code in like a blank function() with no name? The one the looks like $function() ? I don't understand it and I want to. Being a noob javascript coder I understand functions like: function myCall() { // etc } $(function() { $("#languages").bind('change', function() { var country = $(this).val(); if(country) { $('#countryFlag').attr("src",
[jQuery] image preload problem (encore)
Hello, I am trying to preload some images using either one of the functions below. They don't seem to load. I really could use your help here. /// version 1 jQuery.preloadImages = function() { for(var i = 0; i<arguments.length; i++) { $('<img>').attr('src', arguments[i]); } } /// version 2 (not quite like the original) jQuery.preloadImages2 = function(){ var args = arguments; $(window).bind('load', function(){ var preload = new Array(); for(var i = 0; i<args.length; i++){ preload[i] = args[i]; }
[jQuery] Unexcpected Quantifier in IE6 (1.2.1 & SVN)
The problem is occurring on line 822 (from the current SVN code), /^\[ *(@)([a-z0-9_-]*) *([!*$^=]*) *('?"?)(.*?)\4 *\]/i, It only throws the error in IE6, I have been led to believe it is something to do with *, but I am unfortunately totally regexp retarded. Any insight would be appreciated.
[jQuery] Selector that works in Firefox but not IE and Opera
Hi everyone. I'm using the round plugin, latest jQuery recommended version and this piece of code to get things done. It works fine in Firefox, but fails in IE and Opera. I used this: $(document).ready( function() { $("div.round-container").corner("round 15px"); } ); Opera console tells me "Statement on line 8: Type mismatch (usually a non-object value used where an object is required)" Failure in IE is, well, no surprise, but when Opera also fails, that's a different story. I can't
[jQuery] Jquery Vs. Prototype
Hello, I am trying to decide on a JS framework for my website and I am looking at jQuery and prototype. While, I understand there are many philisophical differences between the implementations, it looks like to me one of the big differences are all of the new functions available in prototype. What I am curious about, is does jQuery have support for these things or in jQuery are you basically expected to use the easy access to DOM objects to create the functionality you need as you go. For example,
[jQuery] UI tabs - find unique
Trying out jQuery UI. Here's a problem I came across while looking at tabs. I need to ensure that when a tab is opened it's unique. That is, when an attempt is made to open a tab with the same content, an existing tab should open up instead. Here's what I mean: I have a grid that lists, say data on sales from a database. When a user clicks/double clicks a row a new tab opens containing, say, a sales report. If a user double clicks the same row again, i need to show him the previously opened tab.
[jQuery] from builtwith.com, with love: jquery leads ahead
i know... but still not bad at all: MooTools MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write powerful, flexible, and cross-browser code with its elegant, well documented, and coherent API. 0.78% of all profiled sites use MooTools. JQuery Query is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions
[jQuery] Verizon Wireless website using jQuery?
Spotted in the wild? - Go to http://www.verizonwireless.com - Look at your Firebug Script tab, find the script "gn_engine.js" That packed script looks suspiciously familiar...and it's 27K ?????
[jQuery] Error .ajax and etc in jQuery
I tryed to do .ajax call: {alert(reg_email); $.ajax ({url:"register.php", type:"GET", data: {reg_email:reg_email ,reg_pass1:reg_pass1,reg_fio:reg_fio,reg_tel:reg_tel}, success:function(data){$("#reg_agree").val("Готово");$ ("#reg_agree").remove();alert(data);} }) } Problem in: FireFox last work ok Opera last work ok IE 6: BAD in IE call done, and PHP script executing, but answer not complete.. and function(data){$("#reg_agree").val("Готово");$ ("#reg_agree").remove();alert(data);} NOT executing,
[jQuery] Odd Ajax problem:
I'm dong an Ajax call to retrieve some JSON and build a table from this. (code posted below.) The Ajax call is never firing the "success" function, but if I include an "error" function, that is called. Yet in that error function, checking the status code shows a "200" and the response text is my JSON code. The page in question loads just fine on it's own and the JSON looks fine. So I'm not sure why the error condition is being called. I'm sure it's something stupid, but I can't see it. Any tips?
[jQuery] Using "interface" for tooltips: tips appear under form dropdowns?
I'm using the latest jQuery and Interface. When I hover over an area with a ToolTip function assigned -- which works great -- the tooltip appears over most of the page, but under any dropdown lists on the form. Is there a good way around this? I've searched the archives, and only found one mention of a different plug-in that has fixing this problem on their to-do list. Thanks! jsandppr
[jQuery] $.load() POSTing instead of GETing
When I attempt to load into a ul (#tags) jQuery seems to be sending a `POST` request. Both my backend framework and Firebug seem to agree. Nowhere in the documentation does it specifically state whether it sends a GET or POST. Can anyone clarify? My code follows: $('#tags').load('/data/tags', {format: 'xhtml'}); Thanks, Angelo -- View this message in context: http://www.nabble.com/%24.load%28%29-POSTing-instead-of-GETing-tf4291429s15494.html#a12216857 Sent from the JQuery mailing list archive at
[jQuery] Upgrading to jQuery 1.2 article
I would just like to say that the following article on upgrading to 1.2 and rewriting for the removed Dom traversal methods and Xpath electors was very well written. http://www.learningjquery.com/2007/09/upgrading-to-jquery-12#more-71 I understand quite alot about the jQuery changes by reading it. It seems overall the goal in 1.2 was to make the library compatible with itself, since CSS/Javascript syntax is so different than XPath syntax in the end they were incompatible with each other.
[jQuery] ajaxcfc - how to write default error handler
I am using the new ajaxcfc version in jquery and I want to know how to override the default and write my own error handler. I am trying to catch a timeout. can anyone point me in the right direction? -- Duncan I Loxton duncan.loxton@gmail.com
[jQuery] ajaxcfc - if ajax call fails - how does it get handled?
I have a page that submits checkboxes as they are checked on the way down a form. The click hides the checkbox for a loading gif, submits the ID via ajax, and on its return changes the loading icon to a tick image. What I want to know is how to handle a failure of the ajax request. currently I have the following: $.AjaxCFC({ url: "/packages/ajax/primaryInvitee.cfc", method: "addInvitee", data: options, success: function(r) { thisCheck = "check_" + r.LOGINID;
[jQuery] weird problem with remove or toggle Class
I ve just downloaded new version of jquery 1.2.1 and i tried to do sth like that menu <div class="submenu hidden"> <div> zamknij login.html?form_action=logout wyloguj start.html start <!-- trzeba zadbac aby przy relodowaniu nie ubic sesji --> </div> <div> kontrahent zamowienie produkt dokumenty wynik wyszukiwania </div> </div> and my simple code in JQ is $(function(){ $('#open_menu').click(function(){ var $r = $(this).next().filter('div'); $r.removeClass('hidden'); }); }); result is that i dont have
[jQuery] Why doesn't jQuery complete animations smoothly?
Hello, Maybe this has everything to do with implementation and is not a fault of jQuery but I've always wondered why animations (like slideDown) do not finish smoothly. Case in point: http://leandrovieira.com/projects/jquery/lightbox/ The animation is smooth until the very end where it jumps to completion, skipping several "frames" of motion. Why is that? I've noticed it in my own basic animations too. Thanks, Chris.
[jQuery] problem with cookie plugin when trying to store array object in cookie
I don't see this is a problem with cookie plugin in particular but this is problem with cookie itself. Suppose this is the array var arr = []; arr.push({name:"vj",rollNo:10}); arr.push({name:"kr",rollNo:15}); The size of arr is 2 before storing in cookie I tried to store this array object in a cookie as $.cookie("cookieName", arr), and then later when I tried to access the length of array with cookie as var tempArr= $.cookie("cookieName")--which should give array object named "arr". and then I tried
[jQuery] Events not attaching; jquery 1.2.1 and interface elements 1.2
Having upgraded from jquery version 1.1.3.1 to 1.2.1 I've noticed a problem within internet explorer whilst using interface elements. This may be interface elements specific, though I have my doubts, or it may be something with the latest release of jquery.. either way I'm not really qualified to say one way or the other. So here's a small test case that I've put together; jquery 1.2.1 interface elements 1.2 using draggable and droppables A html page with two divs (though 1 div is fine for testing)
[jQuery] code is ok but page is reloading itself
this is the code $('#open_menu').click(function(){ $(this).next().filter('div').removeClass('hidden'); alert('dd'); }); everything is fine until I will press ok (that shows that my code is ok) on the alert button. then surprisingly the page is reloaded. i really dont have any errors, I ve changed lib from pack to unpack and still something is wrong:(
[jQuery] In regards to xml "design"
If I am purposing to consume XML it seems logical that the XML be designed the best that it can FIRST before consuming with more complex javascript, xpath, or your flavor of the month. In that regard is what I have desinged easy to consume using jquery/ ajax? <topNavLinks> <topNavLinkHome>SMC Home</topNavLinkHome> <topNavLinkLogin>Login</topNavLinkLogin> <topNavLinkTracking>Order Tracking</topNavLinkTracking> <topNavLinkMyParts>My Parts List</topNavLinkMyParts> <topNavLinkContact>Contact</topNavLinkContact>
[jQuery] Question on using jQuery with other libs
Is there still the requirement that jQuery be loaded /after/ the other lib(s)? The wiki page on this[1] doesn't explicitly say so, but I do (now) remember it being an important point in an earlier version of those docs when it was on the main site. I just spent a good bit of Angry Time with some scripting because I'd forgotten this, and pushing the library ( moo.ajax in this case) above jQuery suddenly fixed my problem. [1] <a href="http://docs.jquery.com/Using_jQuery_with_Other_Libraries">http://docs.jquery.com/Using_jQuery_with_Other_Libraries</a>
[jQuery] jCorner plugin not working as expected
Hello, I am having issues with Internet Explorer browsers and the jCorner plugin. As a refrence, lets use www.augustine.com/vacation/index.php - but there are many other pages on this site using corners where it breaks also. You can break the corners by having your mouse corner IN the browser window when the page loads, or when you refresh and the cursor is in the window, which is very odd behavior. I have validated with W3C and still experienced the same problem. The corner calls are stored in http://www.augustine.com/inc/swap.js
[jQuery] Can we store array of objects into cookie
Hi, I'm having trouble storing array of objects into cookie like var arr = []; arr.push({index:1,name:"vijay"}); arr.push({index:2,name:"krish"}); When I'm trying to store array of objects into cookie usin g jquery cookie plugin like $.cookie("arrCookie",arr);, It's not storing array object but a string as [object Object],[object Object] indeed. So, when I'm trying to retrieve the value in cookie its returning a string [object Object],[object Object] which is frustrating. Can anyone of you know a
[jQuery] Programming contest with $10,000 USD in prizes
Hi everyone, I work for MP3tunes.com and wanted to tell you about a programming contest that we are having. There are 10 categories and each one is worth $1,000 USD (for a total of $10,000 USD). If you're feeling up to it --- show us how you might use jQuery to interact with our API to do something useful. The ideas are due by Sept. 28th. But, the final code isn't due until Nov. 5th. You can find more information on our web site: http://mp3tunes.com/cb/contest Best regards, Kendall Dawson
[jQuery] tablesorter: border problem with scroll on the tbody
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000000"> <font face="Helvetica, Arial, sans-serif">Hi all, First time posting here, so please excuse me if I break something ;) I'm developing for the firt time with jQuery, mostly because of the tablesorter plugin, but I'm having a weird problem on the table in this page: <a class="moz-txt-link-freetext" href="http://www.zerocinco.com.br/clientes/bottero/catalogo/linha.html">http://www.zerocinco.com.br/clientes/bottero/catalogo/linha.html</a>
[jQuery] Focusfields
Hello all, I'm new to jquery, so forgive me if I'm asking questions which have been asked a thousand times. I've searched through the list archives and not had much luck with this one. I'm using the focusfields plugin, which I found here: http://www.texotela.co.uk/code/jquery/focusfields/ It works great on Firefox, Camino, etc., and the demo works fine on IE. But in my test setup, I get this error: 'this.parentNode.borderCss.off' is null or not an object Error comes up as soon as the page loads.
[jQuery] Validate plugin limited?
Is a limite of how much inputs we can validate? I have a form with 52 questions what is {required:true} very required. In a 29 questions required it works fine! -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.com
[jQuery] jquery ajax problem
Hello everyone, I think Ill go go nuts! I already posted something about problem Im facing with but I didn't get the right answer so Ill try again by expaining my problem further. My PHP website is organised in following manner: MAin file is index.php and it includes other files. So, my "components" are included by setting URL for example index.php? kom=gallery. Everything in gallery file (and all others) is printed into global variable $htmlOutput.= and is echoed at the end of execution of index.php.
Next Page