Custom Query (13852 matches)
Results (13 - 15 of 13852)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#15236 | notabug | jQuery.load() remove ajax:select tag of AjaxTag Library | ||
Description |
I am using jQuery.load() function to load the content in Div dynamically. It is working fine with all the scenario but there is one issue in it. When I include ajax:select tag of AjaxTag Library version 1.5.7 for populating dependent dropdown in my JSP page, jQuery.load() function remove ajax:select tag from my loaded JSP page. I am stuck since last many day on these issue. Early Response to problem will be great. Note: ajax:select is converted in tag when loaded as HTML in normal scenario. Code Block : container.jsp (main jsp in which dynamic content will be loaded on onload event of page)
dropdown.jsp <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
|
|||
#15235 | migrated | .css('marginRight') - memory leak | ||
Description |
I have found memory leak in reliableMarginRight function. Memory leak is created when you call $element.css('marginRight') JsFiddle: http://fiddle.jshell.net/z3jo9k1q/show/light/ Test case:
Fix: Adding this, after 5665 line in jQuery uncompressed code will fix the problem: docElem.removeChild( container ); div.removeChild( marginDiv ); //this is new line |
|||
#15234 | notabug | .html method on select element "selects" the first option | ||
Description |
Please check out the fiddle: http://jsfiddle.net/3u0hceng/ If the option elements are added to a select element using the .html method, the first option is selected and the html option does not have a selected attribute. This is unwanted behavior. This was seen in Chrome Version 37.0.2062.103 m on a Windows 7 machine. |