1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Ajax related query

Discussion in 'JavaScript' started by Puneetha K, Jan 2, 2014.

  1. #1
    Hi,

    Happy New Year 2014.

    We all know Ajax(Asynchronous JavaScript and XML). Now if we were to divide the Ajax topic into different categories what could be it? Example: ASP.NET Ajax, JQuery Ajax, Ajax Frameworks etc..

    I am trying to list down similar categories. Do you have some suggestions what all could be included?

    Any suggestions is like Gold to me! Thank you!

    Thanks,
    Puneetha
     
    Puneetha K, Jan 2, 2014 IP
  2. HuggyStudios

    HuggyStudios Well-Known Member

    Messages:
    724
    Likes Received:
    20
    Best Answers:
    26
    Trophy Points:
    165
    #2
    Well I think the main categories for me would be:

    PHP
    API
    JSON
    Error Handling
    jQuery
    Cross Browser Compatibility

    That's just off the top of my head, there maybe more to come.
     
    HuggyStudios, Jan 2, 2014 IP
    Puneetha K likes this.
  3. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,998
    Best Answers:
    253
    Trophy Points:
    515
    #3
    Instead of JSON I'd probably say "data passing" -- since there are other formats you can use like XML or ASCII delimits. (though I'm probably one of the few still using that last one)... Since any language can handle the server side processing it might help to say "Server side" -- then if need be separate that into subsections like PHP, PERL, ASP, PYTHON, etc, etc...

    Of course, I'd tell the jQuery-tards to go shtup themselves, but that's me :D
     
    deathshadow, Jan 3, 2014 IP
    HuggyStudios likes this.
  4. Puneetha K

    Puneetha K Active Member

    Messages:
    235
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    70
    #4
    Thanks Guys.. its extremely helpful.. If you are to make these categories to form a Forum, then does this sufficient?
    • PHP
    • API
    • Data Passing (E.g: JSON, XML etc)
    • Error Handling
    • jQuery
    • Server Side (E.g: Cross Browser Compatibility)
    Or do you think we could form a better structure?
     
    Puneetha K, Jan 3, 2014 IP
  5. HuggyStudios

    HuggyStudios Well-Known Member

    Messages:
    724
    Likes Received:
    20
    Best Answers:
    26
    Trophy Points:
    165
    #5
    I don't think that server side would affect cross browser compatibility. Server side would be related to the programming language used to take the Ajax request and to return a response. The main issues with cross browser compatibility would be the different ways you use Ajax with IE, Chrome, Safari, FireFox etc. If you was to use jQuery as your JavaScript library that would be taken care of. If you was to write this in native JavaScript then you need to handle Ajax slightly different (especially with older versions on IE).
     
    HuggyStudios, Jan 4, 2014 IP
  6. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,998
    Best Answers:
    253
    Trophy Points:
    515
    #6
    Agreed on that -- Server side means the language (As I said, PHP, ASP, PERL, PYTHON, whatever); browser compatibility is a client-side (javascript) issue and really give that the ENTIRE topic of cross browser compatibility is addressed either by idiotic frameworks like jQuery, or by a simple set of TRY/CATCH like this one:

    var x;
    if (window.XMLHttpRequest) x = new XMLHttpRequest(); else {
    	try { x = new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e) {
    		try { x = new ActiveXObject("Msxml2.XMLHTTP.3.0"); } catch (e) {
    			try { x = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {
    				return false;
    			}
    		}
    	}
    }
    Code (markup):
    I really don't think cross-browser warrants it's own category so far as AJAX is concerned.
     
    deathshadow, Jan 4, 2014 IP
  7. sarahk

    sarahk iTamer Staff

    Messages:
    28,500
    Likes Received:
    4,460
    Best Answers:
    123
    Trophy Points:
    665
    #7
    Don't split the categories out straight away or your forum will look too quiet. Wait until you have some traffic. It does mean you have to revisit the old threads but it's worth it.
     
    sarahk, Jan 4, 2014 IP
    Puneetha K likes this.
  8. Puneetha K

    Puneetha K Active Member

    Messages:
    235
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    70
    #8
    Thanks @sarahk that was a BIG BIG suggestion to me. One more suggestion required if you have time. Do you think making a portal like news, tutorials, community like facebook and forum makes sense during launch? OR only forum should be taken up first?
     
    Puneetha K, Jan 5, 2014 IP
  9. sarahk

    sarahk iTamer Staff

    Messages:
    28,500
    Likes Received:
    4,460
    Best Answers:
    123
    Trophy Points:
    665
    #9
    I'd do all of it, but it depends on how much quality content you can get before it goes live.
    I'm surprised there aren't already sites covering this
     
    sarahk, Jan 5, 2014 IP
    deathshadow likes this.
  10. deathshadow

    deathshadow Acclaimed Member

    Messages:
    9,732
    Likes Received:
    1,998
    Best Answers:
    253
    Trophy Points:
    515
    #10
    Content is king -- if you can't fill it with enough UNIQUE content of value before launch, leave it out... and blind copypasta from some other site doesn't count. ...which is why news sites are some of the hardest to get started unless you're an opinionated ass willing to voice your opinions for everyone to attack!
     
    deathshadow, Jan 5, 2014 IP
    Puneetha K and sarahk like this.