mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
7c5a06855d
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@94332 467b73ca-7a2a-4603-9d3b-597d59a354a9
18 lines
563 B
JavaScript
Executable File
18 lines
563 B
JavaScript
Executable File
(function($) {
|
|
$(document).ready(function() {
|
|
$("input.rollover").livequery(function(){
|
|
var srcParts = jQuery(this).attr('src').match( /(.*)\.([a-zA-Z]+)$/ );
|
|
var fileName = srcParts[1];
|
|
var extension = srcParts[2];
|
|
this.overSrc = fileName + '_over.' + extension;
|
|
this.outSrc = jQuery(this).attr('src');
|
|
});
|
|
$("input.rollover").livequery('mouseover', function(){
|
|
jQuery(this).attr('src', this.overSrc);
|
|
});
|
|
|
|
$("input.rollover").livequery('mouseout', function(){
|
|
jQuery(this).attr('src', this.outSrc);
|
|
});
|
|
});
|
|
})(jQuery); |