Reputation: 37904
var iframe = $("#id_iframe"); iframe.height(200);
in chrome, this is adding to the current height instead of replacing the current height.
in firefox, it is replacing which is right.
What do I need?
Upvotes: 0
Views: 35
Reputation: 492
Try using:
iframe.css('height', '200px');
Upvotes: 1