[jQuery] Using variable in animate()'s properties

2010-01-24 Thread kevin
Hi, I'm writing this script and apparently the animate method wouldnt interpret the variable I pass in the properties section: //it's hover event, and this is the mouseover function () { direction = $(this).find('img').attr('class'); //should be either top, bottom, left or

[jQuery] Re: How to define/access public functions for a plugin?

2010-01-08 Thread Kevin Dalman
started. /Kevin On Jan 4, 5:08 am, mehdi mehdi.mous...@gmail.com wrote: Hi, I've just developed a plugin that mimics the combo box control, albeit it's a special one. That's being defined as follows: (function($) {     $.fn.extend({         smartList: function(settings

[jQuery] Select onchange event get a value from selects table row

2009-10-23 Thread Kevin McPhail
of the select i need to get the new value the option has been changed to plus the value from the hidden input and submit them via ajax to a method on the server. How can i get the hidden inputs value? Thanks for any help /suggestions, kevin

[jQuery] Re: Events Calendar

2009-10-23 Thread Kevin McPhail
Actually there is a decent little jquery plugin at http://arshaw.com/fullcalendar/ that may be what you are looking for.

[jQuery] Re: Prevent jagged text in IE

2009-10-08 Thread Kevin Dalman
necessary when used in *the most common browser in the world*. So if this won't be addressed in the jQuery core, then every UI widget using animated elements should be patched to address it. Such a simple, common problem should not be allowed to affect UI Widgets IMO. /Kevin On Sep 30, 2:46 pm, Dave

[jQuery] Re: LI.offset and LI.position() gives erratic results

2009-10-05 Thread Kevin Dalman
I have reposted this in the DEV forum... http://groups.google.com/group/jquery-dev/browse_thread/thread/16bd78710291bc93?hl=en#

[jQuery] Re: keeping table header fix

2009-10-05 Thread Kevin Dalman
the browser does not have to wait for all the content to load before starting to render the table. The bigger the table, the more noticeable this improvement is. Hope that helps. /Kevin On Oct 2, 5:03 pm, lcplben b...@sellmycalls.com wrote: On Sep 16, 2:16 am, macsig sigbac...@gmail.com wrote: Hello

[jQuery] LI.offset and LI.position() gives erratic results

2009-10-02 Thread Kevin Dalman
yet. Thanks in advance. /Kevin !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/TR/html4/strict.dtd; DIV id=Layout-Header DIV class=layout-header DIV id=TopNavbar class=navbar DIV id=Nav1 SPAN class=center UL class=tabs

[jQuery] Notre Dame Inspired Jquery -- Exists?

2009-10-01 Thread Kevin Jones
. If anyone has any insight, it would be very helpful. It doesn't need video or anything inside, just the three rotating images on click, coming in front of one another. Thanks, Kevin

[jQuery] Re: Prevent jagged text in IE

2009-09-30 Thread Kevin Dalman
this is a browser issue, but it is *other 99%* that is the issue. There are many 'effects' used in jQuery that trigger the problem, so it should handle these *common scenarios*. Calling it an IE-bug doesn't make it go away. This is a a cross browser issue, pure and simple. /Kevin On Sep 29, 7:34 am, Dave

[jQuery] Re: Prevent jagged text in IE

2009-09-27 Thread Kevin Dalman
contributors have to override core methods to address it. The choices are: A) Update jQuery to handle this issue natively, or; B) Continue using hacks for animations in the world's most common browser. I'm interested in opinions on this, particularly from the regular jQuery contributors. /Kevin

[jQuery] Re: Prevent jagged text in IE

2009-09-26 Thread Kevin Dalman
@Rick if (jQuery.browser.msie) this.style.removeAttribute('filter'); This is a nice simple solution to a common cross-browser issue, so wouldn't it be reasonable for this to be added to the standard jQuery animate method? The extra size is minimal. /Kevin On Sep 25, 5:17 pm, Rick

[jQuery] Re: Way to convert DOM event to jQuery event?

2009-09-24 Thread Kevin Dalman
; }); }); /Kevin On Sep 23, 5:57 pm, Ricardo Tomasi ricardob...@gmail.com wrote: Do you really need to output this data embedded in the HTML? Does it have any meaning/purpose without Javascript? There are two simple non- hackish ways you can do it: 1: load data later via XHR, use an element identifier

[jQuery] [autocomplete] problem when using inside a popup

2009-09-08 Thread Kevin
Hello, When I use jquery.autocomplete.js on a field that lives inside a jquery modal popup, the autocomplete list doesn't stick to the textbox when scrolling with the scrollwheel of the mouse. Anyone knows if this is a bug, or a configuration issue? best regards! Kevin

[jQuery] Re: Scrolling problem

2009-09-01 Thread Kevin
Nevermind. After much trial and error, I pieced together some 'dirty' code to make it work. You can see it at the link above if you are having the same issues. Thanks! Kevin

[jQuery] Re: event-binding to dynamically created elements... (JSP vs JS problem......)

2009-08-30 Thread Kevin Dalman
).one(mouseover, function () { $(this).addClass('dim'); ); /Kevin On Aug 30, 1:02 am, Josh Powell seas...@gmail.com wrote:   for (i = 1; i 5; i++) {     $('#thumb' + i).bind('mouseover',function(event) {        $(this).addClass('dim');     });   } The 'i' you've called here is a global

[jQuery] Re: JSON data manipulation

2009-08-30 Thread Kevin Dalman
'], Serie: entry['Serie'] } ); }); Plot( data ); }); /Kevin On Aug 29, 7:31 am, Depechie glenn.versweyv...@gmail.com wrote: Hello guys. My question has actually more to do with jqPlot ( graph library for jQuery ), but I'm still asking it here, because it concerns json data manipulation

[jQuery] Re: JSON data manipulation

2009-08-30 Thread Kevin Dalman
OOPS, I didn't formatted the data correctly for passing to Plot() - sorry, didn't read carefully. But the premise is the same - create an array by looping your data, and then pass the array when done. /Kevin On Aug 30, 9:04 am, Kevin Dalman kevin.dal...@gmail.com wrote: Hi Glenn, Create

[jQuery] Re: Scrolling problem

2009-08-22 Thread Kevin
point me in the right direction? Thanks! On Aug 15, 12:04 pm, Kevin diskhand...@gmail.com wrote: I guess I should mention that I'm using jcarousel and thst you need to click on one of the index pictures to start things up. Thanks! On Aug 14, 10:34 pm, Kevin diskhand...@gmail.com wrote: I

[jQuery] Re: hide divs with float:left and show them again

2009-08-20 Thread Kevin
Is the layout broken initially or only after you hide/show the content? When you inspect the DIVs in Firebug, do they still have their float properties assigned? Are you specifying a width on the boxes? Posting example code always helps other developers troubleshoot your issues faster =) On Aug

[jQuery] Re: Scrolling problem

2009-08-15 Thread Kevin
I guess I should mention that I'm using jcarousel and thst you need to click on one of the index pictures to start things up. Thanks! On Aug 14, 10:34 pm, Kevin diskhand...@gmail.com wrote: I managed to get the scrolling to kinda work – if I set it up with static LI then I can get

[jQuery] Scrolling problem

2009-08-14 Thread Kevin
): http://ssbbs.dyndns.org/panic/rpicts.asp Thanks in advance for any assistance with this. Kevin

[jQuery] Re: Modify iframe with jquery

2009-05-15 Thread Kevin Dalman
... $(#iframe)[0].document.$(body).css({ overflow: hidden; }); This will work as long as the iframe content is in the same domain as your parent page. If it is in a different domain, then browser security will prevent you from accessing the document inside the iframe. /Kevin On May 14, 1:56 pm

[jQuery] Re: state of the art for corner rounding?

2009-05-03 Thread Kevin Dalman
element on the page! I submitted this function to the plug-in's forum... http://groups.google.com/group/cornerz/browse_thread/thread/2f0639e7c7fa349c?hl=en# I'd be interested to learn how whether DD Roundies is significantly better or not. /Kevin On May 2, 9:45 am, Jack Killpatrick j...@ihwy.com

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Kevin Dalman
' (display:none), the images will still take up their normal space when loading, instead of making the page 'jump' they they are made visible. /Kevin On Apr 28, 4:26 am, Rick Faircloth r...@whitestonemedia.com wrote: In the head you can do this: script type=text/javascript

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Kevin Dalman
: alpha(opacity=1); } Then in the HEAD of you page, add a STYLE block inside a NOSCRIPT block... noscript style type=text/css #media-gallery ul li img { /* UNDO the opacity rule set previously */ opacity: 1; filter: alpha(opacity=100); } /style /noscript Just one more idea. /Kevin On Apr

[jQuery] Re: Using jQuery in requested file by $.ajax

2009-04-27 Thread Kevin King
According to http://docs.jquery.com/Ajax/jQuery.ajax#options if datatype is = 'html', the script code will be evaluated when the ajax response is inserted into the DOM. So change your code to do more than an alert and you should be fine. -K2

[jQuery] [Star Rating Plugin] How to change the star rating display WITHOUT firing off the click callback?

2009-04-24 Thread kevin
Hello, I am using the Star Rating Plugin from http://www.fyneworks.com/jquery http://jquery-star-rating-plugin.googlecode.com/svn/trunk/index.html What I am trying to do is when a star rating is initially requested, an ajax submit is fired off to update the database on the server side.

[jQuery] [form] Handling re-ajax'ing a form after a submission attempt

2009-03-26 Thread kevin
Hello, I am having a problem re-binding a form with ajaxForm() and Zend Framework. I got the ajax form submit working, but on form validation failure I am passing back the form html within a json object and I re-stuff the div container with the form html in order to render out form errors.

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-02-28 Thread Kevin Dalman
the numbers up again - it magnifies the speed differences between the tests. /Kevin On Feb 25, 6:48 pm, RobG rg...@iinet.net.au wrote: On Feb 26, 11:22 am, John Resig jere...@gmail.com wrote: The benchmark is getElementById().getElementsByTagName() - why not inlcude that in the test?  Add

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-02-25 Thread Kevin Dalman
() ***under all conditions*** - or only under specific conditions? /Kevin On Feb 24, 5:58 pm, John Resig jere...@gmail.com wrote: I want to point out a couple things: 1) You should always use $(#foo).find(p) in favor of $(p, $ (#foo)) - the second one ends up executing $(...) 3 times total - only

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-02-25 Thread Kevin Dalman
FYI, I built a quick test page for this. As previously noted, the differences in v1.2.6 are relatively small - about 2x as long for one syntax over the other. But with 1.3.2 - Wow! - 60x longer! jQuery version used = 1.3.2 Total number of DIVs = 100 Paragraphs per DIV = 50

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-02-25 Thread Kevin Dalman
].childNodes ).filter(p) = 19 ms The last (childNodes) test gathers the same elements in half the time. The 32ms performance of children(p) is very good, but perhaps there is still room for improvement? /Kevin On Feb 25, 1:30 pm, John Resig jere...@gmail.com wrote: To follow-up from my post yesterday

[jQuery] Re: $('#foo p') or $('p', $('#foo'))

2009-02-25 Thread Kevin Dalman
(jquery1.3.3/dist/jquery.js). I realize this is just a test version, but thought you'd like to know. /Kevin On Feb 25, 4:21 pm, John Resig jere...@gmail.com wrote: WOW! Check out the last 2 tests, John. Syntax #4 takes 512-times longer than #5! I think this code needs a little TLC too

[jQuery] Re: IE Problems

2009-02-19 Thread Kevin Matthews
the issues described above). Any help on this would be great as its been causing my problems all day. Thanks Kevin

[jQuery] Re: Jquery 1.6rc6 Dialog Boxes Internet Explorer Bugs

2009-02-19 Thread Kevin Matthews
this to the jQuery UI list? http://groups.google.com/group/jquery-ui Thanks. - Richard On Thu, Feb 19, 2009 at 10:47 AM, KevinM2k kevin...@googlemail.com wrote: Hi, I'm using JQuery 1.6rc6, and I am attempting to create dialog boxes which I had no trouble with using 1.5 and have no trouble with in Firefox

[jQuery] Callback no being executed from a post call...

2009-02-16 Thread kevin...@gmail.com
I am having a problem, The callback function I am passing to the jquery post request is not executing the success callback on a successful reply from my servlet: Here are some code snippets of what I am trying to do: top of my file: if (Ajax == null || typeof(Ajax) != object) { var Ajax = new

[jQuery] Re: Optimize large DOM inserts

2009-02-08 Thread Kevin Dalman
these results because appending a tbody (or a single row) provides many more options than writing an entire table. And now I know there is no performance difference - at least not in IE7. Thanks to Mike for providing a starting points for these tests, in addition to his loop-optimization tips. /Kevin

[jQuery] Re: Optimize large DOM inserts

2009-02-08 Thread Kevin Dalman
MIike's sample pages) to confirm whether both are equally fast. Based on my tests, you may find appending to the table even faster, with cleaner markup as a bonus. Ciao, /Kevin On Feb 7, 3:20 pm, Rick Faircloth r...@whitestonemedia.com wrote: Hey, thanks Michael for taking the time to provide

[jQuery] Re: Newb question about accessing a form's inputs

2009-02-07 Thread Kevin Dalman
and requires extra logic to add sequential IDs to things like radio buttons. So this is not a proper solution to a common need. /Kevin On Feb 6, 2:27 pm, James james.gp@gmail.com wrote: Without using IDs, you can use: var myVar = $(input[name=myHiddenInput]).val(); On Feb 6, 10:54 am

[jQuery] Re: Optimize large DOM inserts

2009-02-07 Thread Kevin Dalman
because it would apply even if there were NO loop at all! Thanks for bringing both these details to my attention. I do a lot of dynamic HTML generation, so it's helpful to know what to watch out for. /Kevin On Feb 5, 7:25 pm, Michael Geary m...@mg.to wrote: ...there is not much room

[jQuery] Re: Can JQuery solve the iframe height=100% problem?

2009-02-07 Thread Kevin Dalman
CSS solutions preferable, even if it is does require some ugly nesting. Hope that helps. /Kevin On Jan 28, 11:39 am, laredotorn...@zipmail.com laredotorn...@zipmail.com wrote: Hi Kevin, I really appreciate your help with all this.  Unfortunately, I added what you had suggested ... script type

[jQuery] Re: Can JQuery solve the iframe height=100% problem?

2009-02-07 Thread Kevin Dalman
If you are going to apply a specific iframe height via script... $('#myIframe').css({height:$(this).parent('td').height()}); ...You MUST bind an event to window.resize to *re-size* the iframe whenever the browser window is resized. /Kevin On Jan 30, 10:58 am, jquertil til...@gmail.com wrote

[jQuery] Re: Optimize large DOM inserts

2009-02-07 Thread Kevin Dalman
) is *really* the big culprit here. In fact, I think this is something that should be brought to the jQuery team's attention... Why is this syntax so slower? Ciao, /Kevin On Feb 7, 1:41 pm, Michael Geary m...@mg.to wrote: No need to shout. :-) I never claimed that these pages reflect only

[jQuery] Re: Reversing the SlideUp and SlideDown functions to slide from the bottom and not the top

2009-01-28 Thread Kevin Dalman
( 'slide', {direction: 'up'} ); $E.hide( 'slide', {direction: 'up'} ); To use a 'drop' effect instead of 'slide'... $E.show( 'drop', {direction: 'up'} ); $E.hide( 'drop', {direction: 'up'} ); You can find details in the jQuery docs: http://docs.jquery.com/UI/Effects /Kevin On Jan 27, 8:07 pm

[jQuery] Re: Can JQuery solve the iframe height=100% problem?

