Give this a try...
$(document).ready(function(){
$('select').change(function(){
var key = $(this).parent().parent().find('input').val();
var v = $(this).val();
$('#MSG').html( key +'
'+ v );
});
});
chooseonetwo
Good luck,
Jon
This will work.
$("input[type='text']:order").keyup( function() {
var v = $(this).val().replace(/\D/g,''); // removes non numbers
$('#total_buyed').val( v * 2.75 );
});
Good luck,
Jon
I have a simple drag and drop completed and works well.
Next I would like be able to trigger a hover event when dragging over
items I have already dropped into the drop area. So far I can only get
the hover to work onmouseover, not while dragging an item.
Here is what I am trying:
$('#dropArea'
3 matches
Mail list logo