CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: nasekt

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    2,366

    JavaScript Re: How to redirect a request to a random URL

    So, not possible with Man in the middle proxy tool? Basically, how do I NOT pick the already picked URL from array list?
  2. Replies
    3
    Views
    2,366

    JavaScript How to redirect a request to a random URL

    I use [Fiddler](http://blogs.telerik.com/fiddler/posts/13-07-15/understanding-fiddlerscript ), Man in the middle proxy tool


    var regex = /TargetString/gi ;
    if (regex.match(URL) {
    ...
  3. JavaScript How to replace a specific string present in HTML tags?

    How do I replace the string "rpg" only present in between <et> tags ?


    <et>ReplaceOnlyrpg</et>


    After replacement it should look like this
    <et>ReplaceOnly</et>

    Thank you
  4. JavaScript Replace youtube video player with a different div

    I'm using Fiddler (web debugging tool) and the below code is JScript .NET, which is basically a .NET version of Javascript.




    if (oSession.HostnameIs("www.youtube.com") &&...
  5. JavaScript Re: Javascript/Jscript.NET :How do I replace a string to a search query only once?

    @the_cat

    First of all, thank you for replying.

    now, There are few problems with substr()

    1. when sQuery is set to +2, the page does not even render.
    2.So, I set it to higher value like +9,...
  6. JavaScript Javascript/Jscript.NET :How do I replace a string to a search query only once?

    My Goal: I want to programmatically append a string to Google Search.

    The code is JScript .NET, which is basically a .NET version of Javascript.Regardless of language, Anyone with appending type...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured