Alas, that can only be done with a mod, which has been abandoned for 3 years and is currently broken.
It isn't broken at all nor is it abandoned. Not sure where you got that information unless by using Automod the find couldn't be found which, if I were a QA software engineer as you purport, I ...
Search found 368 matches
- Mon Jun 27, 2011 7:10 pm
- Forum: [3.x] Discussion
- Topic: Can I throw away my WordPress installation?
- Replies: 29
- Views: 54984
- Tue May 10, 2011 9:30 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC|Accepted] Include and use jQuery
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
Which is fine IF that was allowed within modifications submitted for validation which it isn't. :P
Externally hosted js files are not allowed, no matter which js file it may be (yes, this ...
Which is fine IF that was allowed within modifications submitted for validation which it isn't. :P
Externally hosted js files are not allowed, no matter which js file it may be (yes, this ...
- Tue May 10, 2011 11:10 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC|Accepted] Include and use jQuery
If you use no conflict mode, you can use it to create your own new short-cut alternative to the $, like this for example:
<head>
<script src="jquery.js"></script>
<script>
var $phpbb = jQuery.noConflict();
$phpbb(document).ready(function(){
$phpbb("div").hide();
});
</script>
</head ...
<head>
<script src="jquery.js"></script>
<script>
var $phpbb = jQuery.noConflict();
$phpbb(document).ready(function(){
$phpbb("div").hide();
});
</script>
</head ...
- Tue May 10, 2011 2:37 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC|Accepted] Include and use jQuery
Why would one ever need to "fall back". I have never run across a situation where the present jQuery failed to provide what a previous version had provided.
- Sat May 07, 2011 6:06 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC|Accepted] Include and use jQuery
IIRC, it must be hosted locally, no CDN, etc.
- Sat Apr 30, 2011 2:57 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC|Accepted] Include and use jQuery
Wasn't it you that said to me once "C'mon Rich show me your js skills" to which I replied "Why reinvent the wheel!"
- Sat Apr 30, 2011 12:57 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC|Accepted] Include and use jQuery
@RMcGirr83 mind to explain? What's the difference / benefit?
As I understand it, which may be totally incorrect, in this way
$('#MyDiv').show().html('hello world')
show will happen, then .html for "hello world"
in this way
$('#MyDiv').show('fast',function(){$(this).html('hello world ...
As I understand it, which may be totally incorrect, in this way
$('#MyDiv').show().html('hello world')
show will happen, then .html for "hello world"
in this way
$('#MyDiv').show('fast',function(){$(this).html('hello world ...
- Fri Apr 29, 2011 9:36 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC|Accepted] Include and use jQuery
Code: Select all
$('#MyDiv').show().html('hello world');
Code: Select all
$('#MyDiv').show('fast',function(){$(this).html('hello world');});
- Mon Apr 25, 2011 7:16 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC|Accepted] Include and use jQuery
If a user installs, eg prototype, that may take control of the $ that is used throughout the code now from jQuery. Maybe set a var of, eg
Just tossing stuff out there Igor.
Code: Select all
var $phpBB = jQuery;
Just tossing stuff out there Igor.
- Sun Apr 24, 2011 5:16 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168405
Re: [RFC] Include and use jQuery
Just an FYI, while an excellent library certian elements of jQuery are known to not work correctly on all browsers, eg the "unload" function while it functions within FF and IE, it does not work on Chrome, Opera or Safari.