[jQuery] ClueTip - combining hover with click-to-activate
I've been reading through the ClueTip examples but can't figure out if this is possible. http://examples.learningjquery.com/62/ I want to display a short, standard hint on hover, something like "Click link to set filter" then if the user clicks, load a small confirmation dialogue ClueTip that includes a submit button of some sort - like, Set filter to foo? [submit] [cancel] (see the last example, click to activate) Is it possible to get two different 'ClueTips' from the same link? -- View this message
[jQuery] Attributes Solution for page DOM elements
Here is the code I created... sosForm2.prototype.getAttributes = function (myForm) { var attributeList = ""; if(myForm.attributes) { myAttributes = myForm.attributes; } else { myAttributes = myForm[0].attributes; } for(var iA = 0;iA<myAttributes.length;++iA){ attributeList = jQuery.ListAppend(attributeList,myAttributes[iA].nodeName); } return attributeList; } Obviously this is part of my plugin at the moment... but is this functionality in jQuery
[jQuery] Masked Input Plugin Beta 2a
I've released a minor update to the second beta of my Masked Input Plugin for jQuery. This release fixes a small bug where the mask disappears on focus when the input box has no data. Please check it out at: http://digitalbush.com/projects/masked-input-plugin/
[jQuery] SITE SUBMISSION: dutchpipe.org uses jQuery
dutchpipe.org - php/ajax avatar worlds on websites (already submitted but to the wrong group before, sorry ;)
[jQuery] Interface: More slider problems, restricted and fractions together
I am using the Sliders interface plugin to generate a range (minimum - maximum for use in calculating a price range of products. I need the minimum range slider to not pass the maximum range slider, but I also need the sliders to move in increments rather than smoothly. When I set the restricted: true property everything works as it should, but if I set both restricted: true and fractions: (some value) then I find that the slider for the maximum value produces strange results if the minimum value
[jQuery] Need jQuery contract developers
Hi, I am looking for contract developers that know jQuery well, especially the draggables and resizables modules of the interface library for a fun and exciting project. If this is you, please send me an example of your work and your rate! Apologies in advance if this is the wrong board for this post, I couldn't figure out where else to post it. I have been coding in jQuery nonstop for three months and need people to help add modules to the project! Thank you! Peter Yared peter@yared.com
[jQuery] german umlauts
hi list, i'm having a utf-8 encoded html document, where i'm adding some elements with jquery. i'm updating some selectboxes with this plugin <http://www.texotela.co.uk/code/jquery/select/> but i'm having difficulties adding values to selectboxes where i'm getting unknown characters like �. my guess is that the plugin is causing this. cause when i'm doing a simple: $j('body').prepend('<p style="color:#FFFFFF;">äÖÜß'); i'm getting ä��� so i guess i have to encode those, which would be ok. weird,
[jQuery] whats wrong with this query?
Hi, I'm getting a javascript error when i run this... its an IE error "Object expected line 10 char 5" any ideas? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/ TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> function loadContent(id) { $("#contentArea").load("autocomplete.php?typing='+id+'");
[jQuery] Reading HTML from XML
I use CodeIgniter and jQuery for my frameworks, and i was using the AJAX functions and I tried using XML for a return type, and when id have an error message, it would return a <div> like this format: <response><status>><div class="error">errormsg)</div></status></ response> And I had to set to read it like this: and the callback for the success is: function processlogin(data) { status = $('status', data).text(); if(status == 'success') { //Code I ran if the data matched, which isnt causing the problem
[jQuery] Release: Validation plugin 1.0 final
Its out! A version of the jQuery validation plugin that I call 1.0 final: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ I hope to improve the versioning of the plugin from this point on. On my list of possible milestone targets are more sophisticated event-handling per-element, a lot of integration examples with other plugins and libraries like date- and timepicker, masked input plugin and richtext editors like TinyMCE and FCKEditor. A long term target is to provide the necessary
[jQuery] radio button value into div
I have a quiz script, it's long so I'm showing and hiding the fieldsets. I'd like to give the visitor an indication that they have or have not answered a question. Displaying the value of the radio button for that question would be good, a small image would work. The code looks like: <h3>Longevity</h3> <fieldset> radio button 1 radio button 2 radio button 3 </fieldset> and I'd like to put the indicator next to the closing <h3> Similar to: $(document).ready(function() { $("input:radio").click(function()
[jQuery] Rollover plugin?
Hello, Anyone know any easy to use and clean image rollover plugin which can replace the DW rollover scripts? I don't like the DW scripts since it make my HTML difficult to read... Thanks.
[jQuery] ANNOUNCE: Proposal for Site Submissions
Hey guys, I usually take care of site submissions and I do my best to stay on top of it. I've found that I've missed a couple of submissions to the list as they got mixed in with others and I just overlooked it. So I would like to propose a prefix for any site submissions that would allow me to create a message filter and catch them accordingly. I'm thinking something like this: SITE SUBMISSION: The rest of the subject line an example would be: SITE SUBMISSION: Please jQuery.com to the list of sites
[jQuery] ul li display error in ie6 on ajax callback
I have an ul with li as navigation links for paging through a recordset via ajax calls. the ul and li render correctly--horizontally across the top of the record set table--in Firefox and in ie6 on initial load. They render correctly--horizontally--on ajax reload in Firefox. The ul and li render incorrectly--vertically--in ie6 after an ajax reload. It's insanely frustrating because the list items render correctly on initial load in ie6. It is only on the ajax callback that they break and display
[jQuery] Edit in place help?
Hello all, I am trying to create an edit in place page that draws some multiple pieces of text from a database, just like this example: http://15daysofjquery.com/examples/jqueryEditInPlace/demo.php How do i assign a value to the tag so that php will know which section of text has been edited? And what do I need to change in this function to make sure it will work send the edited text to "update.php". function saveChanges(obj, cancel, n) { if(!cancel) { var t = $(obj).parent().siblings(0).val(); $.post("update.php",{
[jQuery] SITE SUBMISSION: warmhearts.ca
<a href="http://www.warmhearts.ca/">http://www.warmhearts.ca/</a> Another site using jQuery, apologies if this has already been submitted. Almost daily now I see a site listed on <a href="http://cssimport.com"> cssimport.com</a> (a quieter version of <a href="http://cssbeauty.com">cssbeauty.com</a> - which is where I saw the team vignet site) - S
[jQuery] How do I create object from loading JS in right time?
I need to JS I am loading to create the object instance only after the DOM is loaded. What is the correct command? I want to initialize this from the include file rather than from the page where it's used. This is not currently a plug-in, and I may make it one. Right now my goal is listed above here.
[jQuery] Request: tablesorter, remember initial order and some small modifications
I love the official table sorter plugin, but I'm missing some functionality. Would it be possible to add 1) A new sorter "keep" that will remember the initial order. Why? Often I find myself in a situation where I get the table data from a database and let the database sort the first column. I get these kind of data Y2006 Y2005 Y1983 Y1982 or Q4 1988 Q1 2003 Q2 2003 Q2 2006 All I want is an option to make the initial order to be remembered on the first column. That way I don't have to write my own
[jQuery] load content into div
I want to load content into div when the page is loading : here my html : <div id="http://www.myweb.com/module1" class="module"> </div> i tried var loadRemoteModule = function() { $('.module').ready(function(){ var link = $(this).attr("id"); $('#'+link).load(link); }); }; but i get a 0x80070057 exception. Indeed, link is undefined. how to load the content of http://www.myweb.com/module1 when the div is ready? Can you help me?
[jQuery] DisableHeader tablesorter
How can disable 3 header ? not one.
[jQuery] error using jcarousel with jquery calendar
Hi all, I have a weird problem with jquery calendar that causes an error in Internet Explorer 7. If I use the jquery calendar and jcarousel on the same page together I get the following error: Internet Explorer cannot open the web site... Operation aborted. If I remove the calendar, or remove jcarousel everything works just fine. I've tried re-arranging the order in which I call the scripts and still get the error. Has anyone else run into such a problem?
[jQuery] Statistic for Interface Imagebox
Hi, I would like to know if anyone try to make statistic of viewed images under Interface Imagebox plugin or ThickBox. I need any solution with connection to database and save a hit when the image is viewed.
[jQuery] manipulate xml in IE6 isn't compatible?
I try to via ajax calling back xml object and manipulate, but IE6 can't get nodes infomation. Is jquery compatible under IE6?
[jQuery] How to create an endless animation?
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <meta name=Generator content="Microsoft Word 12 (filtered medium)"> <style> <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4;} @font-face
[jQuery] Selector for namespace style attributes help
I would like to be able to do the type of thing they are doing with SPRY. <input type="text" spry:required="true"...> 1. How can I pull the spry attributes with jQuery. 2. Is there a way to pull attributes as a wildcard? All attributes that start with spry?
[jQuery] Shopping Cart Dynamic Price Update
I'm writing a shopping cart and I'm trying to update the price on the fly. So I have this in my .js file: $(function(){ $('input.quantityInput').keyup(function(){ updateQuantity(this); }); }); And, I'm starting to write this function: function updateQuantity(input){ var tp = "#totalPrice"; var tilep = "#tilePrice"; if (i.attr('value') < 10) var tilePrice = '6.95'; else { var tilePrice = '5.95'; } var dollars = i.attr('value')*tilePrice; $(tp).empty().append(DollarFormat(dollars));
[jQuery] Cheat Sheet for jQuery v1.1.2 (PDF format) grab here.
Hey, long time jquery fan, I got time today to make One page Cheat Sheet (overview list of function in jquery library ) You know what to do with it, print it, tape it, type it, enjoy it. Download / view at PDF : www.n-bp.com/jquery_cheat_sheet/v112/jQuery_cheat_sheet_v1-1-2.pdf cheers, Nilesh - www.pixelide.com
[jQuery] Lame fix but working - google toolbar takes over the div
hey, in jorn's plugin and in serval more, if you put a div named "email" or "firstname" or whatever its writes ANNOYING message such as "Google can fill this field for you" (and i say : no thanks ;)) anyway i slove it with in that way lets say you have <label>email</label><input type=text name=emailaddress> just stick a comment within it: <label>e<!--blahblah-->mail</label><input type=text name=emailaddress> and its should work hope its helps
[jQuery] getJSON w/ PHP
I'm trying to use getJSON to return some JSON from a PHP page. I can see that the request is returning the expected response with Firebug, but the getJSON callback isn't firing? My PHP is simply <? echo "{ok:true,state:OUT-DECOMMISSIONED}"; ?> Do a need to set a special content type before returning the JSON?
[jQuery] background-image onload ?
Is there a way in jQuery to (1) set the background image of a div (easily done) and then (2) wait for that image to load before (3) fading it back in ? (1) is easily done, but I'm having problems getting (3) to wait for (2) to complete so that the animation is smooth. Hope that makes sense! TIA, Liam
[jQuery] problem with animate()...
Hi all, this is my first post to this list and my first attempt at porting a script to jquery, Ok so anyway... I've made this smooth image-list slider : http://dev.byron-adams.com/jquery/slider.html it was originally using prototype & scriptaculous (130kb+) so it works pretty well, except for one issue that seems to have somthing to do with the animate function/method let me attempt to explain how this works, if you click the right arrow button $("#control-next"), the $ ('#imageBoxInside') box will
[jQuery] rangeValue in Jorn Form Validation Plugin - zip validation
Hi, I'll want to validate a range in US(Los Angeles) zip field using great Jorn's Form Validation Plugin. For example: - how to ensure users enter only zip inside the range 902??-???? and 905??-??? Cheers
[jQuery] Accessing the elements of this
I'm a raw newbie but have not found this particular question answered. I have a series of dynamically generated radios each of which has three possible values Y (yes) N (no) and M (maybe) and want to capture mouse clicks and act on them depending on the value for example <td><input type="radio" name="Radio1" id="Radio1Y" value="Y" CHECKED></ td> <td><input type="radio" name="Radio1" id="Radio1N" value="N" ></td> <td><input type="radio" name="Radio1" id="Radio1M" value="M" ></td> The
[jQuery] Accessing the elements of this
I'm a raw newbie but have not found this particular question answered. I have a series of dynamically generated radios each of which has three possible values Y (yes) N (no) and M (maybe) and want to capture mouse clicks and act on them depending on the value for example <td><input type="radio" name="Radio1" id="Radio1Y" value="Y" CHECKED></ td> <td><input type="radio" name="Radio1" id="Radio1N" value="N" ></td> <td><input type="radio" name="Radio1" id="Radio1M" value="M" ></td> The
[jQuery] jQuery blog is borked
Just in case no one is already aware of it, the jQuery blog (http://jquery.com/blog/) is borked.
ANN: jQuery Paris Meetup
When: Sunday, June 24, 2007 - 10:30 AM Where: Hotel Helder Opera 4, Rue du Helder Paris, Île-de-France 75009 About: This is a meet up for those that use and are interested in the jQuery JavaScript Library. We'll be meeting in the lobby of the Hotel Helder Opera and then move to a park for a picnic. John Resig, the creator and lead developer of jQuery, will be attending. This meet up is being organized by the SPIP (a popular CMS, happily using jQuery) core team. Register: If you're interested in attending
[jQuery] NEWS: plainTemplate & phpQuery
Ajaxian has a great post about plainTemplate & phpQuery. phpQuery is a port of jQuery to PHP is being used within plainTemplate to help write template processing rules. You can check out the Ajaxian write up here: http://ajaxian.com/archives/plaintemplate-phpquery Direct link: http://wiadomosc.info/plainTemplate/ Rey -- BrightLight Development, LLC. 954-775-1111 (o) 954-600-2726 (c) rey@iambright.com http://www.iambright.com
[jQuery] jQuery Tabs with AJAX and href="javascript:..."
Hi, I am using the jquery tabs with dynamically generated divs (the AJAX variant): <div> <ul> <li><a href="somefile.htm">link</a></li> ... </ul> </div> When the user clicks on the tab nav, I want to display a loading image in the content area (=the dynamically generated div). I tried to bind an onclick function ("$('tablink').click(...)) to the a-tag, but it doesn't work correctly: there is no defined order in which my onclick and jquery tab's onclick are called (sometimes the loader is displayed
[jQuery] ANNOUNCE: Please Welcome New jQuery Team Member Glen Lipka
The jQuery Project would like to welcome our newest team member, Glen Lipka. Glen has been a fantastic contributor to the project offering both positive feedback and exceptional support to the jQuery community. He's consistently demonstrated his commitment to advocating the benefits of the jQuery library to his peers via presentations, mailing lists and blogs. Even when forced to use another library, Glen still chose to continue to assist the jQuery community because of his true adoration for the
[jQuery] Form Element Collection
Does anyone have a way to pull individual form elements via a common request simular to how they use $F() in prototypt? I would like to be able to set/get any form element value via this scope using the element ID. (Currently select boxes don't work the same as an input element to my perception.)
Next Page