As i said in my last email, there really is no reason to surround all of that code in a JQ function. you can remove the "$(function() {" line, and the final "});", which may be causing your problem. JS might be looking in the wrong scope for the "slideshow" function. You also dont need the square brackets around the _javascript_ object in images. just "images:{...}" would work.

On 9/7/06, kenton.simpson <[EMAIL PROTECTED]> wrote:

I've been trying to make a slideshow with interface, but cant make it work.
In fire fox I get the error "slideshow has no properties". here my code

$(function() {
        $.slideshow({
                container : 'myshow',
                images : [
                        {
                                src: 'slideshow/august05rakscraps_tahera_preview.jpg',
                                caption: 'one'
                        },
                        {
                                src: 'slideshow/Black-Squirrel-pushpins-preview.jpg',
                                caption: 'two'
                        },
                        {
                                src: 'slideshow/dana-zarling-sweetbaby-preview copy.jpg',
                                caption: 'three'
                        }
                ]
        });
});

<body>
        <h1>Simple Interface Slideshow Demo</h1>
        <div id="myshow"></div>
</body>

I am using jquery rev 249 and the current interface code
--
View this message in context: http://www.nabble.com/Interface-slideshow-tf2236443.html#a6201093
Sent from the JQuery forum at Nabble.com.


_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to