yes image src is not changing i try to alert the src with this code
alert($('#fp_img').attr("src")); and alert is undefined even in IE7
and firefox...
On Aug 28, 8:36 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
> On 8/28/07, mohsin <[EMAIL PROTECTED]> wrote:
>
>
>
> > $('#fp_menu a').each(function()
> > {
> > dev_id = querySt("dev_id");
> > $(this).click(function()
> > {
> > new_src =
> > "http://"+this_domain+"/development/images/"+dev_id+"/
> > floorplan/"+this.id;
> > $('#fp_img').attr({ src: new_src });
> > });
>
> > });
>
> > in IE6 src is not changing.its work well in firefox and IE7
>
> If the src attribute value isn't changing, then I don't know what the
> problem may be. However if the src attribute value *is* changing, yet the
> image doesn't seem to update, you may want to take a look at this thread:
>
> Swapping img src in IE shows
> blankhttp://groups.google.com/group/jquery-en/browse_thread/thread/f67fe19...
>
> - Richard