[jQuery] ANNOUNCE: New jQuery-powered site Vino2Vino.com
I just came upon the site Vino2Vino.com (http://www.vino2vino.com/) and its very well designed. From the site: "With Vino2Vino, our goal is to build an extensible platform that will consolidate information about wine into a central location and to make this information broadly accessible worldwide." Its using carousels in the center to scroll through different wines and is leveraging jQuery plugins for corners, over labeling, fading, star rating and form management. Rey...
[jQuery] jquery book
Hi, http://www.packtpub.com/jQuery/book the learning jq book is available. unfortunately this is not true for its PDF version wich i would prefer. GC
[jQuery] Interface Sortlist + Thickbox Bug
View this image: http://img523.imageshack.us/img523/2008/idragthickboxwb1.jpg I use Thickbox and Ajax content, on-demad sortable $('#sort1').Sortable( { accept : 'sortableitem', helperclass : 'sorthelper', //activeclass : 'sortableactive', //hoverclass : 'sortablehover', //ghosting: true, //opacity: 0.8, fx: 200, axis: 'vertically',
[jQuery] Borderline jquery/css query about textareas
I'm not sure if this is something that jQuery can really help me with, but I suspect it's something that someone here may have solved before. I've just added some functionality to my map editing web app to allow you to edit sections of the text config directly - it uses jQuery to fetch a chunk of text, and presents it in a textarea, where it can be edited and submitted back to the server. The problem is that there doesn't seem to be a combination of styles that gets a proper notepad-style textarea:
[jQuery] repeated click when using .show(slow)
Hello, I've a link I'm using .show(slow) - it works fine unless I click repeatedly fast on the link - re-clicking the link while the effect is still running leads to weird results - is there a way to cancel the running effect before applying the new one or what's the best way to handle something like this. thank you in advance for your help.
[jQuery] Problem with IE6 FadeIn and FadeOut
Greetings. I read several instances of an inconsistency with FadeIn and FadeOut in searching for an answer to my problem, but never saw one that was successfully complete. The problem is that FadeIn and FadeOut effects seem to work fine in Firefox but not in IE6. You can see an instance of this here: http://www.jrcg.net/jquery/test.html I have seen several "workarounds", none of which work. Any help is appreciated. Below is example code: test.html: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
[jQuery] iPhone and jQuery
I am trying to get jQuery to work on the iPhone I can view this simple demo just fine on my server: http://www.whatbird.com/wwwroot/music.html#_home ] I downloaded the source of the page and necessary files. When I open the page on my PC server (local) the lists appear to all be open! Any clue why? here is the link to all the images, js and css and other demos. http://www.joehewitt.com/iui/ Thanks Mitch
[jQuery] ajax newsticker does not work in IE. Any clue?
Hi list, today at work i had to build a news ticker based on XML (Ajax). I'm "sponsoring" jquery so much that they told me: ok let's see what jquery can do. And voilà, i ended up with this "experiment": http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/ The problem is that this fails totally at reading the XML file in IE both 6 and 7 while it works like a charm in FF and Opera. Unfortunately this ticker will run inside an intranet app, under IE! So you understand it is vital that
[jQuery] How to get a ref to the event handler registered via the bind() function?
It seems that if an event handler is bound to an element through the bind() call, it won't be available when using the element.onXXX attributes. So if I do: $('#myEle').bind('click', function(){ // do something }); the myEle.onclick is still undefined. I also tried the $('#myEle').attr('click') and it's not there. So how can I get the reference to this function then? The reason is that a plugin I used registered a click handler on the element, and I need to do something before that click handler
[jQuery] How to get a ref to the event handler registered via the bind() function?
In short, it seems that the event handler function registered via the bind() method is not available through the element's onXXX attributes. For example: $('#myEle').bind('click', function(){ // do something }); but the myEle.onclick attribute is still undefined after the above bind() call. The handler is registered into the $events hash, I believe, but I couldn't figure out how to get the reference to it. Can anyone help me out? Thanks!
[jQuery] Jquery doesn't work with mod_rewrite ?
Hello, I've already post this message in another lists wihch was not the right one.
[jQuery] ptTimeSelect plugin with focus() on form input
I would appreciate any help trying to understand how I'm supposed to solve this problem with jQuery and the ptTimeSelect jQuery plugin. The ptTimeSelect plugin works as it is designed by clicking the icon which appears to the right of the input field. However, I would like this to work similar to the Calendar plugin where on focus in the input field it will also popup the time select element. I have tried chaining and putting the ptTimeSelect code within a function inside the focus() function, but
[jQuery] ANNOUNCE: fr.jquery.com/planet
There's a new jQuery planet[1], and it speaks French: <a href="http://fr.jquery.com/planet">http://fr.jquery.com/planet</a> We've got two french jQuery blogs syndicated so far: Gastero Prod <a href="http://jquery.info">jquery.info</a> Note: <a href="http://fr.jquery.com">fr.jquery.com</a> (without the /planet) is a work in progress. For now it just redirects to <a href="http://jquery.com">jquery.com</a> . Stay tuned. - Richard [1] <a href="http://www.nabble.com/-ANNOUNCE--planet.jquery.com-tf4070087s15494.html">http://www.nabble.com/-ANNOUNCE--planet.jquery.com-tf4070087s15494.html</a>
[jQuery] interface plugin not working with jquery 1.1.3.1?
I had the following jquery script in my web page and it worked fine with jquery 1.1.2. After an upgrade to jquery 1.1.3.1, the Bounce effect causes errors according to Firebug. The error is "jQuery.easing[e.easing] is not a function" Not sure if anyone else has noticed this or if there is a workaround. $(document).ready(function(){ $('div#step1_animation').click(function() { $('div#step1container').SlideOutLeft(1000, function(){ $('#visualNav').append('<div id="stepThumb"><img src="images/ create_step1_animation.jpg"
[jQuery] [NEWS] AjaxRain.com Continues to Grow
I've mentioned AjaxRain (http://www.ajaxrain.com/) on numerous occasions and for good reasons. They have by far, the most comprehensive collection of Ajax/DOM/JS components around and its constantly being updated. Apart from that, they're a jQuery-powered site with a developer that loves jQuery and is always posting the latest jQuery plugins on there. They're now up to 418 plugins and demos so be sure to check them out: http://www.ajaxrain.com/ Rey
[jQuery] jQuery & jEditable
I'm using the jEditable plugin which can be found here: http://www.appelsiini.net/~tuupola/258/jeditable-in-place-editor-plugin-for-jquery/save.php The examples files for saving to a database use Pear DB and SQL Lite or something... I've been trying to get it to work with MYSQL but so far I've had no luck. Here is the code I have for save.php /////////////CODE <?php require_once 'dbConnection.php'; function getLastID() { $id = mysql_fetch_row(mysql_query("SELECT LAST_INSERT_ID()", $this-
[jQuery] jQuery Tabs Issue in Internet Explorer
If this is a duplicate post, I apologize. The website I'm working on is here: http://www.rose-hulman.edu/~bryantms/prizes.html (temporary host) I'm working with jQuery tabs found here: http://www.stilbuero.de/ As you can see in IE, it is not displaying properly. I believe this is CSS related, but don't know enough to be able to fix it. If you view it in Firefox, it works just as I want. Can anyone help me in troubleshooting this issue? I appreciate the help.
[jQuery] [Interface] ScrollTo
Hi, I am using the ScrollTo function of interface but I can notice that it is not very fluid scrolling... I use it to scroll my header on all the pages except the main page. So I have put it in the jQuery(document).ready function, so that when the user clicks on the page, it automatically scroll header and go on content. If anyone has any tips to improve the scrolling, let me know! Thank you ! -- View this message in context: http://www.nabble.com/-Interface--ScrollTo-tf4122985s15494.html#a11725473
[jQuery] superfish delay not working
I have a single-level css dropdown and wanted to add a delay, so I setup superfish. It's working as I can see the animation when I mouse over my menu, but the mouse delay isn't working. I think I need to add the sfHover class somewhere into my css, but can't find exactly what I need to change to get this working. I was using the demo CSS file as an example but could not get it to work. Here's my CSS #header #nav { position: absolute; list-style: none; right: 0px; top: 60px; background: #323232; }
[jQuery] Using slideToggle with multiple divs
Hello, I wish to use slidetoggle with multiple divs. I have implemented it using only one div however I want all of the divs to operate independently. Here is the HTML structure of a story on my website: <div class="story"> <div class="storytitle">hello</div> <div class="storybg">blah blah blah</div> <div class="storybottom"><a href="" id="comment- toggle">comment</a></div> <div class="commentbox" style="display:none;">comment form</div> </div> The div that I want to be toggled on each story is the
[jQuery] load record and show form, two responses from clicking one link
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.5730.11" name=GENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=#ffffff> <DIV><FONT face=Arial size=2>Hi-</FONT></DIV> <DIV><FONT face=Arial size=2></FONT> </DIV> <DIV><FONT face=Arial size=2>I have to thank you all for things like 15 days of jquery and the sites with the tutorials, I've been able to add some great things to my
[jQuery] Error in IE 5.5 / jQuery 1.1.3.1 - 'nodeName' is Null
Hi, I just upgraded from 1.2 to 1.1.3.1 (compressed version) Everything works fine, but in IE 5.5 there seems to be a problem with the new version: It says: 'nodeName' is Null or no Object, line 185 best ragards Bernd -- View this message in context: http://www.nabble.com/Error-in-IE-5.5---jQuery-1.1.3.1----%27nodeName%27-is-Null-tf4115982s15494.html#a11704870 Sent from the JQuery mailing list archive at Nabble.com.
[jQuery] Should be real easy but not for me
Why wont this work. Its so simple. I just want to call a fuction using the onclick event. I want it to move a div called Panel. I set up the function function advmode() ( $("#Panel").SlideInRight(1000); }; Then inside a table cell with an image for a button I have this simple link <a href="#Javascript;" onclick="advmode()"><img src="images/Advanced Search Button Wide_No.png" width="250" height="25" /> I must be missing something really basic because this does not
[jQuery] ie6pnghack plugin weirdness
Hi guys, I have a weird situation (1) uzhana.com - uses ie6pnghack plugin http://khurshid.com/jquery/iepnghack/ (2) sensorynetworks.com - uses same methodology without implementing jquery (1) always waits till all images are fully loaded before showing the actual page (2) starts loading the page immediately and then apply png hack Problem is using (1) getting really annoying, 'cause page doesn't show anything till all images are fully loaded (especially painful for people on dial-up) Sharing your
[jQuery] Server Time of the day Clock functions
Can jquery be used to load a different site design (skin if you like) according to the hosting server clock time. The inspiration for the idea is: http://www.taprootcreative.com/ Which loads different site backgrounds and background sounds. Not quite sure how they have their version working. Too see both versions whether than waiting until the time changes via the Tallahassee, Florida server clock, check here: http://web.archive.org/web/*/www.taprootcreative.com Click on anything after Feb 27, 2007
[jQuery] dev tip: combining JS script files
Hi, all! i just wanted to take a moment to share a tip which i don't see used too often on live sites: Combine all of your JS scripts into a single file. This helps reduce the load time of the page by reducing the number of separate GET requests. In principal you should be able to do the following to combine the files: cat file1.js file2.js file3.js > all.js but some scripts do not work with this because they are missing a trailing semicolon (shame on them!). A simple workaround is: for i in file1.js
[jQuery] Animate bug under IE6?
Hey all -- I'm new to the list (but not so new to jQuery), and was hoping I could get some assistance regarding what appears to be a bug in the .animate function when running under IE6. Inside a .click function assigned to a specific anchor tag, I call .animate using jQuery 1.1.3.1. It works in Firefox and Safari, but IE6 reports a runtime error. When I switch to jQuery 1.1.2, it works (mostly). The first animate sequence doesn't slide, but merely re-draws when the final frame is done, but all subsequent
[jQuery] ie6pnghack plugin weirdness
Hi guys, I have a weird situation (1) uzhana.com - uses ie6pnghack plugin http://khurshid.com/jquery/iepnghack/ (2) sensorynetworks.com - uses same methodology without implementing jquery (1) always waits till all images are fully loaded before showing the actual page (2) starts loading the page immediately and then apply png hack Problem is using (1) getting really annoying, 'cause page doesn't show anything till all images are fully loaded (especially painful for people on dial-up) Sharing your
[jQuery] Resizable Div with Shadow Effect?
Has anyone been able to create s div element with a shadow effect and resize this div layer to fit the height and/or width of the dynamically changing content? As I understand it, you can't resize background images. But, is there another way to do this without a background image?
[jQuery] Using slideToggle with multiple divs
I plan on using jQuery to show/hide comment boxes for corresponding news stories on my website. I have implemented the code to make just the one box slidetoggle, but like I mentioned there are numerous comment boxes on the page and I don't really know how to make them all behave independently. I've had a look at some accordion type tutorials, but from what i've seen they all focus on using a similar HTML structure, which wouldn't be feasible to use with my news layout. I hope that someone can help
[jQuery] Long running script IE6, help!
Hey jQuery'ers, I am having an issue with jQuery in IE6. I have a very large html page coming from the server which also includes the jQuery packed file. When the page is too large, IE6 throws a "long running script" error; the end user clicks abort script, and havoc ensues with the database as it throws a "broken pipe" error. I commented out jQuery and the page runs fine, no long running script error. So I know that is the cause. Is this some kind of a document.ready issue? Is there something I
[jQuery] [SITE] Performancing using jQuery
Came across this on Technorati: http://performancing.com/the-new-pmetrics-dashboard The new pMetrics Dashboard is designed to quickly and efficiently show you the traffic data that you care about. It is full of live refresh fun (many thanks to the jQuery JavaScript library), and includes the ability to drag and drop the modules to wherever you want on the screen. They'll stay there forever until you move them again. The screenshot above shows a number of modules from the Dashboard. Take the 'Links'
[jQuery] Cookies with JQuery?
Am I able to set client-side cookies with JQuery? That would be REALLY great!! I could store the Language state in this cookie. $(function() { $("#languages").bind('change', function() { var country = $(this).val(); if(country) { $('#countryFlag').attr("src", "images/" + country + ".gif"); } }); }); Believe it or not I never got good or was able to write cookies in javascript, they seemed incredibly overly-complex for my liking.. being an .asp hacker over
[jQuery] jQuery JSON
I am not sure if this helps, but here you go... a simple JSON plugin for jQuery. http://www.gnucitizen.org/projects/jquery-json/ I will add also the JSON serializing and deserializing features from AttackAPI (http://www.gnucitizen.org/projects/attackapi) soon. cheers
[jQuery] Intensive CPU + Animated GIFS
I have an intensive operation that occurs in my code, and when it does animated gifs pause their animating. I tried wrapping the offending code in a setTimeout(function(){...},0) with no luck. Right now the basic code looks like this: $("#gif").show(); //#bigtable has 1500 rows 4 columns wide $("#bigtable tbody tr").each(function(){ //Search operation }); $("#gif").hide(); The part between the gif show/hide takes 2-3 seconds, and I'd like to show some motion in the UI while it's doing it's thing.
[jQuery] select by onclick text
I am trying to select all submit, or image buttons on my form that contain a javascript confirm function. The following seem to both return the same thing, any hints? $('form :image') -returns all image buttons, as expected $('form :image[@onclick :contains("confirm")]') -also returns all image buttons, even those who's onclick event does not contain 'confirm' -- View this message in context: http://www.nabble.com/select-by-onclick-text-tf4117850s15494.html#a11710434 Sent from the JQuery mailing
[jQuery] Announce: Confirmer plugin
Hi again, all! Confirmer is a plugin for jQuery which implements a novel approach to the process of confirming an action. Normally this is achieved via a yes/no dialog box or a button with a "confirm" checkbox next to it. The Confirmer plugin instead sets up a single button which changes to a "confirm the action" state if it is clicked one time. If the button is clicked again within a specified time then the action is confirmed, otherwise it times out and returns to its initial state. http://wanderinghorse.net/computing/javascript/jquery/confirmer/
[jQuery] Select LIst with Jquery
I have some basic markup: <img id="countryFlag" src="images/us.gif"> <select style="width: 100px;" onchange="javascript: alert('hello world!');"> <option value="0">Language</option> <option value="1">English</option> <option value="2">Japanese</option> </select> I have done some basic Jquery that changes or alters basic classes, Id's, or element attributes. But I am not sure how to use Jquery in a function manner yet. How do I get the src for the flag image to change, id countryFlag, when Japanese
[jQuery] draggable clone name
i am using onDrag to update some info within the dragged div which works but what i really want is to update the info in the clones. how are the clones named, anyone know off-hand? ~Terry
[jQuery] [ANNOUNCE] jQuery Accessibility Plugin
Hi Folks, Today I am happy to release my second plugin for jQuery - the jQuery Accessibility Plugin. Code: http://code.google.com/p/ability/ Demo: http://webrocket.ulmb.com/ability/ This plugin takes a div that you pass in, and adds the additional HTML required for the buttons: $('#mydiv').ability(); This plugin provides text resizing, allowing you to pass in as many classes as you would like to attach to the accessibility plugin. Same with the theme switching. And there is a reset button too. I
Next Page