Foros de discusión

How to Use Multiple jQuery version with Liferay 4.3.3

Madhan PE, modificado hace 11 años.

How to Use Multiple jQuery version with Liferay 4.3.3

New Member Mensajes: 4 Fecha de incorporación: 26/12/12 Mensajes recientes
Hi,
I need to introduce a new jQuery 1.8.3 for implementing a popup dialog for particular portlet(this jquery should not affect any other portlet or functionality) in Liferay 4.3.3 with default jQuery version. My Liferay 4.3.3 uses jQuery 1.1.4 now. So I need to have both jQuery 1.1.4 and 1.8.3 in my Liferay 4.3.3
Please reply with steps to follow to achieve this. Immediate reply is appreciable.

Thanks in advance.
thumbnail
Brian Scott Schupbach, modificado hace 11 años.

RE: How to Use Multiple jQuery version with Liferay 4.3.3

Expert Mensajes: 329 Fecha de incorporación: 23/10/08 Mensajes recientes

var $yournamespece = jQuery.noConflict(true);
// now use $yournamespace instead of $
$yournamespace('selector')

Madhan PE, modificado hace 11 años.

RE: How to Use Multiple jQuery version with Liferay 4.3.3

New Member Mensajes: 4 Fecha de incorporación: 26/12/12 Mensajes recientes
Thanks Brian,

1. I have added my jQuery 1.8.3 in this location "\liferay-portal.war\html\js\jquery".
There is already jQuery 1.1.4 is in the same location.
2. I have included below line in my them in the location "\liferay-portal.war\html\themes\classic\templates\portal_normal.vm".
"<script type="text/javascript" src="/html/js/jquery/jquery-1.8.3.js"></script>"

<head>
<title>$company_name - $the_title</title>

$theme.include($top_head_include)

#css ($css_main_file)
#js ($js_main_file)

#if ($company_logo != "")
<style type="text/css">
#banner .logo {
padding: 0.52em 0.6em 0.53em;
}

#banner .logo a {
background: url($company_logo) no-repeat;
display: block;
font-size: 0;
height: ${company_logo_height}px;
text-indent: -9999em;
width: ${company_logo_width}px;
}
</style>
#end
<script type="text/javascript" src="/html/js/jquery/jquery-1.8.3.js"></script>
</head>

3. And in my JSP page I have used like below.

<link rel="stylesheet" href="/html/js/jquery/jquery-ui.css">
<script type="text/javascript" src="/html/js/jquery/jquery-ui.js"></script>
<script type="text/javascript" src="/html/js/jquery/jquery-1.8.3.js"></script>
<script type="text/javascript">
var jq183 = $.noConflict(true);
jq183( "#dialog" ).dialog({ autoOpen: false });
jq183( "#more_info" ).click(function() {
jq183( "#dialog" ).dialog( "open" );
});
</script>

But it is not working.
What went wrong here?
Madhan PE, modificado hace 11 años.

RE: How to Use Multiple jQuery version with Liferay 4.3.3

New Member Mensajes: 4 Fecha de incorporación: 26/12/12 Mensajes recientes
Can anyone please reply immediately, if you know how to do it? I am in need of this.