foxsk8 Posted August 15, 2009 Report Share Posted August 15, 2009 Sveiki tautieši. Tātad ir radusies viena problēma ar bildes apaudzēšanu priekš lightbox linka: Biju pirms neliela laika atrisinājis šo problēmu ar jQuery, bet vairs nevaru atrast vajadzīgo funkciju. Tad nu tā: Lapas bilde <img height="100" width="250" alt="" src="biles links"/> Vajadzētu lai JS automātiski visām bildēm, kuras ir noteiktā divā apaudzētu linkus apkārt šādi <a href="bildes links" rel="lightbox"><img height="100" width="250" alt="" src="bildes links"/></a> Quote Link to comment Share on other sites More sharing options...
0 xcwcx Posted August 15, 2009 Report Share Posted August 15, 2009 $("img").wrap(document.createElement("a")); Atlikušo izdomā pats ;) Quote Link to comment Share on other sites More sharing options...
0 indoom Posted August 16, 2009 Report Share Posted August 16, 2009 $('img').each(function(){ $(this).wrap($('<a>').attr('href',$(this).attr('src')).attr('rel','lightbox')); }); Quote Link to comment Share on other sites More sharing options...
0 bubu Posted August 16, 2009 Report Share Posted August 16, 2009 attr metodei var padot arī objektu ar atslēgām/vērtībām, nevajag n-tās reizes attr izsaukt: $('img').each(function(){ $(this).wrap($('<a>').attr({ href: $(this).attr('src'), rel: 'lightbox' }) }); Quote Link to comment Share on other sites More sharing options...
Question
foxsk8
Sveiki tautieši. Tātad ir radusies viena problēma ar bildes apaudzēšanu priekš lightbox linka:
Biju pirms neliela laika atrisinājis šo problēmu ar jQuery, bet vairs nevaru atrast vajadzīgo funkciju.
Tad nu tā:
Lapas bilde
Vajadzētu lai JS automātiski visām bildēm, kuras ir noteiktā divā apaudzētu linkus apkārt šādi
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.