[jQuery] carousel blocks adjacent links
I have a list of links in a column to the right of my carousel. Those links are not clickable until all the images in the carousel have scrolled to the left. The overflow for .jcarousel-list is set to 'hidden.' It's like the hidden images are on top of the links in the adjacent column. I tried setting a z-index in the style for both #mycarousel and for the adjacent div, but that did not work. -- View this message in context: http://www.nabble.com/carousel-blocks-adjacent-links-tf3188077.html#a8848907
[jQuery] Star rating plugin with half star option?
Indeed, I'd like to be able to select half stars. I actually can't get this plugin to work at all! I suspect it might not have been changed for Jquery 1.1. I've written an email to the creator to ask about that. Doesn't seem like there's a star plugin to select stars? thanks! -kim --- Andy Matthews <lists@commadelimited.com> wrote: > It displays half stars, but it sounds like the OP > wants to be able to SELECT > a half star. > > _____ > > From: discuss-bounces@jquery.com > [mailto:discuss-bounces@jquery.com]
[jQuery] Another jQuery Modal Slideshow
Oh...you might also consider support for clicking the image itself to advance to the next one. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of ProjectAtomic Sent: Wednesday, February 07, 2007 9:05 AM To: discuss@jquery.com Subject: [jQuery] Another jQuery Modal Slideshow jQuery noob here looking for feedback on my jQuery slideshow http://www.projectatomic.com/slideshow Features: easy to implement, no extra markup or external stylesheets,
[jQuery] Another jQuery Modal Slideshow
I like it. The transitions are nice. Only comment I have is that you should have a loading spinner between transitions as your images are fairly large in file size. When I clicked on the first thumbnail I had to wait about 7 or 8 seconds before the image loaded. At that point I wasn't sure if there was an error or something. Good work. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of ProjectAtomic Sent: Wednesday, February 07, 2007 9:05
[jQuery] OT: rey bango...can you email me please?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=639223414-07022007><FONT face=Arial size=2>Hey Rey...</FONT></SPAN></DIV> <DIV><SPAN class=639223414-07022007><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=639223414-07022007><FONT face=Arial size=2>When you see this, if you have a moment, would you mind emailing
[jQuery] Star rating plugin with half star option?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY> <DIV dir=ltr align=left><SPAN class=756181114-07022007><FONT face=Arial color=#0000ff size=2>It displays half stars, but it sounds like the OP wants to be able to SELECT a half star.</FONT></SPAN></DIV><BR> <DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left> <HR tabIndex=-1> <FONT
[jQuery] AjaxCFC (paging Rey Bango...)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY text=#000000 bgColor=#ffffff> <DIV dir=ltr align=left><SPAN class=633160814-07022007><FONT face=Arial color=#0000ff size=2>Don't get me wrong. I'm not returning HTML for the whole page. I'm ONLY returning the HTML for the affected portion of code. To use my cookbook as an example...when you
[jQuery] FW: selectbox plugin - take 2
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.2900.2180" name=GENERATOR></HEAD> <BODY> <DIV dir=ltr align=left><SPAN class=865022108-27012007><FONT color=#000080>I would like to know too. Is this a method for replacing form selectboxes with CSS? It would be great to see something like that. It would cure a lot of issues with IE Selectboxes (premature onchange firing, iframe
[jQuery] can't edit textarea / input texts inside a sortable
hi, by default, the sortable catches all the click events. so if you want to edit them, you can assign a onclick event which in turn calls focus(). here is the code: $("input").click( function() { $(this).focus() } ); avi -- ------------------------------------------------------ Visit me at <a href="http://jodhpuriguy.com">http://jodhpuriguy.com</a> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Latest Tablesorter SVN not sorting w/ IE6/7 ?
Hi, I've been racking my brain on this for hours, and am somewhat embarrassed to ask.... so is there anything in this HTML, I'm doing that should be done differently? IE6/7 throws an error: Number expected. For the life of me, I can't see what I'm doing wrong ... Thanks and its a great plugin, -Jonathan ____________________________________________________________________________________ Need Mail bonding? Go to the Yahoo! Mail Q&A for great tips from Yahoo! Answers users. http://answers.yahoo.com/dir/?link=list&sid=396546091_______________________________________________
[jQuery] .load() on IE7 returns Cached results
Thank you very much, Blair. That seems to have done the trick. Don't you wish sometimes IE would just go away so life would be simpler. ;-) > -----Original Message----- > From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On > Behalf Of Blair Mitchelmore > Sent: Tuesday, February 06, 2007 10:41 PM > To: jQuery Discussion. > Subject: Re: [jQuery] .load() on IE7 returns Cached results > > Try adding a random number or a timestamp to the url you request. IE > loves to retrieve caches
[jQuery] .load() on IE7 returns Cached results
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" 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 11 (filtered medium)"> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {margin:0in; margin-bottom:.0001pt; font-size:12.0pt; font-family:"Times New Roman";} a:link, span.MsoHyperlink {color:blue; text-decoration:underline;}
[jQuery] How to get keyCode
$("#tbPageInfo").keydown( function(e){ var key = e.charCode ? e.charCode : e.keyCode ? e.keyCode : 0; alert(key); } ); In FF2 it works but there is a error: jQuery is not defined http://localhost/qis/script/jquery.js Line 1 jQuery is not defined eval(function(p,a,c,k,e,d){e=function(c){return(c<a?"":e(parseInt(c/a)))+((c=c%a... --------------------- I find the plugin:http://rikrikrik.com/jquery/shortkeys but I am not sure how to use? $("#tbPageInfo").shortkeys({ 'N': function () { $('#try_me').append('N<br
[jQuery] very simple JSON
<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:st1="urn:schemas-microsoft-com:office:smarttags" 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 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);}
[jQuery] can't edit textarea / input texts inside a sortable
Has anyone else notice this? I have lists of textareas and input texts which is sortable, the sortable plugin is nice and all but then I couldn't get the textareas/input texts editable? here's my code <ul style="list-style:none"> <li class="listitem" style="border: 3px solid #f00; background-color: #ccc; padding: 20px;"> <div> <h3>Item #1</h3> Dummy TextArea <textarea></textarea> Dummy InputText <input
[jQuery] Star rating plugin with half star option?
I've seen two versions of a jquery star plugin, but neither supports voting in half star increments. I'd like this functionality and don't really know how to hack something together to make it work. Is there a star plugin that supports half stars? Are there plans to implement that sort of functionality anytime soon, with the existing plugins? thanks, -kim ____________________________________________________________________________________ Need Mail bonding? Go to the Yahoo! Mail Q&A for great tips
[jQuery] very simple JSON
<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:st1="urn:schemas-microsoft-com:office:smarttags" 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 11 (filtered medium)"> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="City"/> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
[jQuery] AjaxCFC (paging Rey Bango...)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML xmlns="http://www.w3.org/TR/REC-html40" xmlns:v = "urn:schemas-microsoft-com:vml" xmlns:o = "urn:schemas-microsoft-com:office:office" xmlns:w = "urn:schemas-microsoft-com:office:word"><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.5730.11" name=GENERATOR><!--[if !mso]> <STYLE>v\:* { BEHAVIOR: url(#default#VML) } o\:* { BEHAVIOR: url(#default#VML) } w\:* { BEHAVIOR: url(#default#VML)
[jQuery] tablesorter and MSIE7 help
Hi, I upgraded tablesorter the latest version which is available from the svn and {useCache: false} in the tablesorter constructor. It works on MSIE7, but Firefox 2.0.0.1 does not work. Thanks for all the help. --- On Tue 02/06, Christian Bach < christian.bach@polyester.se > wrote: From: Christian Bach [mailto: christian.bach@polyester.se] To: dexterwong@iwon.com, discuss@jquery.com Date: Tue, 6 Feb 2007 11:49:05 +0100 Subject: Re: [jQuery] tablesorter and MSIE7 help Hi,First upgrade to the latest
[jQuery] AjaxCFC (paging Rey Bango...)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML xmlns="http://www.w3.org/TR/REC-html40" xmlns:v = "urn:schemas-microsoft-com:vml" xmlns:o = "urn:schemas-microsoft-com:office:office" xmlns:w = "urn:schemas-microsoft-com:office:word"><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.5730.11" name=GENERATOR><!--[if !mso]> <STYLE>v\:* { BEHAVIOR: url(#default#VML) } o\:* { BEHAVIOR: url(#default#VML) } w\:* { BEHAVIOR: url(#default#VML)
[jQuery] AjaxCFC (paging Rey Bango...)
<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="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 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style>
[jQuery] New Plugin: Pseudo (:before and :after in IE)
Hi Everyone, I was frustrated today with IE not supporting the :before and :after CSS2 selectors, so I've written a plugin that (more or less) enables them :-) http://jquery.lukelutman.com/plugins/pseudo/ Luke P.S. Fun fact: the plugin hacks IE with it's own proprietary junk, like so: * { behavior: expression(...); } Take that, Internet Exploderer! _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] AjaxCFC (paging Rey Bango...)
<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="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 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style>
[jQuery] tablesorter and MSIE7 help
Hi, thank you for you help. I updated to the latest version of tablesorter from svn and then used the {useCache:false} parameter to the constructor. It works in MSIE7 but now firefox 2.0.0.1 does not work. Thanks for all the help. --- On Tue 02/06, Christian Bach < christian.bach@polyester.se > wrote: From: Christian Bach [mailto: christian.bach@polyester.se] To: dexterwong@iwon.com, discuss@jquery.com Date: Tue, 6 Feb 2007 11:49:05 +0100 Subject: Re: [jQuery] tablesorter and MSIE7 help Hi,First
[jQuery] Quickest way to clearALL form elements after Ajaxsubmit
Hi Klaus, Lquid, Mike: Any risks or conflicts by just using the simple: document.forms[0].reset(); with jQuery? Seems to work OK for me.
[jQuery] Taconite Plugin - New and Improved!
Beautiful work Mike. I can't wait to start testing and using this! -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Mike Alsup Sent: Tuesday, February 06, 2007 12:40 PM To: jQuery Discussion. Subject: [jQuery] Taconite Plugin - New and Improved! I've just rewritten my Taconite Plugin and added some pretty cool features. If you're not familiar with Taconite, it's an easy way to effect multiple client-side updates with the results of a single
[jQuery] AjaxCFC (paging Rey Bango...)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY text=#000000 bgColor=#ffffff> <DIV dir=ltr align=left><SPAN class=250114821-06022007><FONT face=Arial color=#0000ff size=2>My pleasure. And just FYI. When you run that WDDX tag, it basically returns a string that seems to resemble JSON quite a bit, might actually BE JSON, but I've never inspected
[jQuery] Autoscrolling with Interface Sortables
Hello! Can anybody offer some advice as to what I'm doing wrong here? In the interest of not pasting a bunch of code everywhere, I set up a test page: http://www.mlester.org/sortable I have a bunch of divs that need to be sorted inside a container div. The autoscrolling functions doesn't seem to be working for any browser but IE7. On Safari and Firefox, I can scroll upwards, but not downwards. Any ideas about this? Thanks for an awesome library! -Mike _______________________________________________
[jQuery] jQuery guru wanted for small contract, good $
Jeff, Go to https://www.scriptlance.com/ I use it to find folks I can subcontract the stuff I don't have the time to deal with. You'd be amaze just how far your US$5 to $30 can go... especially on the standard/routine but tedious stuff.
[jQuery] AjaxCFC (paging Rey Bango...)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.5730.11" name=GENERATOR></HEAD> <BODY text=#000000 bgColor=#ffffff> <DIV dir=ltr align=left><SPAN class=820550421-06022007><FONT face=Arial color=#0000ff size=2>Just so you know, you CAN use jQuery to hit the CFC directly. Here's a sample of code I'm using:</FONT></SPAN></DIV> <DIV dir=ltr align=left><SPAN class=820550421-06022007><FONT
[jQuery] AjaxCFC (paging Rey Bango...)
That's the one...security checks? I'll have to look into AjaxCFC as I'm not running any additional checks. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Michael E. Carluen Sent: Tuesday, February 06, 2007 2:10 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] AjaxCFC (paging Rey Bango...) Hi Andy... are you referring to the one that returns a wddx packet from the cfc using the $.get() directly? As for AjaxCFC, I think I just like the
[jQuery] AjaxCFC (paging Rey Bango...)
Hi Andy... are you referring to the one that returns a wddx packet from the cfc using the $.get() directly? As for AjaxCFC, I think I just like the thought of having the extra layer of Error Trapping and Security Check features for CFCs that Rob put in place. What's your thoughts? Thanks, Andy. > -----Original Message----- > From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On > Behalf Of Andy Matthews > Sent: Tuesday, February 06, 2007 11:44 AM > To: 'jQuery Discussion.' > Subject:
[jQuery] Quickest way to clearALL form elements after Ajaxsubmit
Klaus, Gotcha; yes they are empty, and not originally pre-populated with any values. Thanks very much for the info though,- I'm sure it's going to be quite handy on the project I am in right now.
[jQuery] AjaxCFC (paging Rey Bango...)
Michael... Have you seen how easy it is to access a CFC directly using jQuery? Dirt simple. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Michael E. Carluen Sent: Tuesday, February 06, 2007 1:18 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] AjaxCFC (paging Rey Bango...) Paul, on simple data retrieval, I find pure jQuery's $.ajax(), $.post(), and $.get() more than sufficient especially when used with .cfm files. AjaxCFC's however would
[jQuery] Embedding Flash -- Troubles with jQuery.ready() && SWFObject?
I am trying to embed flowplayer; http://flowplayer.sourceforge.net/ For some reason I cannot access an embedded SWFObject within a $().ready function. FF errors out with invalid access to a NPObject, or that the setConf method is not found? I am not sure what this means.. but I do know that if I switch from $().ready to window.onload, the problem goes away. Here's one of my examples; <div id="fpholder"> ...get flash text </div> <script type="text/javascript"> var fo = new SWFObject("FlowPlayer.swf",
[jQuery] AjaxCFC (paging Rey Bango...)
<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="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 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style>
[jQuery] show() for table elements?
show() only work good for DIV tags, but not table, e.g. ---------------------- <table> <thead>title...</thead> <tbody id="test" style="display: none;"> <tr> <td>22sksksis</td> </tr> <tr> <td>22sksksis</td> </tr> <tr> <td>22sksksis</td> </tr> </tbody> </table> <span onclick="$('#test').show('show');">hello</span> ---------------------- the effect is ugly, any workaround?? thx... _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] AjaxCFC (paging Rey Bango...)
Paul, on simple data retrieval, I find pure jQuery's $.ajax(), $.post(), and $.get() more than sufficient especially when used with .cfm files. AjaxCFC's however would be my preference when I need to invoke my cfc's... of course when its out of alpha. As Rey said, it's a case-by-case. My .02 Paul. > -----Original Message----- > From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On > Behalf Of Paul > Sent: Tuesday, February 06, 2007 11:12 AM > To: 'jQuery Discussion.' > Subject:
[jQuery] AjaxCFC (paging Rey Bango...)
That's exactly what I'm looking for, Rey. I've already got my feet wet with jQuery's UI tools, so it sounds like AjaxCFC may be a great way to handle the Ajax stuff. Thanks for the insight. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Rey Bango Sent: Tuesday, February 06, 2007 11:57 AM To: jQuery Discussion. Subject: Re: [jQuery] AjaxCFC (paging Rey Bango...) Hi Paul, I'm so used to doing things sans AjaxCFC for jQuery that I would probably
[jQuery] AjaxCFC (paging Rey Bango...)
Thanks Rey, I found the jQuery example code in the SVN branch. I know you've been pretty excited about jQuery for a while now--your mention of it on the HOF CF list is why I picked it up. Since the AjaxCFC change is still in Alpha you obviously haven't been using it up to this point but I wonder if you were to start a new project now, would you adopt AjaxCFC or just do things the way you have been? I need to start on the server-side implementation of a project and want to make an informed decision
Next Page