document.getElementById("main").src = '02.jpg';
works
but
$('#main').src = '02.jpg';
doesn't
|
1
|
works but
doesn't
|
||
|
|
|
|
|
||
|
|
|
|
It's akin to the difference between |
||
|
|
|
|
The jQuery wrapper you get from $(...) does not reproduce all properties and methods of the DOM object(s) it wraps. You have to stick to jQuery-specific methods on the wrapper object: in this case The ‘prototype’ library, in contrast to jQuery, augments existing DOM objects rather than wrapping them. So you get the old methods and properties like |
||||
|
|
|
Mike has shown one way of setting the
or
|
||
|