Hello chandanraikar, you could try to place the javascript in your theme and echo the path via wp_footer hook.
<?php
add_action( 'wp_footer', function() use() {
$script = "/javascript_path";
?>
<script type="text/javascript"><?php echo $script;?></script>
<?php
}
});