vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   [Solved]CSS & JavaScript via function (https://vborg.vbsupport.ru/showthread.php?t=293848)

anymvs 01-12-2013 12:43 AM

[Solved]CSS & JavaScript via function
 
Hello guys am working with google <script async> the whole situatios

so, google below refers to the following::

:source:

HTML Code:

<script>
var node = document.createElement('script');
node.type = 'text/javascript';
node.async = true;
node.src = 'example.js';
// Now insert the node into the DOM, perhaps using insertBefore()
</script>

So I have convert the above java according to google as,

HTML Code:

<script type="text/javascript">
var fcb_js = document.createElement('script');
fcb_js.type = 'text/javascript';
fcb_js.async = true;
fcb_js.src = '/clientscript/vbulletin_facebook.js?v={vb:raw vboptions.simpleversion}';
var fcb_var = document.getElementsByTagName('script')[0]; 
fcb_var.parentNode.insertBefore(fcb_js, fcb_var);
</script>

or

HTML Code:

<script type="text/javascript">
(function() {
var test = document.createElement('script');
test.type = 'text/javascript';
test.async = true;
test.src ='/clientscript/vbulletin_facebook.js?v={vb:raw vboptions.simpleversion}';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(test, s); })();
</script>

Now my problem is that, vbulletin_facebook.js is loading correctly but, I can't connect with facebook as guest or as a member... Now I assume that has an if statement of facebook java, later than the actual statement of vbulletin variable.. Again this seems wrong, because I didn't change any range of any variables instead of actual java architecture, if I try to load the .js normally is working correct...

Any ideas??

Note:: any kind of page tester that I test my forum seems to detect the vbulletin_facebook.js at the same position as with the standard code... md5.js and vbulletin-markert.js
are loaded and seems to work fine, and css files such as additional.css etc are not tested yet but I think may have a problem with that too!!!

Thank you !!

anymvs 01-16-2013 05:29 AM

*SOLVED*

It's working as below:
HTML Code:

<script type="text/javascript">
(function() {
var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];
s.type = 'text/javascript';
s.async = true;
s.src = '/clientscript/vbulletin-core.js?v={vb:raw vboptions.simpleversion}';
s1.parentNode.insertBefore(s, s1);
})();
</script>

facebook java doesn't work with the following function, probably because the js of facebook it's call via vb raw before the main code so function is loaded normall but connectivity avoided.!!

If you want to use the defer js, for all your java files used above code. if your using cdn it will not work, so you need to replace the source with the exactly address, for example::
Code:

'http://pullzone-anymvs.netdna-cdn.com/clientscript/vbulletin-core.js?v={vb:raw vboptions.simpleversion}'
at the end if you have cache control you must remove the query from the actual js file, so need to remove
?v={vb:raw vboptions.simpleversion} from all your js file after you enable cache header..

Note: This is working for me and it's a good idea to used it especially if your running on a simple hosting. it will not make your side load 10 times faster but it will reduce the time load of js files at all, especially for users that they use IE as browsing.

TIP:
load your css files as
HTML Code:

<link rel="stylesheet" type="text/css" href="http://pullzone-anymvs.netdna-cdn.com/clientscript/vbulletin_css/style00014l/additional.css" />
don't used vb raw variables, are very lag and have no sense!! :D


All times are GMT. The time now is 11:06 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01206 seconds
  • Memory Usage 1,722KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (5)bbcode_html_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete