Results 1 to 2 of 2

how to include this external function? (php)

This is a discussion on how to include this external function? (php) within the Template Modifications forums, part of the vBulletin SEO Discussion category; Hi, sorry about the silly question again, but where would I include this little bit of code so when that ...

  1. #1
    Member
    Real Name
    Les Hill
    Join Date
    Sep 2005
    Location
    Gloucester, England, UK
    Posts
    65
    Liked
    2 times

    how to include this external function? (php)

    Hi, sorry about the silly question again, but where would I include this little bit of code so when that it can be used by my template and function properly.

    Code:
     function toggle_width() {        var e = document.getElementById("gwrapper");
           if(e.clientWidth == '1000') {
              e.style.width = '89%';
              gsetCookie("sitewidth","89%",60);
           } else {
              e.style.width = '1000px';
              gsetCookie("sitewidth","1000px",60);
           }
        }
    I think its a .php code / function ? So where exactly should I include it so that it can be used / called by my template code when ever, without it having to interfering or hitting my vb forums performance?

    Thanks

  2. #2
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    that's not php... it's javascript.

    wrap it in <script> tags and put it in the template before it's needed.

Similar Threads

  1. all function
    By saleh15 in forum General Discussion
    Replies: 4
    Last Post: 11-09-2008, 02:03 PM
  2. What not to include in Sitemap (and what to include in Robots.txt)
    By Marvin Hlavac in forum General Discussion
    Replies: 2
    Last Post: 03-21-2008, 10:35 AM
  3. Replies: 1
    Last Post: 12-12-2006, 07:21 AM
  4. Replies: 3
    Last Post: 10-21-2006, 07:58 PM
  5. function.include !!!
    By jacki in forum Troubleshooting
    Replies: 4
    Last Post: 09-21-2006, 05:47 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •