Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~929 People Reached
Favorite Forums
Member Avatar for jmann22

So i have a simple react component rendering text and images except for 1 line rendering a twitter widget. It works fine but when i route to a different view then come back that widget will not show unless i refresh the page. Sorry i just started using react.js thanks …

0
111
Member Avatar for jmann22

I've tried several ways to attempt to disable parallax scrolling when the window is resized below a certain size but have been unsuccessful. I've tried if else statements, self invoking functions and functions that call another function depending on screen size but they are not responsive meaning that I am …

Member Avatar for gentlemedia
0
140
Member Avatar for jmann22

How would i make a request to the etsy api? I want the grid_cell div to show the results for something typed into the search bar. The grid_cell div should display an image for whatever the user searches for. [Click Here](http://jsfiddle.net/jmann1622/wbL1t04t/)

Member Avatar for jmann22
0
256
Member Avatar for jmann22

How would i make a request to the etsy api? I want the grid_cell div to show the results for something typed into the search bar. The grid_cell div should display an image for whatever the user searches for. Jsfiddle. [Click Here](http://jsfiddle.net/jmann1622/wbL1t04t/) <!DOCTYPE html> <html> <head> <title></title> <meta name="viewport" content="width=device-width, …

Member Avatar for pixelsoul
0
253
Member Avatar for jmann22

I would like the time of day to control color with the seconds to control gradience like in the pic var clock, hour, min, sec, color; function displayTime(){ clock=new Date(); hour=clock.getHours(), min=clock.getMinutes(), sec=clock.getSeconds(); //if single digit, add 0 to the left if(hour<=9) hour='0'+hour; if(min<=9) min='0'+min; if(sec<=9) sec='0'+sec; color='#'+hour+min+sec; //colorText=color.split().join(":"); function …

Member Avatar for jmann22
0
169