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