scrollbar for div
Can someone provide me with information on how to add both开发者_如何学Go vertical and horizontal scrollbar using jquery? For example a textbox with an Id="txtBox".
Using CSS
#txtBox {
overflow: scroll;
}
Adding the CSS property with JQuery:
$("#txtBox").css("overflow", "scroll");
You could also use overflow-x and overflow-y separately.
精彩评论