[jQuery] Re: Altering external links

2009-03-09 Thread ToTalTim

http://www.front-end.nu/?p=6

On 9 mrt, 15:48, Ed Lerner  wrote:
> How would I modify the following to only target anchors with an href
> beginning with "http"?
>
> $('a').each(function(index) {
>   $(this).attr({
>     'target': 'blank'
>   });
>
>
>
> });- Tekst uit oorspronkelijk bericht niet weergeven -
>
> - Tekst uit oorspronkelijk bericht weergeven -


[jQuery] Jquery.flash plugin causes flickering

2009-03-09 Thread ToTalTim

Hello,

Im using Jquery Flash plugin for embedding Flash movies into my
website.(http://jquery.lukelutman.com/plugins/flash)

When doing this the HTML-version shows up before it gets overwritten
by the flash-version, how to get rid of this slight flickering?

Way i use it:

$('#headertext').each(function() {
var inhoud = $(this).text();
$(this).flash(
{
src: root_url + '/grfx/header/swf/header.swf',
width: 700,
height: 30,
wmode: 'transparent',
menu: 0,
flashvars: { koptekst: inhoud }
}
);
});


And in CSS file:

.alt {display:none;}


Hope somebody knows how to deal with this issue;

TIA

Tim