[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 right

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

2010-01-08 Thread Kevin Dalman
// method , insetItem: internalMethodName } There are a few ideas to get you started. /Kevin On Jan 4, 5:08 am, mehdi 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: >

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

2009-10-23 Thread Kevin McPhail
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
dev.net/demos/datepicker.html All UI Widgets using animation look poorer than 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 pr

[jQuery] Re: Notre Dame Inspired Jquery -- Exists?

2009-10-05 Thread Kevin Jones
bump On Oct 1, 10:43 am, Kevin Jones wrote: > http://www.nd.edu/ > > Their homepage has a carousel-ish type of feature. Does anyone know if > this exists already with a jQuery plugin? I don't know if our project > has the allotted time for me to make one from scratch, so I

[jQuery] Re: keeping table header fix

2009-10-05 Thread Kevin Dalman
mprovement is. Hope that helps. /Kevin On Oct 2, 5:03 pm, lcplben wrote: > On Sep 16, 2:16 am, macsig wrote: > > > Hello guys, > > I'd like to know if there is a way to keep a table header fixed on top > > of a div while I scroll the table rows. > > I have a

[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] LI.offset and LI.position() gives erratic results

2009-10-02 Thread Kevin Dalman
yet. Thanks in advance. /Kevin http://www.w3.org/TR/html4/strict.dtd";> Rentals Linens Services Planner Gallery C

[jQuery] Notre Dame Inspired Jquery -- Exists?

2009-10-01 Thread Kevin Jones
e. 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
27;filter') There is no way to fix anti-aliasing if the user *chooses* to use opacity since 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

[jQuery] Re: Prevent jagged text in IE

2009-09-27 Thread Kevin Dalman
en jQuery's own 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 regula

[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 O

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

2009-09-24 Thread Kevin Dalman
on() { alert( this.id + " = " + Record[ this.id ] ); return false; }); }); /Kevin On Sep 23, 5:57 pm, Ricardo Tomasi wrote: > Do you really need to output this data embedded in the HTML? Does it > have any meaning/purpose without Javascript? There are two

