Hi,
I am working to display a Flickr rss feed of photos on my website and have users cycle through the photos using a set of javacript/asp arrow buttons. It all seems to work fine on IE but the buttons are not working on Mozilla. It must be a small rule or statement I missed.
The code below is a snippet of what is being used for one of the arrow buttons.
[CODE=vb] strHTML = strHTML & "<div id='flickr" & DivCount & "' class='flickr-tn" & DivCount & "' style='border:1 px; border-style:solid; border-color:#eeeeff;p adding:0px;widt h:" & isSingleRowWidt h & "px;height:inhe rit;'><span style='position :absolute; float:left; top:50%; left:0; vertical-align:middle; line-height:inherit; height:inherit; '><img id=bwd" & DivCount & " src='/images/greyleftarrow2. gif' onclick=""windo w.flickr" & DivCount & ".style.display ='none" & "';window.flick r" & (DivCount-1+DivCount) & ".style.display ='" & "';"" style='cursor:p ointer;'></span><span style='width=:' " & isSingleRowWidt h & "';'>"
else
strHTML = strHTML & "<div id='flickr" & DivCount & "' class='flickr-tn" & DivCount & "' style='border:1 px; border-style:solid; border-color:#eeeeff;p adding:0px;widt h:" & isSingleRowWidt h & "px;height:inhe rit;'><span style='position :absolute; float:left; top:50%; left:0; vertical-align:middle; line-height:inherit; height:inherit; '><img id=bwd" & DivCount & " src='/images/greyleftarrow2. gif' onclick=""windo w.flickr" & DivCount & ".style.display ='none" & "';window.flick r" & DivCount-1 & ".style.display ='" & "';"" style='cursor:p ointer;'></span><span style='width:'" & isSingleRowWidt h & "';'>"[/CODE]
any suggestions?
I am working to display a Flickr rss feed of photos on my website and have users cycle through the photos using a set of javacript/asp arrow buttons. It all seems to work fine on IE but the buttons are not working on Mozilla. It must be a small rule or statement I missed.
The code below is a snippet of what is being used for one of the arrow buttons.
[CODE=vb] strHTML = strHTML & "<div id='flickr" & DivCount & "' class='flickr-tn" & DivCount & "' style='border:1 px; border-style:solid; border-color:#eeeeff;p adding:0px;widt h:" & isSingleRowWidt h & "px;height:inhe rit;'><span style='position :absolute; float:left; top:50%; left:0; vertical-align:middle; line-height:inherit; height:inherit; '><img id=bwd" & DivCount & " src='/images/greyleftarrow2. gif' onclick=""windo w.flickr" & DivCount & ".style.display ='none" & "';window.flick r" & (DivCount-1+DivCount) & ".style.display ='" & "';"" style='cursor:p ointer;'></span><span style='width=:' " & isSingleRowWidt h & "';'>"
else
strHTML = strHTML & "<div id='flickr" & DivCount & "' class='flickr-tn" & DivCount & "' style='border:1 px; border-style:solid; border-color:#eeeeff;p adding:0px;widt h:" & isSingleRowWidt h & "px;height:inhe rit;'><span style='position :absolute; float:left; top:50%; left:0; vertical-align:middle; line-height:inherit; height:inherit; '><img id=bwd" & DivCount & " src='/images/greyleftarrow2. gif' onclick=""windo w.flickr" & DivCount & ".style.display ='none" & "';window.flick r" & DivCount-1 & ".style.display ='" & "';"" style='cursor:p ointer;'></span><span style='width:'" & isSingleRowWidt h & "';'>"[/CODE]
any suggestions?
Comment