Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
5k views

How to get current Joomla user with external PHP script

I have a couple PHP scripts used for AJAX queries, but I want them to be able to operate under the umbrella of Joomla's authentication system. Is the following safe? Are there any unnecessary lines? ...
3
votes
2answers
106 views

jQuery only allow one version

I have a third party script that is including jquery (which causes things to break). I am using 1.6 version and the external script is using an older version. How can I force that only one version ...
3
votes
6answers
203 views

Is it possible to load Jquery in the body of a page

I am using code-igniter, and some of my views require jquery. Because they must be used in multiple places they must call jquery in their file, however since they are referencing an external file, ...
1
vote
1answer
442 views

How to use external actionscript classes in FlashBuilder (thought I knew)

I'm trying to implement CSVLib in an Air application and am getting an error that seems wholly illogical to me. "1120: Access of undefined property csv." and "1120: Access of undefined property ...
1
vote
4answers
2k views

Load external script in <head> in Drupal 6

I want to load an external script in <head>. It is module specific so I want my module to take care of the loading. In Drupal 6, function drupal_add_js() does not allow to add an external ...
0
votes
2answers
77 views

GWT - IE not downloading external scripts included in UiBinder

I have some external Javascript files in my GWT app that I only want to download when the user accesses the section that requires them. I included the JS files in a UiBinder page like so: ...
0
votes
2answers
142 views

Execute a python script from firefox, on a very specific app, just to let firefox provide the graphical IDE

So, I've been searching the topic for quite a while, but I am unable to find out whether it is possible or not. I suspect not, but I need to be sure. What I'm doing: I am building a fancy web app ...
0
votes
1answer
239 views

Javascript not executing when placed in external script file

I'm building an ASP.NET MVC site where I need a tag editor, similar to the one used on Stack Overflow. I've already looked up how to accomplish the necessary autocompletion with jQuery UI, but I've ...
0
votes
3answers
117 views

Best way to link to external scripts in Document HEAD

I've noticed many sites use this, without closing the tag. <script type="text/javascript" src="editor.js"> This style is also recommended but is longer: <script type="text/javascript" ...
0
votes
4answers
568 views

Javascript external script loading strangeness

I'm maintaining a legacy javascript application which has its components split into 4 JS files. They are "Default.aspx", "set1.aspx", "set2.aspx" and "set3.aspx". The ASPX pages writes out compressed ...
-4
votes
3answers
54 views

Need to have if/else switched around [closed]

I have some code for showing jQuery mobile and some other code on mobile devices and jQuery and some other code on a regular computer. I heard it is better to put jQuery code before jQuery mobile so ...