"I have used Eric's inline javascript and a TW2.5.0 (with jQuery)
I'm working through a book and thought I would try and add what I
leaned to TW. "
There is an error with 2.5.0 (beta 2) with inline javascript.
"TypeError: id.replace is not a function" is writen at the bottom of
the BehaviorSheet tiddler;
<script show>
$(document).ready(function( ) {
$('table.twtable tr:even').addClass('even');
$('table.twtable tbody tr').mouseover(function(){
$(this).addClass('highlight')
});
$('table.twtable tbody tr').mouseout(function(){
$(this).removeClass('highlight');
})
});
</script>
TypeError: id.replace is not a function
Example
-----------
http://r.a.hough.googlepages.com/TW2.5.0beta2.html
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWikiDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/TiddlyWikiDev?hl=en
-~----------~----~----~----~------~----~------~--~---