2009-01-28 Thread Kevin Dalman
has an ID, you can tell the widget to use that... script type=text/javascript $(document).ready(function() { $(body).layout({ closable: false , resizable: false , spacing_open: 0 , center_paneSelector: #fileTreeIframe }); }); /script /Kevin On Jan 27, 8:35 am, laredotorn

[jQuery] Re: Can jQuery calculate CSS Width/Height

2009-01-28 Thread Kevin Dalman
replace it with width:985px;, the width *would not change* (assuming 985 is the pixel equivalent). On Jan 26, 3:03 pm, Matt matt.critch...@gmail.com wrote: $('#Test').css('width') ? On Jan 26, 11:46 am, Kevin Dalman kevin.dal...@gmail.com wrote: jQuery has innerHeight/Width and outerHeight

[jQuery] Re: How to use one button to toggle multiple panels in succession

2009-01-28 Thread Kevin Rodenhofer
Not bad at all...if I remove them with slideUp, in succession, how would I do that? On Wed, Jan 28, 2009 at 7:39 AM, Stephan Veigl stephan.ve...@gmail.comwrote: I'm not sure if I realy understand what you want to do, but it could look something like HTML: div id=root div

[jQuery] Can jQuery calculate CSS Width/Height

2009-01-26 Thread Kevin Dalman
, but want to be sure it doesn't already exist! Does anyone have knowledge of this? /Kevin

[jQuery] Re: Can JQuery solve the iframe height=100% problem?

2009-01-26 Thread Kevin Dalman
://layout.jquery-dev.net/demos/frames.html The Layout website itself used iframe pages with a 'banner', like: http://layout.jquery-dev.net/discuss.html Hope this helps. /Kevin On Jan 26, 6:55 am, laredotorn...@zipmail.com laredotorn...@zipmail.com wrote: My iframe is also hard-coded.  But here is what I

[jQuery] Re: Can JQuery solve the iframe height=100% problem?

2009-01-26 Thread Kevin Dalman
Simple iframe demo: http://layout.jquery-dev.net/demos/frames.html The Layout website itself used iframe pages with a 'banner', like: http://layout.jquery-dev.net/discuss.html Hope this helps. /Kevin On Jan 24, 5:15 pm, laredotorn...@zipmail.com laredotorn...@zipmail.com wrote: Hi, I'm

[jQuery] Re: please wait while loading...

2008-12-11 Thread Kevin Thorpe
fabrice.regnier wrote: Hi to all, i have a nice gif please wait while loading... and i'd like to show it when i click on a button. Is there a nice jquery way to do it ? do i need a plugin ? $(#Idsubmit).click(function () { -- start showing the gif

[jQuery] How do I build a variable array/object to use $.post?

2008-12-05 Thread Kevin Thorpe
Hi, I'm struggling a bit to get $.post to work. I can get it working as documented, ie. $.post(url, { param1: 1, param2: 2 } ); but I want variable fields on my form (identified by the class 'edit_field') to be posted to the url I thought the approach below would work, postdata is built

[jQuery] Re: How do I build a variable array/object to use $.post?

2008-12-05 Thread Kevin Thorpe
Kevin Thorpe wrote: Hi, I'm struggling a bit to get $.post to work. I can get it working as documented, ie. $.post(url, { param1: 1, param2: 2 } ); but I want variable fields on my form (identified by the class 'edit_field') to be posted to the url I thought the approach below would work

[jQuery] livequery not acting on radgrid ajax row elements

2008-12-04 Thread kevin mckinley
I have a livequery function that doesn't run after elements are added with an AJAX RadGrid control. the elements are image thumbnails ie: img class=thumb/ $(function() { $(.thumb).livequery(function() { $(this) .resizeToScale({ width: 50, height: 50 }); }); }); If

[jQuery] Re: Creating a Plugin

2008-12-04 Thread Kevin Kietel
How about this jQuery editor: http://markitup.jaysalvat.com/ it's called markItUp! and uses Html, Textile, Wiki Syntax, Markdown, BBcode On 5 dec, 08:27, Brian Ronk [EMAIL PROTECTED] wrote: I'm making an edit in place plugin, and am running into an issue, mainly because I'm not sure how to

[jQuery] Re: Questions regarding $.ajax ...

2008-12-03 Thread Kevin Thorpe
mhall wrote: Hi all, first post. I'm in the processing of learning javascript and jQuery. I have a CGI application that I have written and have been using in my business for several years. It's written in a rather obscure CGI language called WebBatch. Why? Well, because it's what I knew at the

[jQuery] weird 404 records in website statistics on jquery js file

2008-11-24 Thread Kevin Kietel
Hi, when I look at my website statistics (awstats), somehow I keep finding these 404 records that point to: /jquery-1.2.3.pack.js/eval/3DYR8yd%2Bmb25QTy058Fe3Q%3D%3D or /jquery-1.2.3.pack.js/ +sfgRmluamFuX1R5cGU9amF2YV9zY3JpcHQmRmluamFuX0xhbmc9dGV4dC9qYXZhc2NyaXB0+ Does anyone have an idea

[jQuery] jquery cycle plugin problem?

2008-11-06 Thread KEVIN EVANS
Hello, I have a site here http://www.crsdepo.com/newsite/index_cycle.html where I am using the Jquery cycle plugin but I am having some problems in Explorer 7 and 6. In the right column near the bottom there is a testimonials section, which I have it cycling up, it looks perfect in

[jQuery] Re: call a php function with onclick

2008-10-22 Thread Kevin Thorpe
stefano wrote: Hi, I would like to know how it is possibile to call a php function inside an onclick=function (), I try to explain me better Hi Stefano. Your problem is that php is on the server and javascript/jQuery is in the web browser. You need to get onclick to issue another page

[jQuery] Re: New to Jquery, have written Validation script...

2008-10-14 Thread Kevin Scholl
in the Health Care industry on the billing side.  I need to do multiple validations combining different dependencies based on database queries for Medical Coding Data Entry on the front-end. Thanks, Nishan On Oct 13, 11:43 am, Kevin Scholl [EMAIL PROTECTED] wrote: I've done something

[jQuery] Re: New to Jquery, have written Validation script...

2008-10-13 Thread Kevin Scholl
fields have proper formatting and such. I'm quite sure that it could be cleaned up considerably by anyone more versed than myself in the intricacies of jQuery, but I'm pretty pleased thus far. Kevin On Oct 13, 10:45 am, Nishan Karassik [EMAIL PROTECTED] wrote: Wouldn't the $(#my-form [EMAIL

[jQuery] Re: cascade question

2008-09-18 Thread kevin
] wrote: You can do it via XHTML: option value=B selected=selectedB/option or add the attribute with jQuery: $('#first option:eq(2)').attr('selected','selected'); ricardo On Sep 17, 10:50 am, kevin [EMAIL PROTECTED] wrote: Hi all, here is my sample page  http://sskes.damimi.org/test

[jQuery] Re: cascade question

2008-09-18 Thread kevin
with jQuery: $('#first option:eq(2)').attr('selected','selected'); ricardo On Sep 17, 10:50 am, kevin [EMAIL PROTECTED] wrote: Hi all, here is my sample page  http://sskes.damimi.org/test/ my question is how can i let the first box selected on B and also trigger second box list

[jQuery] cascade question

2008-09-17 Thread kevin
Hi all, here is my sample page http://sskes.damimi.org/test/ my question is how can i let the first box selected on B and also trigger second box list the correct value B1,B2,B3,B4 automatically when page loaded. thanks.

[jQuery] accordion open in different sections?

2008-09-16 Thread KEVIN EVANS
that accordion menu in a include so I dont see how you can do it. The one that is open by default has a class of opener. Any ideas? Kevin

[jQuery] mootools and jquery conflict....

2008-09-11 Thread KEVIN EVANS
/script link rel=stylesheet href=sifr/sIFR-screen.css type=text/css media=screen / -- Any ideas how to fix it? Thanks! Kevin

[jQuery] Website Glitch

2008-09-05 Thread Kevin
I noticed that the search icon sprite has its states 1px too close together--if you look closely at the bottom edge of the magnifying glass, you can just barely make out the top edge of the over state for this button (its a line of light gray). The site itself looks so great that this thing is

[jQuery] Re: jQuery.com Broken?

2008-07-20 Thread Kevin Pepperman
same here. no CSS. degrading gracefully. On Sun, Jul 20, 2008 at 3:46 PM, xwisdom [EMAIL PROTECTED] wrote: Hello, The website is not rendering the CSS.

[jQuery] Re: jScrollPane with jQuery 1.2.6

2008-07-15 Thread Kevin Ashworth
I noticed that at http://kelvinluck.com/assets/jquery/jScrollPane/, the version of jScrollPane.js is 4765, while at http://plugins.jquery.com/project/jScrollPane you'll download version 3125.

[jQuery] Re: remove dynamically placed dom element

2008-07-14 Thread Kevin Pepperman
For dynamicly loaded elements you will need to use a plugin. I suggest the 'listen' plugin. Refer to the FAQ for more information. http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3Fhttps://mail.google.com/mail/#inbox/11b1f57192f17027 On

[jQuery] Re: show hidden div on click

2008-07-14 Thread Kevin Pepperman
without seeing all your code... The main thing I see wrong here is you are calling your fadin() function with an unneeded argument that is also a string that is not encased by quotes. The argument is not required for your function at all-- So try this: a class=fadein

[jQuery] Re: Calling PHP Functions from jQuery?

2008-07-14 Thread Kevin Pepperman
I think this plugin does what you are looking for: http://plugins.jquery.com/project/EUReCa On Mon, Jul 14, 2008 at 10:11 AM, Yavuz Bogazci [EMAIL PROTECTED] wrote: Hi, is it possible to call php functions from jquery? I knew how to call a .php page from jquery with $.post and to echo

[jQuery] Re: Page Content fetch via GET

2008-07-10 Thread Kevin Thorpe
SumanShakya wrote: hi all, i have a problem. I need to fetch page content via get. After data is fetched, i need to perform 2-3 manipulation on data before showing the actual content. Each manipulation modifies the page content. I am using the code shown below $.get(url,function(data) {

[jQuery] Re: [ Add Onclick on loaded image ]

2008-07-10 Thread Kevin Pepperman
since the image is loaded dynamicly,you should use the jquery.listen plugin. It will allow you to 'listen' for the element and attach a click event to the newly created image. $('#mydiv').listen( 'click', 'img.myimgclass', function(){ //My code to run }); On Thu, Jul 10, 2008

[jQuery] Re: Superfish / Firefox 3 PC / Flash issue

2008-07-08 Thread Kevin Pepperman
Get Firefox and install the Firebug Plugin. It will let you inspect the DOM and see whatever generated code there is in realtime. It will also let you see the CSS applied to each element do see if you may have any Z indexing issues or strange div spans. On Mon, Jul 7, 2008 at 11:50 PM, Joel

[jQuery] changing value of a object sub variable

2008-07-08 Thread Kevin Pepperman
I have a simple plugin working that utilizes the jquery.flash plugin. I am using my plugin to load a flash file that has around 20 flashvars. (i only listed a few here). Most of the time the default flashvars are fine..but sometimes I need to modify only certain flashvariables... but not all of

[jQuery] Re: How to replace a div content?

2008-07-07 Thread Kevin Pepperman
Try setting the div html to empty first. jQuery(#elem).html().html('bmy text/b'); On Mon, Jul 7, 2008 at 10:04 AM, SimDigital [EMAIL PROTECTED] wrote: How could i replace a html content inside the div? I have 1 div (div id=elemini text/div) and everytime i click a button, i want to replace

[jQuery] Re: Plugin better than Lighbox or Thickbox

2008-07-06 Thread Kevin Pepperman
That majicthumb script looks a lot like this one. http://vikjavev.no/highslide/ Charging for this is pretty lame. They would be better off making tham free and benefiting from the traffic they would generate. On Sun, Jul 6, 2008 at 5:07 PM, Alexandre Plennevaux [EMAIL PROTECTED] wrote: On

[jQuery] Re: Help finding this script

2008-07-04 Thread Kevin Pepperman
The effects on this page are done with Adobe Flash. I am not sure how you would do that with jQuery. But I will bet it could be done to some extent. On Fri, Jul 4, 2008 at 2:32 PM, Pedro Correia [EMAIL PROTECTED] wrote: Greetings! I'm trying to find some jquery plugin like on this webpage

[jQuery] Re: Firefox/css/jquery..

2008-07-02 Thread Kevin Scholl
The z-index value need not be in quotes. You have: z-index: 1 which should be simply: z-index: 1 Also, you need a doctype in your HTML document, or you're going to run into all manner of display issues. On Jul 2, 2:32 pm, Aaron [EMAIL PROTECTED] wrote: the website is supposed to show a

[jQuery] Re: AJAX data inserted into DOM does not trigger click-event

2008-06-15 Thread Kevin Pepperman
Have you tried the listen plugin? It works with dynamicly added content. http://plugins.jquery.com/project/Listen On Sun, Jun 15, 2008 at 12:52 PM, Thasmo [EMAIL PROTECTED] wrote: Hoi guys! I define a event trigger $('#id div a).click(). The url in the href attribute of the a tag is

[jQuery] Re: Sorting Divs by Span Value

2008-06-12 Thread Kevin Pepperman
This is a handy plugin. But it seems to be throwing an expected '(' error in IE. and not functiong correct. FF works OK. If anyone else can confirm the but I will post a bug report. On Tue, Jun 10, 2008 at 11:55 AM, Seth - TA [EMAIL PROTECTED] wrote: Found this plugin to do the job.

[jQuery] DOM traversal -- need both parent node and siblings

2008-06-11 Thread Kevin Major
Hello everyone, I'm currently in a bit of a bind. I have a checkbox that's within a table cell. I want it so when the input is clicked, the parent table cell AND its siblings change their classes. I can get to the parent element, but how would I attach this functionality to its siblings?

[jQuery] Re: DOM traversal -- need both parent node and siblings

2008-06-11 Thread Kevin Major
); } should do it. On Jun 11, 10:26 am, Kevin Major [EMAIL PROTECTED] wrote: Hello everyone, I'm currently in a bit of a bind.  I have a checkbox that's within a table cell.  I want it so when the input is clicked, the parent table cell AND its siblings change their classes.  I can get

[jQuery] Re: Pimped-out Numeric input

2008-06-08 Thread Kevin Pepperman
the spin Button script is similar to this. http://plugins.jquery.com/project/spin-button On Sun, Jun 8, 2008 at 5:03 PM, Frantisek Malina [EMAIL PROTECTED] wrote: Hi all, Anyone seen this sort of numeric input implemented in JQuery? It would be nice quantity input for shopping carts where

[jQuery] Re: hiding a div on document ready?

2008-06-07 Thread Kevin Pepperman
Giuliano showed you the correct way to hide the div. But If you do want to add that css to the element it would be used like this. $(document).ready(function(){ $(#durl).css({ display:none; }); }); On Sat, Jun 7, 2008 at 3:50 PM, Giuliano Marcangelo [EMAIL PROTECTED] wrote: make sure

[jQuery] Re: jQuery TShirt

2008-05-09 Thread Kevin Scholl
On the front: $(WWW).append(jQuery) And on the back: $(prototype, mootools, dojo, yui, etc.).remove(); *grin*

[jQuery] Re: TableSorter + Filtering + Ajax

2008-05-07 Thread Kevin Kietel
, you can still page through your ajax'd data! Kevin On May 6, 10:13 pm, patrick davey [EMAIL PROTECTED] wrote: Hi Kevin, That looks like a really excellent plugin - might have to give it a try. The one thing it doesn't do that I need it to - is *filtering*. That is, say I am returning rows

[jQuery] Re: TableSorter + Filtering + Ajax

2008-05-06 Thread Kevin Kietel
it, just contact me or take a look at the Flexigrid discussion on CodeIgniter forums: http://codeigniter.com/forums/viewthread/75326/ There are several examples that you can use. Let me know if this is what you're looking for! Bye, Kevin On May 6, 2:18 am, patrick davey [EMAIL PROTECTED

[jQuery] links in accordion plugin?

2008-03-26 Thread Kevin Evans
Hello, I have a page at http://www.consultwebs.com/videoNEW.htm which uses the accordion plugin to run those tabs you see where the video is. It works fine but none of the links works in the tabs, and some of them disappear. Like under the Example Videos on Consultwebs' Client Websites.

[jQuery] Re: links in accordion plugin?

2008-03-26 Thread Kevin Evans
to be working, but I know I'm doing something wrong. my heading code is like this: a class=accordion-headingExample Videos on Consultwebs#39; Client Websites./a Thanks again for the help! Kevin On Mar 26, 2008, at 2:38 PM, Jörn Zaefferer wrote: Try to specify the header to use for the accordion

[jQuery] Select All Checkboxes and IE6

2008-03-25 Thread Kevin Scholl
there, as they are for another page.) I've looked at and tried so many things, that I fear I'm blinded to something simple at this point. Any assistance greatly appreciated ... thanks! Kevin

[jQuery] Re: Select All Checkboxes and IE6

2008-03-25 Thread Kevin Scholl
when the sort occurs. ??? On Mar 25, 2:30 pm, Christian Bach [EMAIL PROTECTED] wrote: Hi Kevin, Take a look at the source of this page:http://tablesorter.com/tests/checkbox.html There is a special ie-checkbox widget, i wrote to deal with the checked state not being fired correctly in IE6

[jQuery] IE7 not adjusting width of select box

2008-02-04 Thread Kevin Thorpe
I'm having a spot of bother with select boxes in IE7. I have one select box which empties and refills a second when the selected item changes using an AJAX call. This works fine in Opera and FireFox but IE7 doesn't adjust the width of the second select box to match the new contents. There must

[jQuery] Re: Help with draggable / droppable

2008-01-21 Thread Kevin Thorpe
yourself, but you shouldn't need a cloned helper to accomplish this. On Jan 18, 9:55 am, Kevin Thorpe [EMAIL PROTECTED] wrote: Thanks for your comments. I've just cracked it (I think). I was getting the drop event ok but couldn't work out how to move the dragged div. It was just sitting

[jQuery] Help with draggable / droppable

2008-01-18 Thread Kevin Thorpe
to the destination table cell. It simply sits where I dropped it on the page. Can anyone please enlighten me on this? thanks Kevin Thorpe

[jQuery] Re: Help with draggable / droppable

2008-01-18 Thread Kevin Thorpe
Thanks for your comments. I've just cracked it (I think). I was getting the drop event ok but couldn't work out how to move the dragged div. It was just sitting where I'd dropped it. The secret is to use a cloned helper with $('.drag').draggable({helper: 'clone'}); and then move the original

[jQuery] Re: Superfish Menus - Including Dynamic Navigation Arrows

2008-01-07 Thread Kevin Scholl
This isn't Superfish specifically, though I did write it based very largely on the original Suckerfish, with enhancements. http://beta.ksscholl.com/jquery/suckerfish.html Kevin On Jan 7, 5:04 pm, Robin Rowell [EMAIL PROTECTED] wrote: Hi all and Joel. Is there a version of Superfish

[jQuery] Re: looking for plugin that presets values in text box

2008-01-06 Thread Kevin Scholl
The plugin toggleVal (written by a colleague of mine) might be of some interest to you. http://plugins.jquery.com/project/toggleval On Jan 5, 11:45 pm, Bhaarat Sharma [EMAIL PROTECTED] wrote: Hi, some time ago I saw a jquery plugin which would preset the value in a text box and when

  1   2   >