[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: 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 wrote: > Hi Glenn, > > Create

[jQuery] Re: JSON data manipulation

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

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

2009-08-30 Thread Kevin Dalman
cause the class only needs to be added on the FIRST mouseover event. In this case, use jQuery's .one() (one-time) method... $("img.thumb").one("mouseover", function () { $(this).addClass('dim'); ); /Kevin On Aug 30, 1:02 am, Josh Powell wrote: >   for (i = 1

[jQuery] Re: Scrolling problem

2009-08-22 Thread Kevin
Can anyone point me in the right direction? Thanks! On Aug 15, 12:04 pm, Kevin 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 wrote: > >

[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 2

[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 wrote: > I managed to get the scrolling to kinda work – if I set it up with > static LI then I can get the scrolling to w

[jQuery] Scrolling problem

2009-08-14 Thread Kevin
code): 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
tax easily... $("#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

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

2009-05-03 Thread Kevin Dalman
to check the CSS of every 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 

[jQuery] Re: fadein thumbnails when loaded

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

[jQuery] Re: fadein thumbnails when loaded

2009-04-29 Thread Kevin Dalman
are not 'hidden' (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 wrote: > >> In the you can do this: > >> document.do

[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. However

[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. This

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

2009-02-28 Thread Kevin Dalman
Nodes ).filter ("p")'); a_Times.push(end - start); If you created your own test page, just copy-n-paste these tests into it. NOTE that setting: 'c_divs=1000' and 'c_paras=500' (as John is using) makes the page very slow to load because it has to generate all thes

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

2009-02-25 Thread Kevin Dalman
7;m pulling v1.3.3 directly from your personal copy (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 wrote: > > WOW! Check out the last 2 tests, John. Syntax #4 takes 512-times > > longer th

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

2009-02-25 Thread Kevin Dalman
to see if I could beat .children()... jQuery version used = 1.3.3pre Total number of DIVs = 1000 Paragraphs per DIV = 500 --- $("#div500 p") = 55 ms $("p", "#div500") = 2 ms $("#div500").find("p") = 3 ms $("#di

[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
same thing, which is how it appears to users. Am I off-base here? If so, which assumuption above breaks down? Even if there is a good reason to treat the syntax differently internally, I'm still interested to know if I should avoid using scope selectors in favor of find() ***under all condit

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

2009-02-19 Thread Kevin Matthews
ith the 4 first errors that woudl be great (number 4 i have got rid of by simply removing the em on the end of the font, but the others still exist) Thanks Kevin

[jQuery] Re: IE Problems

2009-02-19 Thread Kevin Matthews
off or change font size to a % or px, it comes up (with all the issues described above). Any help on this would be great as its been causing my problems all day. Thanks Kevin

[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
is cleaner and faster than adding column headers inside your Javascript loop. I suggest you try both methods, Rick. Use a timer (like 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

[jQuery] Re: Optimize large DOM inserts

2009-02-08 Thread Kevin Dalman
entire table each time - I must append new rows/records to an existing table. I thought I'd share 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-07 Thread Kevin Dalman
t important to understand that $("") 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" wrote: > No need to shout. :-

[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 wro

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

2009-02-07 Thread Kevin Dalman
may find a pure 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" wrote: > Hi Kevin, I really appreciate your help with all this.  Unfortunately, > I added wh

[jQuery] Re: Optimize large DOM inserts

2009-02-07 Thread Kevin Dalman
that the biggest lesson here is that append ("") is a much bigger problem than the loop code. This is important to know 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 he

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

2009-02-07 Thread Kevin Dalman
ed form pages, it clutters the code 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 wrote: > Without using IDs, you can use: > > var myVar = $("input[name=myHiddenInput]&q

[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 wrote: > > I'm not sure if I realy understand what you want to do, but it could > look something like > > HTML: > >+ >1 >2 >3 >4 >5 > > >

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

2009-01-28 Thread Kevin Dalman
is width:90%; and I replace it with width:985px;, the width *would not change* (assuming 985 is the pixel equivalent). On Jan 26, 3:03 pm, Matt wrote: > $('#Test').css('width') ? > > On Jan 26, 11:46 am, Kevin Dalman wrote: > > > > > jQuery has inn

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

2009-01-28 Thread Kevin Dalman
o use that... $(document).ready(function() { $("body").layout({ closable: false , resizable: false , spacing_open: 0 , center_paneSelector: "#fileTreeIframe" }); }); /Kevin On Jan 27, 8:35 am, "laredotorn...@zipmail.com" wrote: > Hi Kevi

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

2009-01-28 Thread Kevin Dalman
e in reverse... $E.show( '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:

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

2009-01-26 Thread Kevin Dalman
ery-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" wrote: > Hi, > > I'm trying to get my iframe to occup

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

2009-01-26 Thread Kevin Dalman
t 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" wrote: > My iframe is also hard-coded.  But here is what I get when I do > console.log statements

[jQuery] Can jQuery calculate "CSS Width/Height"

2009-01-26 Thread Kevin Dalman
jQuery has innerHeight/Width and outerHeight/Width methods, but is there a method that can return a 'CSS Height/Width'. A CSS width is the width that would be applied via CSS to achieve a given 'outer width'. This value will differ depending on the box model and other older browser idiosyncracies.

[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] 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 t

[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 correc

[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

[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: $(function() { $(".thumb").livequery(function() { $(this) .resizeToScale({ width: 50, height: 50 }); }); }); If elements are added dy

[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 t

[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 wh

[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 Firefox

[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 req

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

2008-10-14 Thread Kevin Scholl
gt; my own JS like the following: > >>> document.getElementById('err_provcode').innerHTML = err_provcode; > > >>> I also work in the Health Care industry on the billing side.  I need > >>> to do multiple validations combining different dependencies

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

2008-10-13 Thread Kevin Scholl
ecks that required fields have data, as well as various specialized 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,

[jQuery] Re: cascade question

2008-09-18 Thread kevin
; You can do it via XHTML: > > B > > 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 i

[jQuery] Re: cascade question

2008-09-18 Thread kevin
ROTECTED]> wrote: > You can do it via XHTML: > > B > > or add the attribute with jQuery: > > $('#first option:eq(2)').attr('selected','selected'); > > ricardo > > On Sep 17, 10:50 am, kevin <[EMAIL PROTECTED]> wrote: > > &

[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
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
.scrollFollow( { container: 'wrap' } ); } ); jQuery.noConflict(); // Use jQuery via jQuery(...) jQuery(document).ready(function(){ jQuery("div").hide(); }); -- 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 dri

[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: 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 ech

[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: Overview If you DO need the argument for

[jQuery] Re: remove dynamically placed dom element

2008-07-13 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.3F On Su

[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 at

[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(

[jQuery] changing value of a object sub variable

2008-07-08 Thread Kevin Pepperman
intX: settings.intX, intY: settings.intY } } $(this).flash(embedsettings,{ version: 9 }); On Tue, Jul 8, 2008 at 1:04 AM, Kevin Pepperman <[EMAIL PROTECTED]> wrote: > I have a simple plugin working that utilizes the jquery.

[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 t

[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 Bi

[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('my text'); 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 (ini text) and everytime i click a > button, i want to replace the htm

[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 we

[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 i

[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] Setting/removing CSS classes

2008-06-12 Thread Kevin Major
This is related to my past DOM traversal question from a day ago. Long story short, I have a series of checkbox inputs within table cells. Upon a click event, the input, its containing cell, and the containing cell's next sibling should change CSS classes. According to Firebug, the class names a

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

2008-06-11 Thread Kevin Major
elf().addClass("inactive"); > > } > > 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

[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? Righ

[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 w

[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 s

[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
height: 400 } ); The 'query' and 'qtype' options do the trick! And with this filtered data, you can still page through your ajax'd data! Kevin On May 6, 10:13 pm, patrick davey <[EMAIL PROTECTED]> wrote: >

[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 P

[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: Example Videos on Consultwebs' Client Websites. 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 vi

[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: Select All Checkboxes and IE6

2008-03-25 Thread Kevin Scholl
intaining state 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 w

[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] 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 b

[jQuery] Re: Help with draggable / droppable

2008-01-21 Thread Kevin Thorpe
> callback, which is to modify the DOM 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

[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 d

  1   2   >