okay, i can see the alert with the values divided, i assume i will be able to understand how to use your code. thanks.
but for sake of me learning how to do this in simpler terms which i...
Type: Posts; User: ricmetal; Keyword(s):
okay, i can see the alert with the values divided, i assume i will be able to understand how to use your code. thanks.
but for sake of me learning how to do this in simpler terms which i...
hi
new to multi dimension arrays and not very bright.
who do i populate a multidimension array from a single string?
the string is formatted like this:
var resultVar =...
hey guys
im looking for a cross browser way to check if the length of a html select element is zero.
im a little confused as to if i can use (along with jquery) $('#selectElem')[0].options.length...
gotta love those brackets :)
thanks again jonh
hi john
thanks again for the info.
i have come up with this:
function checkDivState(id){
if(checkDivState['div' + id + 'State'] == null || checkDivState['div' + id + 'State'] ==...
thanks john for your reply
i only need to store the info while the user is on the page.
as soon as they move to another page the info can be cleared.
so i guess using variables in enough.
so,...
<script type="text/javascript">
function runMe(){
Nifty("div#mainbox","big");
Nifty("div#slidebox");
Nifty("div#txt","bottom,small");
Nifty("div#linksbox");
Nifty("div#facebook","top,small");...
hi
so
i got to the point where i need to store info, regarding whether a div has been expanded.
my idea is to have a variable hold the info on several divs, created dynamically, so when the user...
http://nivo.dev7studios.com/
hi
i finaly got myself opening up IE to test the application im making and for one thing, it was cool that IE spits out some errors that firefox doesnt, like missing vars. thats cool.
but any how,...
good informative post
thanks very much for it.
i actually got what i needed to now as soon as you said that the variable was undefined and could lead to conflicts with the rest of the script. that...
thanks jscheuer1
hiy
just a question
do global variables defined inside functions get destroyed when the function ends?
just to be sure i got this right, by global variable inside a function i mean this:
...
1) Script Title: Switch content
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/switchcontent.htm
3) Describe problem: No problem. very good script. instead id like help...
edit: nevermind, i think i have figured it out.
thanks
hi
no, im talking about only having one button to toggle the contract/expand of all divs. just like the default for each header, but applied to the contract all / expand all buttons. so instead of...
1) Script Title: Switch Content
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/switchcontent.htm
3) Describe problem: no problem. would like to have the collapse/expand...
page not found for that link
1) Script Title: Virtual Pagination script v2.0
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/virtualpagination.htm
3) Describe problem: script is not letting php/db content...
oh
how blind of me
thanks and sorry about that
1) Script Title: Animated Collapsible DIV v2.2
2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex17/animatedcollapse.htm
3) Describe problem: tweak please!
how do i disable the...
yeah, ive been looking around and everything points to ajax being the way
what i wanted is some tips on structuring such a code, by i think i got it.
thanks solexy
looks cool :)
althought, id like to display small letters on the link while leaving capital letters on the pagination buttons.
but ill take it from here and try to tweak some more!
thanks ddadmin
yeah, like gmail's email delete system
someone told me ajax, i also think so, through xmlhttprequest maybe?
im not sure. if anybody has a good idea how to accomplish this php->db->php transition,...
<?php
$dtStart = "2009-03-25";
$dtEnd = "2009-04-06";
$tmStart = strtotime($dtStart);
$tmEnd = strtotime($dtEnd);
for($i=$tmStart;$i<=$tmEnd;$i=$i+86400) {
echo date("d", $i)."<br>";
}